CrossRef API#

Searching for scientific articles using an API (application programming interface) allows you to extract data from publisher platforms and databases. With an API, you can create programmatic searches of a citation database, extract statistical data, or query and manipulate your results within a Notebook.

In this module, we will learn to use the Crossref API to search for and analyze scientific articles.

What is Crossref?#

Crossref is a non-profit organization that helps to provides access to scientific literature. Crossref “makes research outputs easy to find, cite, link, and assess” (https://www.crossref.org/).

Crossref data on scientific publications essentially consists of three elements:
1) Metadata about a publication
2) A URL link to the article
3) A document identifier (doi)

At present Crossref contains information on 80 million scientific publications including articles, books and book chapters.

Installing Packages#

First we will install packages that will be useful to us as we explore the Crossref API. When importing a package into Jupyter Notebook, we use the command pip install ... to download a package into Jupyter Notebook.

We then use the command import (package name) to use our new package in our code.

# just run this cell

!pip install habanero
#To use Crossref API in Python, we need to import the habanero package
import habanero
from habanero import Crossref
from collections import Counter # for easy counting
import ast # for string to dictionary conversion
import pandas as pd # for data manipulation
import numpy as np # for array manipulation
import matplotlib.pyplot as plt # for data visualization
%matplotlib inline 
Hide code cell output
Requirement already satisfied: habanero in /opt/anaconda3/lib/python3.7/site-packages (0.7.4)
Requirement already satisfied: requests>=2.7.0 in /opt/anaconda3/lib/python3.7/site-packages (from habanero) (2.22.0)
Requirement already satisfied: tqdm in /opt/anaconda3/lib/python3.7/site-packages (from habanero) (4.42.1)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /opt/anaconda3/lib/python3.7/site-packages (from requests>=2.7.0->habanero) (3.0.4)
Requirement already satisfied: idna<2.9,>=2.5 in /opt/anaconda3/lib/python3.7/site-packages (from requests>=2.7.0->habanero) (2.8)
Requirement already satisfied: certifi>=2017.4.17 in /opt/anaconda3/lib/python3.7/site-packages (from requests>=2.7.0->habanero) (2019.11.28)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /opt/anaconda3/lib/python3.7/site-packages (from requests>=2.7.0->habanero) (1.25.8)
WARNING: You are using pip version 20.3.1; however, version 21.1.2 is available.
You should consider upgrading via the '/opt/anaconda3/bin/python -m pip install --upgrade pip' command.

Analysis using Crossref API#

In the sections below, we will walk through the basics of Crossref.

Data can be accessed using the python packages habanero, crossrefapi, and crossref-commons installed above. In this , we’ll be focusing on the functionality of the habanero package.

Exploring a Crossref query#

In the cells below, we walk through using Crossref and exploring the data it gives us. To create an object that takes on the Crossref identity, we assign it to the variable cr.

cr = Crossref() # create a crossref object

The main function we will use is called cr.works(). This function takes in a query name. As an example, we’ll use the search term “permafrost”.

In order to save this output, we’ll assign it to the variable name permafrost.

# query for the term "permafrost"
permafrost = cr.works(query = "permafrost")

If we inspect permafrost, we can see that it is a dictionary. A dictionary is a type of data structure that is indexed by keys.

type(permafrost)
dict

In the cell below, try creating your own query for a different search term. Make sure to save it to a variable! For now, limit your search term to a single word.

#Example: 
query1 = cr.works(query = "your query")

Keys, Indexes, Metadata#

A dictionary contains key-value pairs, and we can access the values by calling on the keys. In our permafrost dictionary, we can inspect the keys and take a look at the values that it contains.

list(permafrost.keys())
['status', 'message-type', 'message-version', 'message']

Above, we can see that there are 4 different keys in our permafrost dictionary. We will focus on the values for the message key. In the cell below, we are accessing the values by indexing into the dictionary by the given keys.

permafrost['message']
{'facets': {},
 'total-results': 8218,
 'items': [{'indexed': {'date-parts': [[2020, 4, 15]],
    'date-time': '2020-04-15T02:44:23Z',
    'timestamp': 1586918663309},
   'reference-count': 18,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 1911,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost Periglac. Process.'],
   'DOI': '10.1002/ppp.695',
   'type': 'journal-article',
   'created': {'date-parts': [[2010, 6, 8]],
    'date-time': '2010-06-08T11:53:41Z',
    'timestamp': 1275998021000},
   'page': '215-218',
   'source': 'Crossref',
   'is-referenced-by-count': 5,
   'title': ['Report from the international permafrost association: the IPY permafrost legacy'],
   'prefix': '10.1002',
   'volume': '21',
   'author': [{'given': 'Jerry',
     'family': 'Brown',
     'sequence': 'first',
     'affiliation': []}],
   'member': '311',
   'published-online': {'date-parts': [[2010, 6, 8]]},
   'reference': [{'key': '10.1002/ppp.695-BIB1|cit1',
     'doi-asserted-by': 'crossref',
     'first-page': '463',
     'DOI': '10.1111/j.1467-8306.1983.tb01853.x',
     'article-title': 'Geographical aspects of the First International Polar Year',
     'volume': '73',
     'author': 'Barr',
     'year': '1983',
     'journal-title': 'Annals of the Association of American Geographers'},
    {'key': '10.1002/ppp.695-BIB2|cit2',
     'doi-asserted-by': 'crossref',
     'first-page': '417',
     'DOI': '10.1002/ppp.668',
     'article-title': 'Report from the International Permafrost Association: the Permafrost Young Researchers Network (PYRN)',
     'volume': '20',
     'author': 'Bonnaventure',
     'year': '2009',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.695-BIB3|cit3',
     'unstructured': 'Brown J 2004 The Thermal State of Permafrost: An IPA Contribution to the International Polar Year and Year of Planet Earth Frozen Ground The News Bulletin of the IPA 3 5'},
    {'key': '10.1002/ppp.695-BIB4|cit4',
     'doi-asserted-by': 'crossref',
     'first-page': '255',
     'DOI': '10.1002/ppp.618',
     'article-title': 'Report from the International Permafrost Association: State of Permafrost in the First Decade of the 21st Century',
     'volume': '19',
     'author': 'Brown',
     'year': '2008',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.695-BIB5|cit5',
     'doi-asserted-by': 'crossref',
     'first-page': '393',
     'DOI': '10.1002/ppp.632',
     'article-title': 'Report from the International Permafrost Association: Ninth International Conference on Permafrost and IPA Council Meetings',
     'volume': '19',
     'author': 'Brown',
     'year': '2008a',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.695-BIB6|cit6',
     'author': 'Brown',
     'first-page': '199',
     'year': '2008b',
     'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
    {'key': '10.1002/ppp.695-BIB7|cit7',
     'doi-asserted-by': 'crossref',
     'first-page': '209',
     'DOI': '10.1002/ppp.590',
     'article-title': 'Report from the International Permafrost Association: Education and outreach for the International Polar Year',
     'volume': '18',
     'author': 'Christiansen',
     'year': '2007',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.695-BIB8|cit8',
     'doi-asserted-by': 'crossref',
     'first-page': '27',
     'DOI': '10.5194/essdd-3-27-2010',
     'article-title': 'NORPERM, the Norwegian Permafrost Database - a TSP NORWAY IPY legacy',
     'volume': '3',
     'author': 'Juliussen',
     'year': '2010',
     'journal-title': 'Earth System Science Data Discussions'},
    {'key': '10.1002/ppp.695-BIB9|cit9',
     'year': '2008',
     'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
    {'key': '10.1002/ppp.695-BIB10|cit10',
     'doi-asserted-by': 'crossref',
     'first-page': '229',
     'DOI': '10.1002/ppp.648',
     'article-title': 'Report from the International Permafrost Association: Carbon pools in permafrost regions',
     'volume': '20',
     'author': 'Kuhry',
     'year': '2009',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.695-BIB11|cit11',
     'unstructured': 'Overduin PP Couture N 2007 The 6 th ACD Workshop, 22-26 October 2006, University of Groningen, Netherlands Reports on Polar and Marine Research 100'},
    {'key': '10.1002/ppp.695-BIB12|cit12',
     'unstructured': 'Parsons MA Smith S Christiansen H 2007 Building the IPA-IPY Data Legacy: An Editorial Frozen Ground'},
    {'key': '10.1002/ppp.695-BIB13|cit13',
     'author': 'Ray',
     'first-page': '695pp',
     'year': '1885',
     'volume-title': 'Report of the International Polar Expedition to Point Barrow, Alaska'},
    {'key': '10.1002/ppp.695-BIB14|cit14',
     'author': 'Romanovsky',
     'first-page': '181',
     'year': '2007',
     'volume-title': 'Global Outlook for Ice and Snow'},
    {'key': '10.1002/ppp.695-BIB15|cit15',
     'doi-asserted-by': 'crossref',
     'first-page': 'GB2023',
     'DOI': '10.1029/2008GB003327',
     'article-title': 'Soil organic carbon pools in the northern circumpolar permafrost region',
     'volume': '23',
     'author': 'Tarnocai',
     'year': '2009',
     'journal-title': 'Global Geochemical Cycles'},
    {'key': '10.1002/ppp.695-BIB16|cit16',
     'author': 'Vonder Muhll',
     'first-page': '1869',
     'year': '2008',
     'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
    {'key': '10.1002/ppp.695-BIB17|cit17',
     'author': 'Wood',
     'first-page': '1957',
     'year': '2008',
     'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
    {'key': '10.1002/ppp.695-BIB18|cit18',
     'first-page': '14',
     'article-title': 'Circumpolar permafrost monitoring program',
     'volume': '27',
     'author': 'Yoshikawa',
     'year': '2008',
     'journal-title': 'Earth Scientist'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.695',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'},
    {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.695',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2019, 3, 1]],
    'date-time': '2019-03-01T04:55:09Z',
    'timestamp': 1551416109000},
   'score': 16.389135,
   'issued': {'date-parts': [[2010, 6, 8]]},
   'references-count': 18,
   'journal-issue': {'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.695',
   'relation': {'cites': []},
   'ISSN': ['1045-6740', '1099-1530'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'},
    {'value': '1099-1530', 'type': 'electronic'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 6, 9]],
    'date-time': '2020-06-09T16:12:27Z',
    'timestamp': 1591719147608},
   'publisher-location': 'Cham',
   'reference-count': 308,
   'publisher': 'Springer International Publishing',
   'isbn-type': [{'value': '9783030313784', 'type': 'print'},
    {'value': '9783030313791', 'type': 'electronic'}],
   'license': [{'URL': 'http://www.springer.com/tdm',
     'start': {'date-parts': [[2020, 1, 1]],
      'date-time': '2020-01-01T00:00:00Z',
      'timestamp': 1577836800000},
     'delay-in-days': 0,
     'content-version': 'tdm'}],
   'content-domain': {'domain': ['link.springer.com'],
    'crossmark-restriction': False},
   'published-print': {'date-parts': [[2020]]},
   'DOI': '10.1007/978-3-030-31379-1_5',
   'type': 'book-chapter',
   'created': {'date-parts': [[2020, 1, 1]],
    'date-time': '2020-01-01T12:02:46Z',
    'timestamp': 1577880166000},
   'page': '275-366',
   'update-policy': 'http://dx.doi.org/10.1007/springer_crossmark_policy',
   'source': 'Crossref',
   'is-referenced-by-count': 0,
   'title': ['Permafrost in Transition'],
   'prefix': '10.1007',
   'author': [{'given': 'J.',
     'family': 'van Huissteden',
     'sequence': 'first',
     'affiliation': []}],
   'member': '297',
   'published-online': {'date-parts': [[2020, 1, 2]]},
   'reference': [{'issue': '12',
     'key': '5_CR1',
     'doi-asserted-by': 'crossref',
     'first-page': '4570',
     'DOI': '10.1111/gcb.13069',
     'volume': '21',
     'author': 'BW Abbott',
     'year': '2015',
     'unstructured': 'Abbott BW, Jones JB (2015) Permafrost collapse alters soil carbon stocks, respiration, CH4, and N2O in upland tundra. Glob Chang Biol 21(12):4570–4587',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '2',
     'key': '5_CR2',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2011GB004237',
     'volume': '26',
     'author': 'A Abnizova',
     'year': '2012',
     'unstructured': 'Abnizova A, Siemens J, Langer M, Boike J (2012) Small ponds with major impact: the relevance of ponds and lakes in permafrost landscapes to carbon dioxide emissions. Glob Biogeochem Cycles 26(2):GB2041. \nhttps://doi.org/10.1029/2011GB004237',
     'journal-title': 'Glob Biogeochem Cycles'},
    {'issue': '1–4',
     'key': '5_CR3',
     'doi-asserted-by': 'publisher',
     'first-page': '183',
     'DOI': '10.1016/j.palaeo.2004.02.024',
     'volume': '209',
     'author': 'L Agafonov',
     'year': '2004',
     'unstructured': 'Agafonov L, Strunk H, Nuber T (2004) Thermokarst dynamics in Western Siberia: insights from dendrochronological research. Palaeogeogr Palaeoclimatol Palaeoecol 209(1–4):183–196',
     'journal-title': 'Palaeogeogr Palaeoclimatol Palaeoecol'},
    {'issue': '3',
     'key': '5_CR4',
     'doi-asserted-by': 'publisher',
     'first-page': '279',
     'DOI': '10.1002/ppp.626',
     'volume': '19',
     'author': 'HJ Åkerman',
     'year': '2008',
     'unstructured': 'Åkerman HJ, Johansson M (2008) Thawing permafrost and thicker active layers in sub-arctic Sweden. Permafr Periglac Process 19(3):279–292',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '15',
     'key': '5_CR5',
     'doi-asserted-by': 'crossref',
     'first-page': '2422',
     'DOI': '10.1002/hyp.8019',
     'volume': '25',
     'author': 'CD Arp',
     'year': '2011',
     'unstructured': 'Arp CD, Jones BM, Urban FE, Grosse G (2011) Hydrogeomorphic processes of thermokarst lakes with grounded-ice and floating-ice regimes on the Arctic coastal plain, Alaska. Hydrol Process 25(15):2422–2438',
     'journal-title': 'Hydrol Process'},
    {'issue': '16',
     'key': '5_CR6',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2012GL052518',
     'volume': '39',
     'author': 'CD Arp',
     'year': '2012',
     'unstructured': 'Arp CD, Jones BM, Lu Z, Whitman MS (2012) Shifting balance of thermokarst lake ice regimes across the Arctic coastal plain of northern Alaska. Geophys Res Lett 39(16):L16503. \nhttps://doi.org/10.1029/2012GL052518',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '12',
     'key': '5_CR7',
     'doi-asserted-by': 'publisher',
     'first-page': '6358',
     'DOI': '10.1002/2016GL068506',
     'volume': '43',
     'author': 'CD Arp',
     'year': '2016',
     'unstructured': 'Arp CD, Jones BM, Grosse G, Bondurant AC, Romanovsky VE, Hinkel KM, Parsekian AD (2016) Threshold sensitivity of shallow Arctic lakes and sublake permafrost to changing winter climate. Geophys Res Lett 43(12):6358–6365',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '11',
     'key': '5_CR8',
     'doi-asserted-by': 'publisher',
     'first-page': '3341',
     'DOI': '10.5194/bg-8-3341-2011',
     'volume': '8',
     'author': 'S Audry',
     'year': '2011',
     'unstructured': 'Audry S, Pokrovsky O, Shirokova L, Kirpotin S, Dupré B (2011) Organic matter mineralization and trace element post-depositional redistribution in Western Siberia thermokarst lake sediments. Biogeosciences 8(11):3341–3358',
     'journal-title': 'Biogeosciences'},
    {'issue': '7',
     'key': '5_CR9',
     'doi-asserted-by': 'publisher',
     'first-page': '444',
     'DOI': '10.1038/ngeo1160',
     'volume': '4',
     'author': 'CA Avis',
     'year': '2011',
     'unstructured': 'Avis CA, Weaver AJ, Meissner KJ (2011) Reduction in areal extent of high-latitude wetlands in response to permafrost thaw. Nat Geosci 4(7):444',
     'journal-title': 'Nat Geosci'},
    {'issue': '9',
     'key': '5_CR10',
     'doi-asserted-by': 'publisher',
     'first-page': '598',
     'DOI': '10.1038/ngeo618',
     'volume': '2',
     'author': 'TJ Battin',
     'year': '2009',
     'unstructured': 'Battin TJ, Luyssaert S, Kaplan LA, Aufdenkampe AK, Richter A, Tranvik LJ (2009) The boundless carbon cycle. Nat Geosci 2(9):598',
     'journal-title': 'Nat Geosci'},
    {'issue': '5',
     'key': '5_CR11',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2003GL019251',
     'volume': '31',
     'author': 'R Benner',
     'year': '2004',
     'unstructured': 'Benner R, Benitez-Nelson B, Kaiser K, Amon RM (2004) Export of young terrigenous dissolved organic carbon from rivers to the Arctic Ocean. Geophys Res Lett 31(5):L05305. \nhttps://doi.org/10.1029/2003GL019251',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '22',
     'key': '5_CR12',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2009GL039225',
     'volume': '36',
     'author': 'V Bense',
     'year': '2009',
     'unstructured': 'Bense V, Ferguson G, Kooi H (2009) Evolution of shallow groundwater flow systems in areas of degrading permafrost. Geophys Res Lett 36(22):L22041. \nhttps://doi.org/10.1029/2009GL039225',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '21',
     'key': '5_CR13',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2004GL021277',
     'volume': '31',
     'author': 'Svetlana Berezovskaya',
     'year': '2004',
     'unstructured': 'Berezovskaya S, Yang D, Kane DL (2004) Compatibility analysis of precipitation and runoff trends over the large Siberian watersheds. Geophys Res Lett 31(21):L21502. \nhttps://doi.org/10.1029/2004GL021277',
     'journal-title': 'Geophysical Research Letters'},
    {'issue': '7501',
     'key': '5_CR14',
     'doi-asserted-by': 'publisher',
     'first-page': '479',
     'DOI': '10.1038/nature13259',
     'volume': '509',
     'author': 'R Bintanja',
     'year': '2014',
     'unstructured': 'Bintanja R, Selten F (2014) Future increases in Arctic precipitation linked to local evaporation and sea-ice retreat. Nature 509(7501):479–483',
     'journal-title': 'Nature'},
    {'issue': '3',
     'key': '5_CR15',
     'doi-asserted-by': 'publisher',
     'first-page': '160',
     'DOI': '10.1002/ppp.1769',
     'volume': '24',
     'author': 'BK Biskaborn',
     'year': '2013',
     'unstructured': 'Biskaborn BK, Herzschuh U, Bolshiyanov DY, Schwamborn G, Diekmann B (2013) Thermokarst processes and depositional events in a tundra lake, northeastern Siberia. Permafr Periglac Process 24(3):160–174',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '1',
     'key': '5_CR16',
     'doi-asserted-by': 'publisher',
     'first-page': '264',
     'DOI': '10.1038/s41467-018-08240-4',
     'volume': '10',
     'author': 'BK Biskaborn',
     'year': '2019',
     'unstructured': 'Biskaborn BK, Smith SL, Noetzli J, Matthes H, Vieira G, Streletskiy DA, Schoeneich P, Romanovsky VE, Lewkowicz AG, Abramov A (2019) Permafrost is warming at a global scale. Nat Commun 10(1):264',
     'journal-title': 'Nat Commun'},
    {'issue': '4',
     'key': '5_CR17',
     'doi-asserted-by': 'publisher',
     'first-page': '1296',
     'DOI': '10.1111/j.1365-2486.2009.02110.x',
     'volume': '16',
     'author': 'D Blok',
     'year': '2010',
     'unstructured': 'Blok D, Heijmans MM, Schaepman-Strub G, Kononov A, Maximov T, Berendse F (2010) Shrub expansion may reduce summer permafrost thaw in Siberian tundra. Glob Chang Biol 16(4):1296–1305',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '7',
     'key': '5_CR18',
     'doi-asserted-by': 'publisher',
     'first-page': '1055',
     'DOI': '10.1007/s10021-011-9463-5',
     'volume': '14',
     'author': 'D Blok',
     'year': '2011',
     'unstructured': 'Blok D, Heijmans MMPD, Schaepman-Strub G, van Ruijven J, Parmentier FJW, Maximov TC, Berendse F (2011) The cooling capacity of mosses: controls on water and energy fluxes in a Siberian tundra site. Ecosystems 14(7):1055–1065. \nhttps://doi.org/10.1007/s10021-011-9463-5',
     'journal-title': 'Ecosystems'},
    {'key': '5_CR19',
     'unstructured': 'Boike J, Wille C, Abnizova A (2008) Climatology and summer energy and water balance of polygonal tundra in the Lena River Delta, Siberia. J Geophys Res 113(G3). \nhttps://doi.org/10.1029/2007jg000540',
     'DOI': '10.1029/2007jg000540',
     'doi-asserted-by': 'publisher'},
    {'issue': '20',
     'key': '5_CR20',
     'doi-asserted-by': 'publisher',
     'first-page': '5941',
     'DOI': '10.5194/bg-12-5941-2015',
     'volume': '12',
     'author': 'J Boike',
     'year': '2015',
     'unstructured': 'Boike J, Georgi C, Kirilin G, Muster S, Abramova K, Fedorova I, Chetverova A, Grigoriev M, Bornemann N, Langer M (2015) Thermal processes of thermokarst lakes in the continuous permafrost zone of northern Siberia\xa0– observations and modeling (Lena River Delta, Siberia). Biogeosciences 12(20):5941–5965. \nhttps://doi.org/10.5194/bg-12-5941-2015',
     'journal-title': 'Biogeosciences'},
    {'key': '5_CR21',
     'doi-asserted-by': 'publisher',
     'first-page': '116',
     'DOI': '10.1016/j.gloplacha.2016.01.001',
     'volume': '139',
     'author': 'J Boike',
     'year': '2016',
     'unstructured': 'Boike J, Grau T, Heim B, Günther F, Langer M, Muster S, Gouttevin I, Lange S (2016) Satellite-derived changes in the permafrost landscape of central Yakutia, 2000–2011: wetting, drying, and fires. Glob Planet Chang 139:116–127',
     'journal-title': 'Glob Planet Chang'},
    {'issue': '1',
     'key': '5_CR22',
     'doi-asserted-by': 'publisher',
     'first-page': '1',
     'DOI': '10.5194/tc-11-1-2017',
     'volume': '11',
     'author': 'AF Borge',
     'year': '2017',
     'unstructured': 'Borge AF, Westermann S, Solheim I, Etzelmüller B (2017) Strong degradation of palsas and peat plateaus in northern Norway during the last 60 years. Cryosphere 11(1):1–16. \nhttps://doi.org/10.5194/tc-11-1-2017',
     'journal-title': 'Cryosphere'},
    {'issue': '7',
     'key': '5_CR23',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2010WR010131',
     'volume': '47',
     'author': 'É Boucher',
     'year': '2011',
     'unstructured': 'Boucher É, Ouarda TB, Bégin Y, Nicault A (2011) Spring flood reconstruction from continuous and discrete tree ring series. Water Resour Res 47(7):W07516. \nhttps://doi.org/10.1029/2010WR010131',
     'journal-title': 'Water Resour Res'},
    {'issue': '2',
     'key': '5_CR24',
     'doi-asserted-by': 'publisher',
     'first-page': '276',
     'DOI': '10.1175/2009JHM1084.1',
     'volume': '11',
     'author': 'LC Bowling',
     'year': '2010',
     'unstructured': 'Bowling LC, Lettenmaier DP (2010) Modeling the effects of lakes and wetlands on the water balance of Arctic environments. J Hydrometeorol 11(2):276–295',
     'journal-title': 'J Hydrometeorol'},
    {'issue': '10',
     'key': '5_CR25',
     'doi-asserted-by': 'publisher',
     'first-page': '1635',
     'DOI': '10.1139/F09-108',
     'volume': '66',
     'author': 'J Breton',
     'year': '2009',
     'unstructured': 'Breton J, Vallieres C, Laurion I (2009) Limnological properties of permafrost thaw ponds in northeastern Canada. Can J Fish Aquat Sci 66(10):1635–1648',
     'journal-title': 'Can J Fish Aquat Sci'},
    {'issue': '3',
     'key': '5_CR26',
     'doi-asserted-by': 'publisher',
     'first-page': '621',
     'DOI': '10.1002/2015JG003131',
     'volume': '121',
     'author': 'A Bring',
     'year': '2016',
     'unstructured': 'Bring A, Fedorova I, Dibike Y, Hinzman L, Mård J, Mernild S, Prowse T, Semenova O, Stuefer SL, Woo MK (2016) Arctic terrestrial hydrology: a synthesis of processes, regional effects, and research challenges. J Geophys Res Biogeo 121(3):621–649',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '1',
     'key': '5_CR27',
     'doi-asserted-by': 'publisher',
     'first-page': '81',
     'DOI': '10.1002/ppp.473',
     'volume': '15',
     'author': 'A Brouchkov',
     'year': '2004',
     'unstructured': 'Brouchkov A, Fukuda M, Fedorov A, Konstantinov P, Iwahana G (2004) Thermokarst as a short-term permafrost disturbance, Central Yakutia. Permafr Periglac Process 15(1):81–87. \nhttps://doi.org/10.1002/ppp.473',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '3',
     'key': '5_CR28',
     'doi-asserted-by': 'publisher',
     'first-page': '166',
     'DOI': '10.1080/10889370009377698',
     'volume': '24',
     'author': 'J Brown',
     'year': '2000',
     'unstructured': 'Brown J, Hinkel KM, Nelson F (2000) The circumpolar active layer monitoring (CALM) program: research designs and initial results. Polar Geogr 24(3):166–258',
     'journal-title': 'Polar Geogr'},
    {'issue': 'D22',
     'key': '5_CR29',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2012JD018344',
     'volume': '117',
     'author': 'W Brutsaert',
     'year': '2012',
     'unstructured': 'Brutsaert W, Hiyama T (2012) The determination of permafrost thawing trends from long-term streamflow measurements with an application in eastern Siberia. J Geophys Res Atmos 117(D22):D22110. \nhttps://doi.org/10.1029/2012JD018344',
     'journal-title': 'J Geophys Res Atmos'},
    {'key': '5_CR30',
     'author': 'O Bulygina',
     'volume': '6',
     'year': '2011',
     'unstructured': 'Bulygina O, Groisman PY, Razuvaev VN, Korshunova NN (2011) Changes in snow cover characteristics over Northern Eurasia since 1966. Environ Res Lett 6:04520. \nhttps://doi.org/10.1088/1748-9326/6/4/045204',
     'journal-title': 'Environ Res Lett',
     'DOI': '10.1088/1748-9326/6/4/045204',
     'doi-asserted-by': 'publisher'},
    {'issue': '7',
     'key': '5_CR31',
     'doi-asserted-by': 'publisher',
     'first-page': '912',
     'DOI': '10.1139/e17-076',
     'volume': '34',
     'author': 'C Burn',
     'year': '1997',
     'unstructured': 'Burn C (1997) Cryostratigraphy, paleogeography, and climate change during the early Holocene warm interval, western Arctic coast, Canada. Can J Earth Sci 34(7):912–925',
     'journal-title': 'Can J Earth Sci'},
    {'issue': '7',
     'key': '5_CR32',
     'doi-asserted-by': 'publisher',
     'first-page': '967',
     'DOI': '10.1139/e00-017',
     'volume': '37',
     'author': 'C Burn',
     'year': '2000',
     'unstructured': 'Burn C (2000) The thermal regime of a retrogressive thaw slump near Mayo, Yukon territory. Can J Earth Sci 37(7):967–981',
     'journal-title': 'Can J Earth Sci'},
    {'key': '5_CR33',
     'unstructured': 'Burn C, Friele P (1989) Geomorphology, vegetation succession, soil characteristics and permafrost in retrogressive thaw slumps near Mayo. Yukon Territory Arctic:31–40',
     'DOI': '10.14430/arctic1637',
     'doi-asserted-by': 'crossref'},
    {'key': '5_CR34',
     'unstructured': 'Burn CR, Nelson FE (2006) Comment on “A projection of severe near-surface permafrost degradation during the 21st century” by David M. Lawrence and Andrew G. Slater. Geophysical Research Letters 33 (21). \nhttps://doi.org/10.1029/2006GL027077',
     'DOI': '10.1029/2006GL027077',
     'doi-asserted-by': 'publisher'},
    {'key': '5_CR35',
     'doi-asserted-by': 'publisher',
     'first-page': '34',
     'DOI': '10.1007/s13280-011-0223-8',
     'volume': '41',
     'author': 'J Carstensen',
     'year': '2012',
     'unstructured': 'Carstensen J, Weydmann A (2012) Tipping points in the Arctic: eyeballing or statistical significance? Ambio 41:34–43. \nhttps://doi.org/10.1007/s13280-011-0223-8',
     'journal-title': 'Ambio'},
    {'issue': '5',
     'key': '5_CR36',
     'doi-asserted-by': 'publisher',
     'first-page': '1493',
     'DOI': '10.5194/gmd-8-1493-2015',
     'volume': '8',
     'author': 'S Chadburn',
     'year': '2015',
     'unstructured': 'Chadburn S, Burke E, Essery R, Boike J, Langer M, Heikenfeld M, Cox P, Friedlingstein P (2015) An improved representation of physical permafrost dynamics in the JULES land-surface model. Geosci Model Dev 8(5):1493–1508',
     'journal-title': 'Geosci Model Dev'},
    {'key': '5_CR37',
     'doi-asserted-by': 'publisher',
     'first-page': '21035',
     'DOI': '10.1029/95JD02145',
     'volume': 'D10',
     'author': 'TR Christensen',
     'year': '1995',
     'unstructured': 'Christensen TR, Jonasson S, Callaghan TV, Havström M (1995) Spatial variation in high latitude methane flux-a transect across tundra environments in Siberia and the European Arctic. J Geophys Res Oceans D10:21035–21045',
     'journal-title': 'J Geophys Res Oceans'},
    {'key': '5_CR38',
     'unstructured': 'Christensen TR, Ekberg A, Ström L, Mastepanov M, Panikov N, Öquist M, Svensson BH, Nykänen H, Martikainen PJ, Oskarsson H (2003) Factors controlling large scale variations in methane emissions from wetlands. Geophys Res Lett 30(7). \nhttps://doi.org/10.1029/2002gl016848',
     'DOI': '10.1029/2002gl016848',
     'doi-asserted-by': 'publisher'},
    {'issue': '9',
     'key': '5_CR39',
     'doi-asserted-by': 'publisher',
     'first-page': '627',
     'DOI': '10.1038/ngeo2234',
     'volume': '7',
     'author': 'J Cohen',
     'year': '2014',
     'unstructured': 'Cohen J, Screen JA, Furtado JC, Barlow M, Whittleston D, Coumou D, Francis J, Dethloff K, Entekhabi D, Overland J (2014) Recent Arctic amplification and extreme mid-latitude weather. Nat Geosci 7(9):627',
     'journal-title': 'Nat Geosci'},
    {'issue': '14',
     'key': '5_CR40',
     'doi-asserted-by': 'publisher',
     'first-page': '4163',
     'DOI': '10.1002/hyp.10206',
     'volume': '28',
     'author': 'RF Connon',
     'year': '2014',
     'unstructured': 'Connon RF, Quinton WL, Craig JR, Hayashi M (2014) Changing hydrologic connectivity due to permafrost thaw in the lower Liard River valley, NWT, Canada. Hydrol Process 28(14):4163–4178',
     'journal-title': 'Hydrol Process'},
    {'issue': '2',
     'key': '5_CR41',
     'doi-asserted-by': 'publisher',
     'first-page': '281',
     'DOI': '10.1002/2017JF004469',
     'volume': '123',
     'author': 'R Connon',
     'year': '2018',
     'unstructured': 'Connon R, Devoie É, Hayashi M, Veness T, Quinton W (2018) The influence of shallow taliks on permafrost thaw and active layer dynamics in subarctic Canada. J Geophys Res Earth 123(2):281–297',
     'journal-title': 'J Geophys Res Earth'},
    {'issue': '0',
     'key': '5_CR42',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1111/j.1365-2486.2005.01023.x',
     'volume': '0',
     'author': 'C Corradi',
     'year': '2005',
     'unstructured': 'Corradi C, Kolle O, Walter K, Zimov SA, Schulze ED (2005) Carbon dioxide and methane exchange of a north-east Siberian tussock tundra. Glob Chang Biol 0(0):051115033519001. \nhttps://doi.org/10.1111/j.1365-2486.2005.01023.x',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '9',
     'key': '5_CR43',
     'doi-asserted-by': 'publisher',
     'first-page': '3429',
     'DOI': '10.1073/pnas.1214104110',
     'volume': '110',
     'author': 'RM Cory',
     'year': '2013',
     'unstructured': 'Cory RM, Crump BC, Dobkowski JA, Kling GW (2013) Surface exposure to sunlight stimulates CO2 release from permafrost soil carbon in the Arctic. Proc Natl Acad Sci 110(9):3429–3434',
     'journal-title': 'Proc Natl Acad Sci'},
    {'issue': '14',
     'key': '5_CR44',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2007GL030212',
     'volume': '34',
     'author': 'F Costard',
     'year': '2007',
     'unstructured': 'Costard F, Gautier E, Brunstein D, Hammadi J, Fedorov A, Yang D, Dupeyrat L (2007) Impact of the global warming on the fluvial thermal erosion over the Lena River in Central Siberia. Geophys Res Lett 34(14):L14501. \nhttps://doi.org/10.1029/2007GL030212',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '1',
     'key': '5_CR45',
     'doi-asserted-by': 'publisher',
     'first-page': '19704',
     'DOI': '10.3402/polar.v32i0.19704',
     'volume': '32',
     'author': 'BAFK Denfeld',
     'year': '2013',
     'unstructured': 'Denfeld BAFK, Sobczak WV, Mann PJ, Holmes RM (2013) Summer CO2 evasion from streams and rivers in the Kolyma River basin, North-East Siberia. Polar Res 32(1):19704',
     'journal-title': 'Polar Res'},
    {'key': '5_CR46',
     'author': 'F Dentener',
     'year': '2006',
     'unstructured': 'Dentener F (2006) Global maps of atmospheric nitrogen deposition, 1860, 1993, and 2050. ORNL DAAC, Oak Ridge. \nhttps://doi.org/10.3334/ORNLDAAC/830',
     'volume-title': 'Global maps of atmospheric nitrogen deposition, 1860, 1993, and 2050',
     'DOI': '10.3334/ORNLDAAC/830',
     'doi-asserted-by': 'publisher'},
    {'issue': '7255',
     'key': '5_CR47',
     'doi-asserted-by': 'publisher',
     'first-page': '616',
     'DOI': '10.1038/nature08216',
     'volume': '460',
     'author': 'E Dorrepaal',
     'year': '2009',
     'unstructured': 'Dorrepaal E, Toet S, van Logtestijn RS, Swart E, van de Weg MJ, Callaghan TV, Aerts R (2009) Carbon respiration from subsurface peat accelerated by climate warming in the subarctic. Nature 460(7255):616',
     'journal-title': 'Nature'},
    {'issue': '45',
     'key': '5_CR48',
     'doi-asserted-by': 'publisher',
     'first-page': '13946',
     'DOI': '10.1073/pnas.1511705112',
     'volume': '112',
     'author': 'TW Drake',
     'year': '2015',
     'unstructured': 'Drake TW, Wickland KP, Spencer RG, McKnight DM, Striegl RG (2015) Ancient low–molecular-weight organic acids in permafrost fuel rapid carbon dioxide production upon thaw. Proc Natl Acad Sci 112(45):13946–13951',
     'journal-title': 'Proc Natl Acad Sci'},
    {'issue': '12',
     'key': '5_CR49',
     'doi-asserted-by': 'publisher',
     'first-page': '2336',
     'DOI': '10.1111/j.1365-2486.2006.01259.x',
     'volume': '12',
     'author': 'K Dutta',
     'year': '2006',
     'unstructured': 'Dutta K, Schuur E, Neff J, Zimov S (2006) Potential carbon release from permafrost soils of northeastern Siberia. Glob Chang Biol 12(12):2336–2351',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '5',
     'key': '5_CR50',
     'doi-asserted-by': 'publisher',
     'first-page': '332',
     'DOI': '10.1038/ngeo803',
     'volume': '3',
     'author': 'B Elberling',
     'year': '2010',
     'unstructured': 'Elberling B, Christiansen HH, Hansen BU (2010) High nitrous oxide production from thawing permafrost. Nat Geosci 3(5):332',
     'journal-title': 'Nat Geosci'},
    {'issue': '10',
     'key': '5_CR51',
     'doi-asserted-by': 'publisher',
     'first-page': '890',
     'DOI': '10.1038/nclimate1955',
     'volume': '3',
     'author': 'B Elberling',
     'year': '2013',
     'unstructured': 'Elberling B, Michelsen A, Schädel C, Schuur EA, Christiansen HH, Berg L, Tamstorf MP, Sigsgaard C (2013) Long-term CO2 production following permafrost thaw. Nat Clim Chang 3(10):890',
     'journal-title': 'Nat Clim Chang'},
    {'issue': '2',
     'key': '5_CR52',
     'doi-asserted-by': 'publisher',
     'first-page': '164',
     'DOI': '10.1111/j.1461-0248.2011.01716.x',
     'volume': '15',
     'author': 'SC Elmendorf',
     'year': '2012',
     'unstructured': 'Elmendorf SC, Henry GH, Hollister RD, Björk RG, Bjorkman AD, Callaghan TV, Collier LS, Cooper EJ, Cornelissen JH, Day TA (2012) Global assessment of experimental climate warming on tundra vegetation: heterogeneity over space and time. Ecol Lett 15(2):164–175',
     'journal-title': 'Ecol Lett'},
    {'issue': '5',
     'key': '5_CR53',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2006WR005139',
     'volume': '43',
     'author': 'CA Emmerton',
     'year': '2007',
     'unstructured': 'Emmerton CA, Lesack LF, Marsh P (2007) Lake abundance, potential water storage, and habitat distribution in the Mackenzie River Delta, western Canadian Arctic. Water Resour Res 43(5):W05419. \nhttps://doi.org/10.1029/2006WR005139',
     'journal-title': 'Water Resour Res'},
    {'issue': 'S1',
     'key': '5_CR54',
     'doi-asserted-by': 'publisher',
     'first-page': '84',
     'DOI': '10.1046/j.1365-2486.2000.06015.x',
     'volume': '6',
     'author': 'W Eugster',
     'year': '2000',
     'unstructured': 'Eugster W, Rouse WR, Pielke RA Sr, Mcfadden JP, Baldocchi DD, Kittel TG, Chapin FS, Liston GE, Vidale PL, Vaganov E (2000) Land–atmosphere energy exchange in Arctic tundra and boreal forest: available data and feedbacks to climate. Glob Chang Biol 6(S1):84–115',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '2',
     'key': '5_CR55',
     'doi-asserted-by': 'publisher',
     'first-page': '146',
     'DOI': '10.1016/j.gnr.2009.06.010',
     'volume': '30',
     'author': 'AN Fedorov',
     'year': '2009',
     'unstructured': 'Fedorov AN, Konstantinov PY (2009) Response of permafrost landscapes of central Yakutia to current changes of climate, and anthropogenic impacts. Geogr Nat Resour 30(2):146–150',
     'journal-title': 'Geogr Nat Resour'},
    {'issue': '2',
     'key': '5_CR56',
     'doi-asserted-by': 'publisher',
     'first-page': '188',
     'DOI': '10.1002/eco.1378',
     'volume': '7',
     'author': 'A Fedorov',
     'year': '2014',
     'unstructured': 'Fedorov A, Gavriliev P, Konstantinov P, Hiyama T, Iijima Y, Iwahana G (2014) Estimating the water balance of a thermokarst lake in the middle of the Lena River basin, eastern Siberia. Ecohydrology 7(2):188–196',
     'journal-title': 'Ecohydrology'},
    {'issue': '1',
     'key': '5_CR57',
     'doi-asserted-by': 'publisher',
     'first-page': '7',
     'DOI': '10.1080/00207233.2012.619879',
     'volume': '69',
     'author': 'A Fedotov',
     'year': '2012',
     'unstructured': 'Fedotov A, Phedorin M, Suvorov A, Melgunov M, Khodzher T (2012) Permafrost thawing inferred from Arctic lake sediment of the Taimyr peninsula, East Siberia, Russia. Int J Environ Stud 69(1):7–19',
     'journal-title': 'Int J Environ Stud'},
    {'issue': '35',
     'key': '5_CR58',
     'doi-asserted-by': 'publisher',
     'first-page': '14168',
     'DOI': '10.1073/pnas.1307031110',
     'volume': '110',
     'author': 'X Feng',
     'year': '2013',
     'unstructured': 'Feng X, Vonk JE, Van Dongen BE, Gustafsson Ö, Semiletov IP, Dudarev OV, Wang Z, Montluçon DB, Wacker L, Eglinton TI (2013) Differential mobilization of terrestrial carbon pools in Eurasian Arctic river basins. Proc Natl Acad Sci 110(35):14168–14173',
     'journal-title': 'Proc Natl Acad Sci'},
    {'issue': '9',
     'key': '5_CR59',
     'doi-asserted-by': 'publisher',
     'first-page': '3127',
     'DOI': '10.1111/gcb.13248',
     'volume': '22',
     'author': 'JP Fisher',
     'year': '2016',
     'unstructured': 'Fisher JP, Estop-Aragonés C, Thierry A, Charman DJ, Wolfe SA, Hartley IP, Murton JB, Williams M, Phoenix GK (2016) The influence of vegetation and soil characteristics on active-layer thickness of permafrost soils in boreal forest. Glob Chang Biol 22(9):3127–3140',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '3',
     'key': '5_CR60',
     'doi-asserted-by': 'publisher',
     'first-page': '229',
     'DOI': '10.1002/ppp.595',
     'volume': '18',
     'author': 'D Fortier',
     'year': '2007',
     'unstructured': 'Fortier D, Allard M, Shur Y (2007) Observation of rapid drainage system development by thermal erosion of ice wedges on Bylot Island, Canadian Arctic archipelago. Permafr Periglac Process 18(3):229–243',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '8',
     'key': '5_CR61',
     'doi-asserted-by': 'publisher',
     'first-page': '2861',
     'DOI': '10.1111/gcb.12916',
     'volume': '21',
     'author': 'D Frank',
     'year': '2015',
     'unstructured': 'Frank D, Reichstein M, Bahn M, Thonicke K, Frank D, Mahecha MD, Smith P, Van der Velde M, Vicca S, Babst F (2015) Effects of climate extremes on the terrestrial carbon cycle: concepts, processes and potential future impacts. Glob Chang Biol 21(8):2861–2880',
     'journal-title': 'Glob Chang Biol'},
    {'key': '5_CR62',
     'unstructured': 'French HM (2018) The periglacial environment. Wiley, Oxford, 515 p'},
    {'issue': '3–4',
     'key': '5_CR63',
     'doi-asserted-by': 'publisher',
     'first-page': '190',
     'DOI': '10.1016/j.earscirev.2010.04.002',
     'volume': '101',
     'author': 'H French',
     'year': '2010',
     'unstructured': 'French H, Shur Y (2010) The principles of cryostratigraphy. Earth Sci Rev 101(3–4):190–206',
     'journal-title': 'Earth Sci Rev'},
    {'issue': '1',
     'key': '5_CR64',
     'doi-asserted-by': 'publisher',
     'first-page': '169',
     'DOI': '10.1002/hyp.7196',
     'volume': '23',
     'author': 'KE Frey',
     'year': '2009',
     'unstructured': 'Frey KE, McClelland JW (2009) Impacts of permafrost degradation on arctic river biogeochemistry. Hydrol Process 23(1):169–182',
     'journal-title': 'Hydrol Process'},
    {'issue': '9',
     'key': '5_CR65',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2004GL022025',
     'volume': '32',
     'author': 'KE Frey',
     'year': '2005',
     'unstructured': 'Frey KE, Smith LC (2005) Amplified carbon release from vast west Siberian peatlands by 2100. Geophys Res Lett 32(9):L09401. \nhttps://doi.org/10.1029/2004GL022025',
     'journal-title': 'Geophys Res Lett'},
    {'issue': 'G4',
     'key': '5_CR66',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2006JG000369',
     'volume': '112',
     'author': 'Karen E. Frey',
     'year': '2007',
     'unstructured': 'Frey KE, McClelland JW, Holmes RM, Smith LC (2007a) Impacts of climate warming and permafrost thaw on the riverine transport of nitrogen and phosphorus to the Kara Sea. J Geophys Res Biogeosci 112(G4):G04S58. \nhttps://doi.org/10.1029/2006JG000369',
     'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
    {'issue': '3',
     'key': '5_CR67',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2006WR004902',
     'volume': '43',
     'author': 'KE Frey',
     'year': '2007',
     'unstructured': 'Frey KE, Siegel DI, Smith LC (2007b) Geochemistry of west Siberian streams and their potential response to permafrost degradation. Water Resour Res 43(3):W03406. \nhttps://doi.org/10.1029/2006WR004902',
     'journal-title': 'Water Resour Res'},
    {'issue': '5896',
     'key': '5_CR68',
     'doi-asserted-by': 'publisher',
     'first-page': '1648',
     'DOI': '10.1126/science.1157525',
     'volume': '321',
     'author': 'DG Froese',
     'year': '2008',
     'unstructured': 'Froese DG, Westgate JA, Reyes AV, Enkin RJ, Preece SJ (2008) Ancient permafrost and a future, warmer Arctic. Science 321(5896):1648–1648',
     'journal-title': 'Science'},
    {'issue': '6',
     'key': '5_CR69',
     'doi-asserted-by': 'publisher',
     'first-page': '2975',
     'DOI': '10.5194/tc-11-2975-2017',
     'volume': '11',
     'author': 'M Göckede',
     'year': '2017',
     'unstructured': 'Göckede M, Kittler F, Kwon MJ, Burjack I, Heimann M, Kolle O, Zimov N, Zimov S (2017) Shifted energy fluxes, increased Bowen ratios, and reduced thaw depths linked with drainage-induced changes in permafrost ecosystem structure. Cryosphere 11(6):2975–2996',
     'journal-title': 'Cryosphere'},
    {'issue': '4',
     'key': '5_CR70',
     'doi-asserted-by': 'publisher',
     'first-page': '29',
     'DOI': '10.1029/2009EO040001',
     'volume': '90',
     'author': 'MN Gooseff',
     'year': '2009',
     'unstructured': 'Gooseff MN, Balser A, Bowden WB, Jones JB (2009) Effects of hillslope thermokarst in northern Alaska. EOS Trans Am Geophys Union 90(4):29–30',
     'journal-title': 'EOS Trans Am Geophys Union'},
    {'issue': '3–4',
     'key': '5_CR71',
     'doi-asserted-by': 'publisher',
     'first-page': '371',
     'DOI': '10.1016/j.gloplacha.2006.07.029',
     'volume': '56',
     'author': 'PY Groisman',
     'year': '2007',
     'unstructured': 'Groisman PY, Sherstyukov BG, Razuvaev VN, Knight RW, Enloe JG, Stroumentova NS, Whitfield PH, Førland E, Hannsen-Bauer I, Tuomenvirta H (2007) Potential forest fire danger over northern Eurasia: changes during the 20th century. Glob Planet Chang 56(3–4):371–386',
     'journal-title': 'Glob Planet Chang'},
    {'key': '5_CR72',
     'unstructured': 'Grosse G, Romanovsky V, Walter K, Morgenstern A, Lantuit H, Zimov S (2008) Distribution of thermokarst lakes and ponds at three yedoma sites in Siberia. In: 9th international conference on permafrost, Fairbanks, 2008. Proceedings 9th international conference on Permafrost, pp 551–556'},
    {'key': '5_CR73',
     'unstructured': 'Grosse G, Harden J, Turetsky M, McGuire AD, Camill P, Tarnocai C, Frolking S, Schuur EAG, Jorgenson T, Marchenko S, Romanovsky V, Wickland KP, French N, Waldrop M, Bourgeau-Chavez L, Striegl RG (2011) Vulnerability of high-latitude soil organic carbon in North America to disturbance. J Geophys Res 116. \nhttps://doi.org/10.1029/2010jg001507',
     'DOI': '10.1029/2010jg001507',
     'doi-asserted-by': 'publisher'},
    {'key': '5_CR74',
     'author': 'G. Grosse',
     'first-page': '325',
     'year': '2013',
     'unstructured': 'Grosse G, Jones B, Arp C (2013) Thermokarst lakes, drainage, and drained basins. In: Shroder J, Giardino R, Harbor J (eds) Glacial and periglacial geomorphology, Treatise on geomorphology, vol 8, pp 325–353. \nhttps://doi.org/10.1016/b978-0-12-374739-6.00216-5',
     'volume-title': 'Treatise on Geomorphology',
     'DOI': '10.1016/B978-0-12-374739-6.00216-5',
     'doi-asserted-by': 'publisher'},
    {'issue': '2',
     'key': '5_CR75',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2005GB002593',
     'volume': '20',
     'author': 'L Guo',
     'year': '2006',
     'unstructured': 'Guo L, Macdonald RW (2006) Source and transport of terrigenous organic matter in the upper Yukon River: evidence from isotope (δ13C, δ14C, and δ15N) composition of dissolved, colloidal, and particulate phases. Glob Biogeochem Cycles 20(2):GB2011. \nhttps://doi.org/10.1029/2005GB002593',
     'journal-title': 'Glob Biogeochem Cycles'},
    {'issue': '13',
     'key': '5_CR76',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2007GL030689',
     'volume': '34',
     'author': 'L Guo',
     'year': '2007',
     'unstructured': 'Guo L, Ping CL, Macdonald RW (2007) Mobilization pathways of organic carbon from permafrost to arctic rivers in a changing climate. Geophys Res Lett 34(13):L13603. \nhttps://doi.org/10.1029/2007GL030689',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '6',
     'key': '5_CR77',
     'doi-asserted-by': 'publisher',
     'first-page': '1737',
     'DOI': '10.5194/bg-8-1737-2011',
     'volume': '8',
     'author': 'Ö Gustafsson',
     'year': '2011',
     'unstructured': 'Gustafsson Ö, van Dongen BE, Vonk JE, Dudarev OV, Semiletov IP (2011) Widespread release of old carbon across the Siberian Arctic echoed by its large rivers. Biogeosciences 8(6):1737–1743. \nhttps://doi.org/10.5194/bg-8-1737-2011',
     'journal-title': 'Biogeosciences'},
    {'key': '5_CR78',
     'author': 'Ramon F. Hanssen',
     'year': '2001',
     'unstructured': 'Hanssen RF (2001) Radar interferometry: data interpretation and error analysis, vol 2. Springer, Dordrecht, 308 p',
     'series-title': 'Remote Sensing and Digital Image Processing',
     'volume-title': 'Radar Interferometry',
     'DOI': '10.1007/0-306-47633-9',
     'doi-asserted-by': 'publisher'},
    {'issue': '10',
     'key': '5_CR79',
     'doi-asserted-by': 'publisher',
     'first-page': '1040',
     'DOI': '10.1111/j.1461-0248.2009.01355.x',
     'volume': '12',
     'author': 'MA Harsch',
     'year': '2009',
     'unstructured': 'Harsch MA, Hulme PE, McGlone MS, Duncan RP (2009) Are treelines advancing? A global meta-analysis of treeline response to climate warming. Ecol Lett 12(10):1040–1049',
     'journal-title': 'Ecol Lett'},
    {'issue': '2',
     'key': '5_CR80',
     'doi-asserted-by': 'publisher',
     'first-page': '649',
     'DOI': '10.1111/gcb.12058',
     'volume': '19',
     'author': 'CE Hicks Pries',
     'year': '2013',
     'unstructured': 'Hicks Pries CE, Schuur EA, Crummer KG (2013a) Thawing permafrost increases old soil and autotrophic respiration in tundra: partitioning ecosystem respiration using delta(13) C and (14) C. Glob Chang Biol 19(2):649–661. \nhttps://doi.org/10.1111/gcb.12058',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '3',
     'key': '5_CR81',
     'doi-asserted-by': 'publisher',
     'first-page': '1133',
     'DOI': '10.1002/jgrg.20089',
     'volume': '118',
     'author': 'CE Hicks Pries',
     'year': '2013',
     'unstructured': 'Hicks Pries CE, Schuur E, Vogel JG, Natali SM (2013b) Moisture drives surface decomposition in thawing tundra. J Geophys Res Biogeo 118(3):1133–1143',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '12',
     'key': '5_CR82',
     'doi-asserted-by': 'publisher',
     'first-page': '4508',
     'DOI': '10.1111/gcb.13032',
     'volume': '21',
     'author': 'CE Hicks Pries',
     'year': '2015',
     'unstructured': 'Hicks Pries CE, van Logtestijn RS, Schuur EA, Natali SM, Cornelissen JH, Aerts R, Dorrepaal E (2015) Decadal warming causes a consistent and persistent shift from heterotrophic to autotrophic respiration in contrasting permafrost ecosystems. Glob Chang Biol 21(12):4508–4519. \nhttps://doi.org/10.1111/gcb.13032',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '7563',
     'key': '5_CR83',
     'doi-asserted-by': 'publisher',
     'first-page': '84',
     'DOI': '10.1038/nature14653',
     'volume': '524',
     'author': 'RG Hilton',
     'year': '2015',
     'unstructured': 'Hilton RG, Galy V, Gaillardet J, Dellinger M, Bryant C, O’regan M, Gröcke DR, Coxall H, Bouchez J, Calmels D (2015) Erosion of organic carbon in the Arctic as a geological carbon dioxide sink. Nature 524(7563):84',
     'journal-title': 'Nature'},
    {'issue': '4',
     'key': '5_CR84',
     'doi-asserted-by': 'publisher',
     'first-page': '530',
     'DOI': '10.1657/1523-0430(2006)38[530:PDATFS]2.0.CO;2',
     'volume': '38',
     'author': 'KM Hinkel',
     'year': '2006',
     'unstructured': 'Hinkel KM, Hurd JK Jr (2006) Permafrost destabilization and thermokarst following snow fence installation, Barrow, Alaska, USA. Arct Antarct Alp Res 38(4):530–539',
     'journal-title': 'Arct Antarct Alp Res'},
    {'issue': '3',
     'key': '5_CR85',
     'doi-asserted-by': 'publisher',
     'first-page': '291',
     'DOI': '10.1657/1523-0430(2003)035[0291:SEAACS]2.0.CO;2',
     'volume': '35',
     'author': 'KM Hinkel',
     'year': '2003',
     'unstructured': 'Hinkel KM, Eisner WR, Bockheim JG, Nelson FE, Peterson KM, Dai X (2003) Spatial extent, age, and carbon stocks in drained thaw lake basins on the Barrow Peninsula, Alaska. Arct Antarct Alp Res 35(3):291–300',
     'journal-title': 'Arct Antarct Alp Res'},
    {'issue': '3',
     'key': '5_CR86',
     'doi-asserted-by': 'publisher',
     'first-page': '251',
     'DOI': '10.1007/s10584-005-5352-2',
     'volume': '72',
     'author': 'LD Hinzman',
     'year': '2005',
     'unstructured': 'Hinzman LD, Bettez ND, Bolton WR, Chapin FS, Dyurgerov MB, Fastie CL, Griffith B, Hollister RD, Hope A, Huntington HP (2005) Evidence and implications of recent climate change in northern Alaska and other arctic regions. Clim Chang 72(3):251–298',
     'journal-title': 'Clim Chang'},
    {'issue': '8',
     'key': '5_CR87',
     'doi-asserted-by': 'publisher',
     'first-page': '1837',
     'DOI': '10.1890/11-1498.1',
     'volume': '23',
     'author': 'LD Hinzman',
     'year': '2013',
     'unstructured': 'Hinzman LD, Deal CJ, McGuire AD, Mernild SH, Polyakov IV, Walsh JE (2013) Trajectory of the Arctic as an integrated system. Ecol Appl 23(8):1837–1868',
     'journal-title': 'Ecol Appl'},
    {'issue': '2',
     'key': '5_CR88',
     'doi-asserted-by': 'publisher',
     'first-page': '911',
     'DOI': '10.1111/j.1365-2486.2010.02256.x',
     'volume': '17',
     'author': 'J Hollesen',
     'year': '2011',
     'unstructured': 'Hollesen J, Elberling B, Jansson P-E (2011) Future active layer dynamics and carbon dioxide production from thawing permafrost layers in Northeast Greenland. Glob Chang Biol 17(2):911–926',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '3',
     'key': '5_CR89',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2007GL032837',
     'volume': '35',
     'author': 'R Holmes',
     'year': '2008',
     'unstructured': 'Holmes R, McClelland JW, Raymond PA, Frazer BB, Peterson BJ, Stieglitz M (2008) Lability of DOC transported by Alaskan rivers to the Arctic Ocean. Geophys Res Lett 35(3):L03402. \nhttps://doi.org/10.1029/2007GL032837',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '2',
     'key': '5_CR90',
     'doi-asserted-by': 'publisher',
     'first-page': '369',
     'DOI': '10.1007/s12237-011-9386-6',
     'volume': '35',
     'author': 'RM Holmes',
     'year': '2012',
     'unstructured': 'Holmes RM, McClelland JW, Peterson BJ, Tank SE, Bulygina E, Eglinton TI, Gordeev VV, Gurtovaya TY, Raymond PA, Repeta DJ (2012) Seasonal and annual fluxes of nutrients and organic matter from large rivers to the Arctic Ocean and surrounding seas. Estuar Coasts 35(2):369–382',
     'journal-title': 'Estuar Coasts'},
    {'key': '5_CR91',
     'year': '2012',
     'unstructured': 'Holmes RM, Coe MT, Fiske GJ, Gurtovaya T, McClelland JW, Shiklomanov AI, Spencer RG, Tank SE, Zhulidov AV (2013) Climate change impacts on the hydrology and biogeochemistry of Arctic rivers. In: Goldman, CR, Kumagai, M, Robarts, RD (eds) Climatic change and global warming of inland waters: impacts and mitigation for ecosystems and societies. Wiley, Somerset, pp 1–26. doi:\nhttps://doi.org/10.1002/9781118470596',
     'volume-title': 'Climatic Change and Global Warming of Inland Waters',
     'DOI': '10.1002/9781118470596',
     'doi-asserted-by': 'publisher'},
    {'key': '5_CR92',
     'unstructured': 'Holmes R, Shiklomanov, AI, Suslova, A, Tretiakov, M, McClelland, JW, Spencer, RGM, Tank, SE (2018) River discharge. Arctic report card 2018. NOAA. \nhttps://arctic.noaa.gov/Report-Card/Report-Card-2018'},
    {'key': '5_CR93',
     'unstructured': 'Hopkins D, Kidd J (1988) Thaw lake sediments and sedimentary environments. In: Proceedings of the 5th international permafrost conference, pp 790–795'},
    {'key': '5_CR308',
     'year': '2009',
     'unstructured': 'IPCC (2013) Climate change 2013: the physical science basis. Contribution of working group I to the fifth assessment report of the intergovernmental panel on climate change. Cambridge University Press. \nhttps://doi.org/10.1017/CBO9781107415324',
     'volume-title': 'Climate Change 2013 - The Physical Science Basis',
     'DOI': '10.1017/CBO9781107415324',
     'doi-asserted-by': 'publisher'},
    {'issue': '1',
     'key': '5_CR94',
     'doi-asserted-by': 'publisher',
     'first-page': '30',
     'DOI': '10.1002/ppp.662',
     'volume': '21',
     'author': 'Y Iijima',
     'year': '2010',
     'unstructured': 'Iijima Y, Fedorov AN, Park H, Suzuki K, Yabuki H, Maximov TC, Ohata T (2010) Abrupt increases in soil temperatures following increased precipitation in a permafrost region, Central Lena River basin, Russia. Permafr Periglac Process 21(1):30–41. \nhttps://doi.org/10.1002/ppp.662',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '2',
     'key': '5_CR95',
     'doi-asserted-by': 'publisher',
     'first-page': '177',
     'DOI': '10.1002/eco.1366',
     'volume': '7',
     'author': 'Y Iijima',
     'year': '2014',
     'unstructured': 'Iijima Y, Ohta T, Kotani A, Fedorov AN, Kodama Y, Maximov TC (2014) Sap flow changes in relation to permafrost degradation under increasing precipitation in an eastern Siberian larch forest. Ecohydrology 7(2):177–187',
     'journal-title': 'Ecohydrology'},
    {'issue': '13',
     'key': '5_CR96',
     'doi-asserted-by': 'publisher',
     'first-page': '4265',
     'DOI': '10.1002/joc.4629',
     'volume': '36',
     'author': 'Y Iijima',
     'year': '2016',
     'unstructured': 'Iijima Y, Nakamura T, Park H, Tachibana Y, Fedorov AN (2016) Enhancement of Arctic storm activity in relation to permafrost degradation in eastern Siberia. Int J Climatol 36(13):4265–4275',
     'journal-title': 'Int J Climatol'},
    {'issue': 'G2',
     'key': '5_CR305',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2005JG000039',
     'volume': '110',
     'author': 'Go Iwahana',
     'year': '2005',
     'unstructured': 'Iwahana G, Machimura T, Kobayashi Y, Fedorov AN, Konstantinov PY, Fukuda M (2005) Influence of forest clear-cutting on the thermal and hydrological regime of the active layer near Yakutsk, eastern Siberia. J Geophys Res Biogeo 110(G2):G02004. \nhttps://doi.org/10.1029/2005JG000039',
     'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
    {'issue': '2',
     'key': '5_CR97',
     'doi-asserted-by': 'publisher',
     'first-page': '96',
     'DOI': '10.1016/j.polar.2014.01.005',
     'volume': '8',
     'author': 'G Iwahana',
     'year': '2014',
     'unstructured': 'Iwahana G, Takano S, Petrov RE, Tei S, Shingubara R, Maximov TC, Fedorov AN, Desyatkin AR, Nikolaev AN, Desyatkin RV (2014) Geocryological characteristics of the upper permafrost in a tundra-forest transition of the Indigirka River Valley, Russia. Pol Sci 8(2):96–113',
     'journal-title': 'Pol Sci'},
    {'issue': '150',
     'key': '5_CR98',
     'doi-asserted-by': 'publisher',
     'first-page': '315',
     'DOI': '10.1017/S0022143000001817',
     'volume': '45',
     'author': 'MO Jeffries',
     'year': '1999',
     'unstructured': 'Jeffries MO, Zhang T, Frey K, Kozlenko N (1999) Estimating late-winter heat flow to the atmosphere from the lake-dominated Alaskan North Slope. J Glaciol 45(150):315–324',
     'journal-title': 'J Glaciol'},
    {'issue': '5',
     'key': '5_CR99',
     'doi-asserted-by': 'publisher',
     'first-page': '882',
     'DOI': '10.1002/grl.50187',
     'volume': '40',
     'author': 'SM Jepsen',
     'year': '2013',
     'unstructured': 'Jepsen SM, Voss CI, Walvoord MA, Minsley BJ, Rover J (2013) Linkages between lake shrinkage/expansion and sublacustrine permafrost distribution determined from remote sensing of interior Alaska, USA. Geophys Res Lett 40(5):882–887',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '3',
     'key': '5_CR100',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/8/3/035025',
     'volume': '8',
     'author': 'M Johansson',
     'year': '2013',
     'unstructured': 'Johansson M, Callaghan TV, Bosiö J, Åkerman HJ, Jackowicz-Korczynski M, Christensen TR (2013) Rapid responses of permafrost and vegetation to experimentally increased snow cover in sub-arctic Sweden. Environ Res Lett 8(3):035025. \nhttps://doi.org/10.1088/1748-9326/8/3/035025',
     'journal-title': 'Environ Res Lett'},
    {'issue': '2',
     'key': '5_CR101',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2004GL021734',
     'volume': '32',
     'author': 'J Jones Jr',
     'year': '2005',
     'unstructured': 'Jones J Jr, Petrone KC, Finlay JC, Hinzman LD, Bolton WR (2005) Nitrogen loss from watersheds of interior Alaska underlain with discontinuous permafrost. Geophys Res Lett 32(2):L02401. \nhttps://doi.org/10.1029/2004GL021734',
     'journal-title': 'Geophys Res Lett'},
    {'key': '5_CR102',
     'unstructured': 'Jones BM, Grosse G, Arp C, Jones M, Walter Anthony K, Romanovsky V (2011) Modern thermokarst lake dynamics in the continuous permafrost zone, northern Seward peninsula, Alaska. J Geophys Res Biogeosci 116(G2):G00M03. \nhttps://doi.org/10.1029/2011JG001666',
     'DOI': '10.1029/2011JG001666',
     'doi-asserted-by': 'publisher'},
    {'issue': 'G2',
     'key': '5_CR103',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2011JG001766',
     'volume': '117',
     'author': 'Miriam C. Jones',
     'year': '2012',
     'unstructured': 'Jones MC, Grosse G, Jones BM, Walter Anthony K (2012) Peat accumulation in drained thermokarst lake basins in continuous, ice-rich permafrost, northern Seward Peninsula, Alaska. J Geophys Res Biogeo 117(G2)',
     'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
    {'key': '5_CR104',
     'unstructured': 'Jorgenson MT, Shur Y (2007) Evolution of lakes and basins in northern Alaska and discussion of the thaw lake cycle. J Geophys Res Earth Surf 112(F2):F02S17. \nhttps://doi.org/10.1029/2006JF000531',
     'DOI': '10.1029/2006JF000531',
     'doi-asserted-by': 'publisher'},
    {'issue': '4',
     'key': '5_CR105',
     'doi-asserted-by': 'publisher',
     'first-page': '551',
     'DOI': '10.1023/A:1005667424292',
     'volume': '48',
     'author': 'MT Jorgenson',
     'year': '2001',
     'unstructured': 'Jorgenson MT, Racine CH, Walters JC, Osterkamp TE (2001) Permafrost degradation and ecological changes associated with a warmingclimate in Central Alaska. Clim Chang 48(4):551–579',
     'journal-title': 'Clim Chang'},
    {'issue': '2',
     'key': '5_CR106',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2005gl024960',
     'volume': '33',
     'author': 'MT Jorgenson',
     'year': '2006',
     'unstructured': 'Jorgenson MT, Shur YL, Pullman ER (2006) Abrupt increase in permafrost degradation in Arctic Alaska. Geophys Res Lett 33(2):L02503. \nhttps://doi.org/10.1029/2005gl024960',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '7',
     'key': '5_CR107',
     'doi-asserted-by': 'publisher',
     'first-page': '1219',
     'DOI': '10.1139/X10-060',
     'volume': '40',
     'author': 'MT Jorgenson',
     'year': '2010',
     'unstructured': 'Jorgenson MT, Romanovsky V, Harden J, Shur Y, O’Donnell J, Schuur EA, Kanevskiy M, Marchenko S (2010) Resilience and vulnerability of permafrost to climate change. Can J For Res 40(7):1219–1236',
     'journal-title': 'Can J For Res'},
    {'issue': '3',
     'key': '5_CR108',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/8/3/035017',
     'volume': '8',
     'author': 'MT Jorgenson',
     'year': '2013',
     'unstructured': 'Jorgenson MT, Harden J, Kanevskiy M, O’Donnell J, Wickland K, Ewing S, Manies K, Zhuang Q, Shur Y, Striegl R (2013) Reorganization of vegetation, hydrology and soil carbon after permafrost degradation across heterogeneous boreal landscapes. Environ Res Lett 8(3):035017',
     'journal-title': 'Environ Res Lett'},
    {'key': '5_CR109',
     'doi-asserted-by': 'publisher',
     'first-page': '2280',
     'DOI': '10.1002/2015JF003602',
     'volume': '120',
     'author': 'NT Jorgenson',
     'year': '2015',
     'unstructured': 'Jorgenson NT, Kanevsky M, Shur Y, Moskalenko N, Brown DRN, Wickland K, Striegl R, Koch J (2015) Role of ground ice dynamics and ecological feedbacks in recent ice wedge degradation and stabilization. J Geophys Res Earth Surf 120:2280–2297. \nhttps://doi.org/10.1002/2015JF003602',
     'journal-title': 'J Geophys Res Earth Surf'},
    {'issue': '1',
     'key': '5_CR110',
     'doi-asserted-by': 'publisher',
     'first-page': '621',
     'DOI': '10.3390/rs6010621',
     'volume': '6',
     'author': 'J Karlsson',
     'year': '2014',
     'unstructured': 'Karlsson J, Lyon S, Destouni G (2014) Temporal behavior of Lake size-distribution in a thawing permafrost landscape in Northwestern Siberia. Remote Sens 6(1):621–636. \nhttps://doi.org/10.3390/rs6010621',
     'journal-title': 'Remote Sens'},
    {'issue': '4',
     'key': '5_CR111',
     'doi-asserted-by': 'publisher',
     'first-page': '561',
     'DOI': '10.1657/1523-0430(2006)38[561:TFAVDI]2.0.CO;2',
     'volume': '38',
     'author': 'F Katamura',
     'year': '2006',
     'unstructured': 'Katamura F, Fukuda M, Bosikov NP, Desyatkin RV, Nakamura T, Moriizumi J (2006) Thermokarst formation and vegetation dynamics inferred from a palynological study in Central Yakutia, Eastern Siberia, Russia. Arct Antarct Alp Res 38(4):561–570',
     'journal-title': 'Arct Antarct Alp Res'},
    {'issue': '3',
     'key': '5_CR112',
     'doi-asserted-by': 'publisher',
     'first-page': '571',
     'DOI': '10.1175/JHM575.1',
     'volume': '8',
     'author': 'VM Kattsov',
     'year': '2007',
     'unstructured': 'Kattsov VM, Walsh JE, Chapman WL, Govorkova VA, Pavlova TV, Zhang X (2007) Simulation and projection of Arctic freshwater budget components by the IPCC AR4 global climate models. J Hydrometeorol 8(3):571–589',
     'journal-title': 'J Hydrometeorol'},
    {'issue': 'G2',
     'key': '5_CR113',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2011JG001796',
     'volume': '117',
     'author': 'M. A. Kessler',
     'year': '2012',
     'unstructured': 'Kessler M, Plug LJ, Walter Anthony K (2012) Simulating the decadal-to millennial-scale dynamics of morphology and sequestered carbon mobilization of two thermokarst lakes in NW Alaska. J Geophys Res Biogeosci 117(G2):G00M06. \nhttps://doi.org/10.1029/2011JG001796',
     'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
    {'issue': '6',
     'key': '5_CR114',
     'doi-asserted-by': 'publisher',
     'first-page': '1998',
     'DOI': '10.1111/j.1365-2486.2012.02663.x',
     'volume': '18',
     'author': 'F Keuper',
     'year': '2012',
     'unstructured': 'Keuper F, Van Bodegom PM, Dorrepaal E, Weedon JT, Van Hal J, Van Logtestijn RS, Aerts R (2012a) A frozen feast: thawing permafrost increases plant-available nitrogen in subarctic peatlands. Glob Chang Biol 18(6):1998–2007',
     'journal-title': 'Glob Chang Biol'},
    {'issue': 'Suppl 3',
     'key': '5_CR115',
     'doi-asserted-by': 'publisher',
     'first-page': '269',
     'DOI': '10.1007/s13280-012-0305-2',
     'volume': '41',
     'author': 'F Keuper',
     'year': '2012',
     'unstructured': 'Keuper F, Parmentier FJ, Blok D, van Bodegom PM, Dorrepaal E, van Hal JR, van Logtestijn RS, Aerts R (2012b) Tundra in the rain: differential vegetation responses to three years of experimentally doubled summer precipitation in Siberian shrub and Swedish bog tundra. Ambio 41(Suppl 3):269–280. \nhttps://doi.org/10.1007/s13280-012-0305-2',
     'journal-title': 'Ambio'},
    {'issue': '2',
     'key': '5_CR116',
     'doi-asserted-by': 'publisher',
     'first-page': '345',
     'DOI': '10.1007/s10584-013-0705-8',
     'volume': '119',
     'author': 'VV Kharin',
     'year': '2013',
     'unstructured': 'Kharin VV, Zwiers F, Zhang X, Wehner M (2013) Changes in temperature and precipitation extremes in the CMIP5 ensemble. Clim Chang 119(2):345–357',
     'journal-title': 'Clim Chang'},
    {'issue': '2',
     'key': '5_CR117',
     'doi-asserted-by': 'publisher',
     'first-page': '250',
     'DOI': '10.1111/j.1600-0889.2007.00333.x',
     'volume': '60',
     'author': 'D Khvorostyanov',
     'year': '2008',
     'unstructured': 'Khvorostyanov D, Krinner G, Ciais P, Heimann M, Zimov S (2008a) Vulnerability of permafrost carbon to global warming. Part I: model description and role of heat generated by organic matter decomposition. Tellus B: Chem Phys Meteorol 60(2):250–264',
     'journal-title': 'Tellus B: Chem Phys Meteorol'},
    {'issue': '2',
     'key': '5_CR118',
     'doi-asserted-by': 'publisher',
     'first-page': '265',
     'DOI': '10.1111/j.1600-0889.2007.00336.x',
     'volume': '60',
     'author': 'D Khvorostyanov',
     'year': '2008',
     'unstructured': 'Khvorostyanov D, Ciais P, Krinner G, Zimov S, Corradi C, Guggenberger G (2008b) Vulnerability of permafrost carbon to global warming. Part II: sensitivity of permafrost carbon stock to global warming. Tellus B Chem Phys Meteorol 60(2):265–275',
     'journal-title': 'Tellus B Chem Phys Meteorol'},
    {'issue': '4',
     'key': '5_CR119',
     'doi-asserted-by': 'publisher',
     'first-page': '423',
     'DOI': '10.1080/00207230902758287',
     'volume': '66',
     'author': 'SN Kirpotin',
     'year': '2009',
     'unstructured': 'Kirpotin SN, Polishchuk Y, Bryksina N (2009) Abrupt changes of thermokarst lakes in Western Siberia: impacts of climatic warming on permafrost melting. Int J Environ Stud 66(4):423–431. \nhttps://doi.org/10.1080/00207230902758287',
     'journal-title': 'Int J Environ Stud'},
    {'issue': '5',
     'key': '5_CR120',
     'doi-asserted-by': 'publisher',
     'first-page': '603',
     'DOI': '10.1080/00207233.2011.593901',
     'volume': '68',
     'author': 'S Kirpotin',
     'year': '2011',
     'unstructured': 'Kirpotin S, Polishchuk Y, Bryksina N, Sugaipova A, Kouraev A, Zakharova E, Pokrovsky OS, Shirokova L, Kolmakova M, Manassypov R, Dupre B (2011) West Siberian palsa peatlands: distribution, typology, cyclic development, present day climate-driven changes, seasonal hydrology and impact on CO2 cycle. Int J Environ Stud 68(5):603–623. \nhttps://doi.org/10.1080/00207233.2011.593901',
     'journal-title': 'Int J Environ Stud'},
    {'key': '5_CR121',
     'doi-asserted-by': 'publisher',
     'first-page': '1704',
     'DOI': '10.1002/2017GB005774',
     'volume': '31',
     'author': 'F Kittler',
     'year': '2017',
     'unstructured': 'Kittler F, Heimann M, Kolle O, Zimov N, Zimov S, Göckede M (2017) Long-term drainage reduces CO2 uptake and CH4 emissions in a Siberian permafrost ecosystem. Glob Biogeochem Cycles 31:1704–1717. \nhttps://doi.org/10.1002/2017GB005774',
     'journal-title': 'Glob Biogeochem Cycles'},
    {'issue': '4',
     'key': '5_CR122',
     'doi-asserted-by': 'publisher',
     'first-page': '1160',
     'DOI': '10.1111/gcb.12116',
     'volume': '19',
     'author': 'C Knoblauch',
     'year': '2013',
     'unstructured': 'Knoblauch C, Beer C, Sosnin A, Wagner D, Pfeiffer EM (2013) Predicting long-term carbon mineralization and trace gas production from thawing permafrost of Northeast Siberia. Glob Chang Biol 19(4):1160–1172',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '4',
     'key': '5_CR123',
     'doi-asserted-by': 'publisher',
     'first-page': '309',
     'DOI': '10.1038/s41558-018-0095-z',
     'volume': '8',
     'author': 'C Knoblauch',
     'year': '2018',
     'unstructured': 'Knoblauch C, Beer C, Liebner S, Grigoriev MN, Pfeiffer E-M (2018) Methane production as key to the greenhouse gas budget of thawing permafrost. Nat Clim Chang 8(4):309',
     'journal-title': 'Nat Clim Chang'},
    {'issue': '2',
     'key': '5_CR124',
     'doi-asserted-by': 'publisher',
     'first-page': '79',
     'DOI': '10.1002/ppp.1804',
     'volume': '25',
     'author': 'JC Koch',
     'year': '2014',
     'unstructured': 'Koch JC, Gurney K, Wipfli MS (2014) Morphology-dependent water budgets and nutrient fluxes in arctic thaw ponds. Permafr Periglac Process 25(2):79–93',
     'journal-title': 'Permafr Periglac Process'},
    {'key': '5_CR125',
     'doi-asserted-by': 'publisher',
     'first-page': '2604',
     'DOI': '10.1029/2018JG004528',
     'volume': '123',
     'author': 'J Koch',
     'year': '2018',
     'unstructured': 'Koch J, Jorgenson M, Wickland K, Kanevskiy M, Striegl R (2018) Ice wedge degradation and stabilization impacts water budgets and nutrient cycling in arctic trough ponds. J Geophys Res Biogeo 123:2604–2616. \nhttps://doi.org/10.1029/2018JG004528',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '4',
     'key': '5_CR126',
     'doi-asserted-by': 'publisher',
     'first-page': '343',
     'DOI': '10.1002/ppp.536',
     'volume': '16',
     'author': 'S Kokelj',
     'year': '2005',
     'unstructured': 'Kokelj S, Jenkins R, Milburn D, Burn C, Snow N (2005) The influence of thermokarst disturbance on the water quality of small upland lakes, Mackenzie Delta region, Northwest Territories, Canada. Permafr Periglac Process 16(4):343–353',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '2',
     'key': '5_CR127',
     'doi-asserted-by': 'publisher',
     'first-page': '173',
     'DOI': '10.1002/ppp.642',
     'volume': '20',
     'author': 'SV Kokelj',
     'year': '2009',
     'unstructured': 'Kokelj SV, Lantz TC, Kanigan J, Smith S, Coutts R (2009) Origin and polycyclic behaviour of tundra thaw slumps, Mackenzie Delta region, Northwest Territories, Canada. Permafr Periglac Process 20(2):173–184',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '4',
     'key': '5_CR128',
     'doi-asserted-by': 'publisher',
     'first-page': '371',
     'DOI': '10.1130/G38626.1',
     'volume': '45',
     'author': 'SV Kokelj',
     'year': '2017',
     'unstructured': 'Kokelj SV, Lantz TC, Tunnicliffe J, Segal R, Lacelle D (2017) Climate-driven thaw of permafrost preserved glacial landscapes, northwestern Canada. Geology 45(4):371–374',
     'journal-title': 'Geology'},
    {'key': '5_CR129',
     'first-page': '16',
     'volume': '13',
     'author': 'V Kravtsova',
     'year': '2009',
     'unstructured': 'Kravtsova V, Bystrova A (2009) Changes in thermokarst lake sizes in different regions of Russia for the last 30 years (Изменение размеров термокарстовых озер в различных районах россии за последние 30 лет). Kriosfera Zemli (Earth Cryosphere) 13:16–26',
     'journal-title': 'Kriosfera Zemli (Earth Cryosphere)'},
    {'issue': '2',
     'key': '5_CR130',
     'doi-asserted-by': 'publisher',
     'first-page': '1286',
     'DOI': '10.1002/2015WR018057',
     'volume': '52',
     'author': 'BL Kurylyk',
     'year': '2016',
     'unstructured': 'Kurylyk BL, Hayashi M, Quinton WL, McKenzie JM, Voss CI (2016) Influence of vertical and lateral heat transfer on permafrost thaw, peatland landscape transition, and groundwater flow. Water Resour Res 52(2):1286–1305',
     'journal-title': 'Water Resour Res'},
    {'issue': '14',
     'key': '5_CR131',
     'doi-asserted-by': 'publisher',
     'first-page': '4219',
     'DOI': '10.5194/bg-13-4219-2016',
     'volume': '13',
     'author': 'MJ Kwon',
     'year': '2016',
     'unstructured': 'Kwon MJ, Heimann M, Kolle O, Luus KA, Schuur EAG, Zimov N, Zimov SA, Göckede M (2016) Long-term drainage reduces CO2 uptake and increases CO2 emission on a Siberian floodplain due to shifts in vegetation community and soil thermal characteristics. Biogeosciences 13(14):4219–4235. \nhttps://doi.org/10.5194/bg-13-4219-2016',
     'journal-title': 'Biogeosciences'},
    {'issue': '6',
     'key': '5_CR132',
     'doi-asserted-by': 'publisher',
     'first-page': '2396',
     'DOI': '10.1111/gcb.13558',
     'volume': '23',
     'author': 'MJ Kwon',
     'year': '2017',
     'unstructured': 'Kwon MJ, Beulig F, Ilie I, Wildner M, Kusel K, Merbold L, Mahecha MD, Zimov N, Zimov SA, Heimann M, Schuur EAG, Kostka JE, Kolle O, Hilke I, Gockede M (2017) Plants, microorganisms, and soil temperatures contribute to a decrease in methane fluxes on a drained Arctic floodplain. Glob Chang Biol 23(6):2396–2412. \nhttps://doi.org/10.1111/gcb.13558',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '2',
     'key': '5_CR133',
     'doi-asserted-by': 'publisher',
     'first-page': '225',
     'DOI': '10.14430/arctic134',
     'volume': '62',
     'author': 'S Labrecque',
     'year': '2009',
     'unstructured': 'Labrecque S, Lacelle D, Duguay CR, Lauriol B, Hawkings J (2009) Contemporary (1951–2001) evolution of lakes in the Old Crow Basin, Northern Yukon, Canada: Remote sensing, numerical modeling, and stable isotope analysis. Arctic 62(2):225–238',
     'journal-title': 'Arctic'},
    {'issue': '1',
     'key': '5_CR134',
     'doi-asserted-by': 'publisher',
     'first-page': '1',
     'DOI': '10.1002/ppp.666',
     'volume': '21',
     'author': 'D Lacelle',
     'year': '2010',
     'unstructured': 'Lacelle D, Bjornson J, Lauriol B (2010) Climatic and geomorphic factors affecting contemporary (1950–2004) activity of retrogressive thaw slumps on the Aklavik Plateau, Richardson Mountains, NWT, Canada. Permafr Periglac Process 21(1):1–15',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '4',
     'key': '5_CR135',
     'doi-asserted-by': 'publisher',
     'first-page': '045002',
     'DOI': '10.1088/1748-9326/9/4/045002',
     'volume': '9',
     'author': 'Scott F Lamoureux',
     'year': '2014',
     'unstructured': 'Lamoureux SF Lafrenière MJ (2014) Seasonal fluxes and age of particulate organic carbon exported from Arctic catchments impacted by localized permafrost slope disturbances. Environ Res Lett 9(5):045002. \nhttps://doi.org/10.1088/1748-9326/9/4/045002',
     'journal-title': 'Environmental Research Letters'},
    {'issue': '1',
     'key': '5_CR136',
     'doi-asserted-by': 'publisher',
     'first-page': '151',
     'DOI': '10.5194/tc-5-151-2011',
     'volume': '5',
     'author': 'M Langer',
     'year': '2011',
     'unstructured': 'Langer M, Westermann S, Muster S, Piel K, Boike J (2011) The surface energy balance of a polygonal tundra site in northern Siberia-part 1: Spring to fall. Cryosphere 5(1):151',
     'journal-title': 'Cryosphere'},
    {'issue': '4',
     'key': '5_CR137',
     'doi-asserted-by': 'publisher',
     'first-page': '977',
     'DOI': '10.5194/bg-12-977-2015',
     'volume': '12',
     'author': 'M Langer',
     'year': '2015',
     'unstructured': 'Langer M, Westermann S, Walter Anthony K, Wischnewski K, Boike J (2015) Frozen ponds: production and storage of methane during the Arctic winter in a lowland tundra landscape in northern Siberia, Lena River delta. Biogeosciences 12(4):977–990. \nhttps://doi.org/10.5194/bg-12-977-2015',
     'journal-title': 'Biogeosciences'},
    {'issue': '1–2',
     'key': '5_CR138',
     'doi-asserted-by': 'publisher',
     'first-page': '84',
     'DOI': '10.1016/j.geomorph.2006.07.040',
     'volume': '95',
     'author': 'H Lantuit',
     'year': '2008',
     'unstructured': 'Lantuit H, Pollard W (2008) Fifty years of coastal erosion and retrogressive thaw slump activity on Herschel Island, southern Beaufort Sea, Yukon territory, Canada. Geomorphology 95(1–2):84–102',
     'journal-title': 'Geomorphology'},
    {'issue': '6',
     'key': '5_CR139',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2007GL032433',
     'volume': '35',
     'author': 'TC Lantz',
     'year': '2008',
     'unstructured': 'Lantz TC, Kokelj SV (2008) Increasing rates of retrogressive thaw slump activity in the Mackenzie Delta region, NWT, Canada. Geophys Res Lett 35(6):L06502. \nhttps://doi.org/10.1029/2007GL032433',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '4',
     'key': '5_CR140',
     'doi-asserted-by': 'publisher',
     'first-page': '1634',
     'DOI': '10.1111/gcb.12757',
     'volume': '21',
     'author': 'MJ Lara',
     'year': '2015',
     'unstructured': 'Lara MJ, McGuire AD, Euskirchen ES, Tweedie CE, Hinkel KM, Skurikhin AN, Romanovsky VE, Grosse G, Bolton WR, Genet H (2015) Polygonal tundra geomorphological change in response to warming alters future CO2 and CH4 flux on the Barrow Peninsula. Glob Chang Biol 21(4):1634–1651. \nhttps://doi.org/10.1111/gcb.12757',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '1',
     'key': '5_CR141',
     'doi-asserted-by': 'publisher',
     'first-page': '115',
     'DOI': '10.4319/lo.2010.55.1.0115',
     'volume': '55',
     'author': 'I Laurion',
     'year': '2010',
     'unstructured': 'Laurion I, Vincent WF, MacIntyre S, Retamal L, Dupont C, Francus P, Pienitz R (2010) Variability in greenhouse gas emissions from permafrost thaw ponds. Limnol Oceanogr 55(1):115–133',
     'journal-title': 'Limnol Oceanogr'},
    {'key': '5_CR142',
     'unstructured': 'Lawrence DM, Slater AG, Tomas RA, Holland MM, Deser C (2008) Accelerated Arctic land warming and permafrost degradation during rapid sea ice loss. Geophys Res Lett 35(11):L11506. \nhttps://doi.org/10.1029/2008GL033985',
     'DOI': '10.1029/2008GL033985',
     'doi-asserted-by': 'publisher'},
    {'key': '5_CR143',
     'author': 'M Leibman',
     'first-page': '651',
     'year': '2003',
     'unstructured': 'Leibman M, Kizakov A, Sulerzhitsky L, Zaretskaia N (2003) Dynamics of landslide slopes and their development on Yamal Peninsula. In: Permafrost (ed) Proceedings of the 8th international conference on permafrost. Swets and Zeitlinger, Lisse, pp 651–656',
     'volume-title': 'Proceedings of the 8th international conference on permafrost'},
    {'key': '5_CR144',
     'author': 'Marina Leibman',
     'first-page': '143',
     'year': '2013',
     'unstructured': 'Leibman M, Khomutov A, Kizyakov A (2014) Cryogenic landslides in the West-Siberian plain of Russia: classification, mechanisms, and landforms. In: Landslides in cold regions in the context of climate change. Springer, Cham, pp 143–162',
     'volume-title': 'Landslides in Cold Regions in the Context of Climate Change'},
    {'issue': '4',
     'key': '5_CR145',
     'doi-asserted-by': 'publisher',
     'first-page': '584',
     'DOI': '10.1111/bor.12186',
     'volume': '45',
     'author': 'J Lenz',
     'year': '2016',
     'unstructured': 'Lenz J, Wetterich S, Jones BM, Meyer H, Bobrov A, Grosse G (2016) Evidence of multiple thermokarst lake generations from an 11 800-year-old permafrost core on the northern S eward Peninsula, Alaska. Boreas 45(4):584–603',
     'journal-title': 'Boreas'},
    {'issue': '12',
     'key': '5_CR146',
     'doi-asserted-by': 'publisher',
     'first-page': '8234',
     'DOI': '10.1002/2012WR013198',
     'volume': '49',
     'author': 'LF Lesack',
     'year': '2013',
     'unstructured': 'Lesack LF, Marsh P, Hicks FE, Forbes DL (2013) Timing, duration, and magnitude of peak annual water-levels during ice breakup in the Mackenzie Delta and the role of river discharge. Water Resour Res 49(12):8234–8249',
     'journal-title': 'Water Resour Res'},
    {'issue': '5',
     'key': '5_CR147',
     'doi-asserted-by': 'publisher',
     'first-page': '1560',
     'DOI': '10.1002/2013GL058761',
     'volume': '41',
     'author': 'LF Lesack',
     'year': '2014',
     'unstructured': 'Lesack LF, Marsh P, Hicks FE, Forbes DL (2014) Local spring warming drives earlier river-ice breakup in a large Arctic delta. Geophys Res Lett 41(5):1560–1567',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '6',
     'key': '5_CR148',
     'doi-asserted-by': 'publisher',
     'first-page': '1077',
     'DOI': '10.1139/e87-105',
     'volume': '24',
     'author': 'AG Lewkowicz',
     'year': '1987',
     'unstructured': 'Lewkowicz AG (1987) Headwall retreat of ground-ice slumps, Banks Island, Northwest Territories. Can J Earth Sci 24(6):1077–1085',
     'journal-title': 'Can J Earth Sci'},
    {'issue': '1',
     'key': '5_CR149',
     'doi-asserted-by': 'publisher',
     'first-page': '115',
     'DOI': '10.1002/ppp.522',
     'volume': '16',
     'author': 'AG Lewkowicz',
     'year': '2005',
     'unstructured': 'Lewkowicz AG, Harris C (2005) Frequency and magnitude of active-layer detachment failures in discontinuous and continuous permafrost, northern Canada. Permafr Periglac Process 16(1):115–130',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '1',
     'key': '5_CR150',
     'doi-asserted-by': 'publisher',
     'first-page': '1329',
     'DOI': '10.1038/s41467-019-09314-7',
     'volume': '10',
     'author': 'AG Lewkowicz',
     'year': '2019',
     'unstructured': 'Lewkowicz AG, Way RG (2019) Extremes of summer climate trigger thousands of thermokarst landslides in a High Arctic environment. Nat Commun 10(1):1329. \nhttps://doi.org/10.1038/s41467-019-09314-7',
     'journal-title': 'Nat Commun'},
    {'issue': '1–2',
     'key': '5_CR151',
     'first-page': '147',
     'volume': '420',
     'author': 'B Li',
     'year': '2017',
     'unstructured': 'Li B, Heijmans MM, Blok D, Wang P, Karsanaev SV, Maximov TC, van Huissteden J, Berendse F (2017a) Thaw pond development and initial vegetation succession in experimental plots at a Siberian lowland tundra site. Plant Soil 420(1–2):147–162',
     'journal-title': 'Plant Soil'},
    {'key': '5_CR152',
     'unstructured': 'Li B, Heijmans, MMPD, Limpens J, Gallagher A, Van Huissteden J, Maximov TC, Berendse F (2017b) Peat moss carpet reduces methane emission and facilitates shrub expansion in Siberian Arctic tundra. In: A clash of plants. Vegetation succession and its interaction with permafrost dynamics in the Arctic lowland tundra. Thesis, Wageningen University, Wageningen, pp 26–42'},
    {'issue': '4',
     'key': '5_CR153',
     'doi-asserted-by': 'publisher',
     'first-page': '914',
     'DOI': '10.1111/j.1365-2745.2011.01823.x',
     'volume': '99',
     'author': 'S Liebner',
     'year': '2011',
     'unstructured': 'Liebner S, Zeyer J, Wagner D, Schubert C, Pfeiffer EM, Knoblauch C (2011) Methane oxidation associated with submerged brown mosses reduces methane emissions from Siberian polygonal tundra. J Ecol 99(4):914–922',
     'journal-title': 'J Ecol'},
    {'issue': '11',
     'key': '5_CR154',
     'doi-asserted-by': 'publisher',
     'first-page': '3375',
     'DOI': '10.5194/bg-8-3375-2011',
     'volume': '8',
     'author': 'A Liljedahl',
     'year': '2011',
     'unstructured': 'Liljedahl A, Hinzman L, Harazono Y, Zona D, Tweedie C, Hollister RD, Engstrom R, Oechel W (2011) Nonlinear controls on evapotranspiration in arctic coastal wetlands. Biogeosciences 8(11):3375–3389',
     'journal-title': 'Biogeosciences'},
    {'issue': '4',
     'key': '5_CR155',
     'doi-asserted-by': 'publisher',
     'first-page': '312',
     'DOI': '10.1038/ngeo2674',
     'volume': '9',
     'author': 'AK Liljedahl',
     'year': '2016',
     'unstructured': 'Liljedahl AK, Boike J, Daanen RP, Fedorov AN, Frost GV, Grosse G, Hinzman LD, Iijma Y, Jorgenson JC, Matveyeva N, Necsoiu M, Raynolds MK, Romanovsky VE, Schulla J, Tape KD, Walker DA, Wilson CJ, Yabuki H, Zona D (2016) Pan-Arctic ice-wedge degradation in warming permafrost and its influence on tundra hydrology. Nat Geosci 9(4):312–318. \nhttps://doi.org/10.1038/ngeo2674',
     'journal-title': 'Nat Geosci'},
    {'issue': '1',
     'key': '5_CR156',
     'doi-asserted-by': 'publisher',
     'first-page': '577',
     'DOI': '10.5194/bg-9-577-2012',
     'volume': '9',
     'author': 'DA Lipson',
     'year': '2012',
     'unstructured': 'Lipson DA, Zona D, Raab TK, Bozzolo F, Mauritz M, Oechel W (2012) Water-table height and microtopography control biogeochemical cycling in an Arctic coastal tundra ecosystem. Biogeosciences 9(1):577–591',
     'journal-title': 'Biogeosciences'},
    {'issue': 'F3',
     'key': '5_CR157',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2009JF001547',
     'volume': '115',
     'author': 'L Liu',
     'year': '2010',
     'unstructured': 'Liu L, Zhang T, Wahr J (2010) InSAR measurements of surface deformation over permafrost on the North slope of Alaska. J Geophys Res Earth 115(F3):F03023. \nhttps://doi.org/10.1029/2009JF001547',
     'journal-title': 'J Geophys Res Earth'},
    {'issue': 'F1',
     'key': '5_CR158',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2011JF002041',
     'volume': '117',
     'author': 'L Liu',
     'year': '2012',
     'unstructured': 'Liu L, Schaefer K, Zhang T, Wahr J (2012) Estimating 1992–2000 average active layer thickness on the Alaskan north slope from remotely sensed surface subsidence. J Geophys Res Earth 117(F1):F01005. \nhttps://doi.org/10.1029/2011JF002041',
     'journal-title': 'J Geophys Res Earth'},
    {'key': '5_CR159',
     'doi-asserted-by': 'publisher',
     'first-page': '5287',
     'DOI': '10.5194/bg-15-5287-2018',
     'volume': '15',
     'author': 'MM Loranty',
     'year': '2018',
     'unstructured': 'Loranty MM, Abbott BW, Blok D, Douglas TA, Epstein HE, Forbes BC, Jones BM, Kholodov AL, Kropp H, Malhotra A (2018) Reviews and syntheses: changing ecosystem influences on soil thermal regimes in northern high-latitude permafrost regions. Biogeosciences 15:5287–5313. \nhttps://doi.org/10.5194/bg-15-5287-2018',
     'journal-title': 'Biogeosciences'},
    {'issue': '6',
     'key': '5_CR160',
     'doi-asserted-by': 'publisher',
     'first-page': '589',
     'DOI': '10.1007/s13280-011-0165-1',
     'volume': '40',
     'author': 'VL Lougheed',
     'year': '2011',
     'unstructured': 'Lougheed VL, Butler MG, McEwen DC, Hobbie JE (2011) Changes in tundra pond limnology: re-sampling Alaskan ponds after 40 years. Ambio 40(6):589',
     'journal-title': 'Ambio'},
    {'issue': '1',
     'key': '5_CR161',
     'doi-asserted-by': 'publisher',
     'first-page': '5',
     'DOI': '10.1111/j.1365-2389.2010.01312.x',
     'volume': '62',
     'author': 'C Luke',
     'year': '2011',
     'unstructured': 'Luke C, Cox P (2011) Soil carbon and climate change: from the Jenkinson effect to the compost-bomb instability. Eur J Soil Sci 62(1):5–12',
     'journal-title': 'Eur J Soil Sci'},
    {'issue': 'G2',
     'key': '5_CR162',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2011JG001901',
     'volume': '117',
     'author': 'M Lund',
     'year': '2012',
     'unstructured': 'Lund M, Falk JM, Friborg T, Mbufong HN, Sigsgaard C, Soegaard H, Tamstorf MP (2012) Trends in CO2 exchange in a high Arctic tundra heath, 2000–2010. J Geophys Res Biogeo 117(G2):G02001. \nhttps://doi.org/10.1029/2011JG001901',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '1',
     'key': '5_CR163',
     'doi-asserted-by': 'publisher',
     'first-page': '51',
     'DOI': '10.1038/nclimate2058',
     'volume': '4',
     'author': 'M Lupascu',
     'year': '2014',
     'unstructured': 'Lupascu M, Welker J, Seibt U, Maseyk K, Xu X, Czimczik C (2014) High Arctic wetting reduces permafrost carbon feedbacks to climate warming. Nat Clim Chang 4(1):51',
     'journal-title': 'Nat Clim Chang'},
    {'key': '5_CR164',
     'doi-asserted-by': 'publisher',
     'first-page': '7856',
     'DOI': '10.1038/ncomms8856',
     'volume': '6',
     'author': 'P Mann',
     'year': '2015',
     'unstructured': 'Mann P, Eglinton TI, McIntyre CP, Zimov N, Davydova A, Vonk JE, Holmes RM, Spencer RG (2015) Utilization of ancient permafrost carbon in headwaters of Arctic fluvial networks. Nat Commun 6:7856. \nhttps://doi.org/10.1038/ncomms8856',
     'journal-title': 'Nat Commun'},
    {'key': '5_CR165',
     'doi-asserted-by': 'publisher',
     'first-page': '25',
     'DOI': '10.3389/feart.2016.00025',
     'volume': '4',
     'author': 'PJ Mann',
     'year': '2016',
     'unstructured': 'Mann PJ, Spencer RG, Hernes PJ, Six J, Aiken GR, Tank SE, McClelland JW, Butler KD, Dyda RY, Holmes RM (2016) Pan-arctic trends in terrestrial dissolved organic matter from optical measurements. Front Earth Sci 4:25',
     'journal-title': 'Front Earth Sci'},
    {'issue': '1',
     'key': '5_CR166',
     'doi-asserted-by': 'publisher',
     'first-page': '145',
     'DOI': '10.1002/hyp.7179',
     'volume': '23',
     'author': 'P Marsh',
     'year': '2009',
     'unstructured': 'Marsh P, Russell M, Pohl S, Haywood H, Onclin C (2009) Changes in thaw lake drainage in the Western Canadian Arctic from 1950 to 2000. Hydrol Proc Intl J 23(1):145–158',
     'journal-title': 'Hydrol Proc Intl J'},
    {'issue': '8',
     'key': '5_CR167',
     'doi-asserted-by': 'publisher',
     'first-page': '2601',
     'DOI': '10.1111/j.1365-2486.2011.02442.x',
     'volume': '17',
     'author': 'M Marushchak',
     'year': '2011',
     'unstructured': 'Marushchak M, Pitkämäki A, Koponen H, Biasi C, Seppälä M, Martikainen P (2011) Hot spots for nitrous oxide emissions found in different types of permafrost peatlands. Glob Chang Biol 17(8):2601–2614',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '1-2',
     'key': '5_CR307',
     'doi-asserted-by': 'publisher',
     'first-page': '107',
     'DOI': '10.1016/S0012-8252(01)00057-5',
     'volume': '55',
     'author': 'Norikazu Matsuoka',
     'year': '2001',
     'unstructured': 'Matsuoka N (2001) Solifluction rates, processes and landforms: a global review. Earth Sci Rev 55(1–2):107–134',
     'journal-title': 'Earth-Science Reviews'},
    {'key': '5_CR168',
     'unstructured': 'Mazhitova G, Malkova G, Chestnykh O (2008) Zamolodchikov D recent decade thaw-depth dynamics in the European Russian Arctic based on the Circumpolar Active Layer Monitoring (CALM) data. In: Proceedings of the ninth international conference on Permafrost, pp 1155–1160'},
    {'issue': 'D18',
     'key': '5_CR169',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2004JD004583',
     'volume': '109',
     'author': 'JW McClelland',
     'year': '2004',
     'unstructured': 'McClelland JW, Holmes RM, Peterson BJ, Stieglitz M (2004) Increasing river discharge in the Eurasian Arctic: consideration of dams, permafrost thaw, and fires as potential agents of change. J Geophys Res Atmos 109(D18):D18102. \nhttps://doi.org/10.1029/2004JD004583',
     'journal-title': 'J Geophys Res Atmos'},
    {'issue': 'G4',
     'key': '5_CR170',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2006JG000371',
     'volume': '112',
     'author': 'J. W. McClelland',
     'year': '2007',
     'unstructured': 'McClelland J, Stieglitz M, Pan F, Holmes RM, Peterson BJ (2007) Recent changes in nitrate and dissolved organic carbon export from the upper Kuparuk River, North Slope, Alaska. J Geophys Res Biogeosci 112(G4):G04S60. \nhttps://doi.org/10.1029/2006JG000371',
     'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
    {'issue': '5',
     'key': '5_CR171',
     'doi-asserted-by': 'publisher',
     'first-page': '629',
     'DOI': '10.1002/2015GB005351',
     'volume': '30',
     'author': 'JW McClelland',
     'year': '2016',
     'unstructured': 'McClelland JW, Holmes RM, Peterson BJ, Raymond PA, Striegl R, Zhulidov AV, Zimov SA, Zimov N, Tank SE, Spencer RG (2016) Particulate organic carbon and nitrogen export from major Arctic rivers. Glob Biogeochem Cycles 30(5):629–643',
     'journal-title': 'Glob Biogeochem Cycles'},
    {'key': '5_CR172',
     'unstructured': 'McGuire AD, Lawrence DM, Koven C, Clein JS, Burke E, Chen G, Jafarov E, MacDougall AH, Marchenko S, Nicolsky D (2018) Dependence of the evolution of carbon dynamics in the northern permafrost region on the trajectory of climate change. Proceedings of the National Academy of Sciences:201719903',
     'DOI': '10.1073/pnas.1719903115',
     'doi-asserted-by': 'crossref'},
    {'issue': '11',
     'key': '5_CR173',
     'doi-asserted-by': 'publisher',
     'first-page': '2599',
     'DOI': '10.1111/j.1365-2486.2009.01962.x',
     'volume': '15',
     'author': 'L Merbold',
     'year': '2009',
     'unstructured': 'Merbold L, Kutsch WL, Corradi C, Kolle O, Rebmann C, Stoy PC, Zimov SA, Schulze ED (2009) Artificial drainage and associated carbon fluxes (CO2/CH4) in a tundra ecosystem. Glob Chang Biol 15(11):2599–2614',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '11',
     'key': '5_CR174',
     'doi-asserted-by': 'publisher',
     'first-page': '2347',
     'DOI': '10.1111/j.1365-2427.2010.02450.x',
     'volume': '55',
     'author': 'P Mesquita',
     'year': '2010',
     'unstructured': 'Mesquita P, Wrona FJ, Prowse TD (2010) Effects of retrogressive permafrost thaw slumping on sediment chemistry and submerged macrophytes in Arctic tundra lakes. Freshw Biol 55(11):2347–2358. \nhttps://doi.org/10.1111/j.1365-2427.2010.02450.x',
     'journal-title': 'Freshw Biol'},
    {'issue': '4',
     'key': '5_CR175',
     'doi-asserted-by': 'publisher',
     'first-page': '357',
     'DOI': '10.1002/ppp.663',
     'volume': '20',
     'author': 'M Minke',
     'year': '2009',
     'unstructured': 'Minke M, Donner N, Karpov N, de Klerk P, Joosten H (2009) Patterns in vegetation composition, surface height and thaw depth in polygon mires in the Yakutian Arctic (NE Siberia): a microtopographical characterisation of the active layer. Permafr Periglac Process 20(4):357–368',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '4',
     'key': '5_CR176',
     'doi-asserted-by': 'publisher',
     'first-page': '849',
     'DOI': '10.5194/tc-5-849-2011',
     'volume': '5',
     'author': 'A Morgenstern',
     'year': '2011',
     'unstructured': 'Morgenstern A, Grosse G, Günther F, Fedorova I, Schirrmeister L (2011) Spatial analyses of thermokarst lakes and basins in Yedoma landscapes of the Lena Delta. Cryosphere 5(4):849–867. \nhttps://doi.org/10.5194/tc-5-849-2011',
     'journal-title': 'Cryosphere'},
    {'key': '5_CR177',
     'doi-asserted-by': 'publisher',
     'first-page': '363',
     'DOI': '10.1016/j.geomorph.2013.07.011',
     'volume': '201',
     'author': 'A Morgenstern',
     'year': '2013',
     'unstructured': 'Morgenstern A, Ulrich M, Günther F, Roessler S, Fedorova IV, Rudaya NA, Wetterich S, Boike J, Schirrmeister L (2013) Evolution of thermokarst in east Siberian ice-rich permafrost: a case study. Geomorphology 201:363–379. \nhttps://doi.org/10.1016/j.geomorph.2013.07.011',
     'journal-title': 'Geomorphology'},
    {'issue': '4',
     'key': '5_CR178',
     'doi-asserted-by': 'publisher',
     'first-page': '737',
     'DOI': '10.1111/j.1365-3091.1996.tb02023.x',
     'volume': '43',
     'author': 'JB Murton',
     'year': '1996',
     'unstructured': 'Murton JB (1996) Thermokarst-lake-basin sediments, Tuktoyaktuk coastlands, western arctic Canada. Sedimentology 43(4):737–760',
     'journal-title': 'Sedimentology'},
    {'issue': '1–4',
     'key': '5_CR179',
     'doi-asserted-by': 'publisher',
     'first-page': '175',
     'DOI': '10.1016/S0921-8181(00)00072-2',
     'volume': '28',
     'author': 'JB Murton',
     'year': '2001',
     'unstructured': 'Murton JB (2001) Thermokarst sediments and sedimentary structures, Tuktoyaktuk coastlands, western Arctic Canada. Glob Planet Chang 28(1–4):175–192',
     'journal-title': 'Glob Planet Chang'},
    {'issue': '4',
     'key': '5_CR180',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/4/4/045009',
     'volume': '4',
     'author': 'RR Muskett',
     'year': '2009',
     'unstructured': 'Muskett RR, Romanovsky VE (2009) Groundwater storage changes in arctic permafrost watersheds from GRACE and in situ measurements. Environ Res Lett 4(4):045009',
     'journal-title': 'Environ Res Lett'},
    {'issue': '4',
     'key': '5_CR181',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/6/4/045509',
     'volume': '6',
     'author': 'IH Myers-Smith',
     'year': '2011',
     'unstructured': 'Myers-Smith IH, Forbes BC, Wilmking M, Hallinger M, Lantz T, Blok D, Tape KD, Macias-Fauria M, Sass-Klaassen U, Lévesque E (2011) Shrub expansion in tundra ecosystems: dynamics, impacts and research priorities. Environ Res Lett 6(4):045509',
     'journal-title': 'Environ Res Lett'},
    {'issue': '3',
     'key': '5_CR182',
     'doi-asserted-by': 'publisher',
     'first-page': '14-1-14-15',
     'DOI': '10.1029/2000GB001384',
     'volume': '16',
     'author': 'Fumiko Nakagawa',
     'year': '2002',
     'unstructured': 'Nakagawa F, Yoshida N, Nojiri Y, Makarov V (2002) Production of methane from alasses in eastern Siberia: implications from its 14C and stable isotopic compositions. Glob Biogeochem Cycles 16(3). \nhttps://doi.org/10.1029/2000GB001384',
     'journal-title': 'Global Biogeochemical Cycles'},
    {'issue': '3',
     'key': '5_CR183',
     'doi-asserted-by': 'publisher',
     'first-page': '1394',
     'DOI': '10.1111/j.1365-2486.2010.02303.x',
     'volume': '17',
     'author': 'SM Natali',
     'year': '2011',
     'unstructured': 'Natali SM, Schuur EA, Trucco C, Pries CEH, Crummer KG, Lopez AFB (2011) Effects of experimental warming of air, soil and permafrost on carbon balance in Alaskan tundra. Glob Chang Biol 17(3):1394–1407',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '3',
     'key': '5_CR184',
     'doi-asserted-by': 'publisher',
     'first-page': '602',
     'DOI': '10.1890/13-0602.1',
     'volume': '95',
     'author': 'SM Natali',
     'year': '2014',
     'unstructured': 'Natali SM, Schuur EA, Webb EE, Pries CEH, Crummer KG (2014) Permafrost degradation stimulates carbon loss from experimentally warmed tundra. Ecology 95(3):602–608',
     'journal-title': 'Ecology'},
    {'issue': '3',
     'key': '5_CR185',
     'doi-asserted-by': 'publisher',
     'first-page': '525',
     'DOI': '10.1002/2014jg002872',
     'volume': '120',
     'author': 'SM Natali',
     'year': '2015',
     'unstructured': 'Natali SM, Schuur EAG, Mauritz M, Schade JD, Celis G, Crummer KG, Johnston C, Krapek J, Pegoraro E, Salmon VG, Webb EE (2015) Permafrost thaw and soil moisture driving CO2 and CH4 release from upland tundra. J Geophys Res Biogeo 120(3):525–537. \nhttps://doi.org/10.1002/2014jg002872',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '1',
     'key': '5_CR186',
     'doi-asserted-by': 'publisher',
     'first-page': '67',
     'DOI': '10.1038/nclimate2446',
     'volume': '5',
     'author': 'AL Nauta',
     'year': '2014',
     'unstructured': 'Nauta AL, Heijmans MMPD, Blok D, Limpens J, Elberling B, Gallagher A, Li B, Petrov RE, Maximov TC, van Huissteden J, Berendse F (2014) Permafrost collapse after shrub removal shifts tundra ecosystem to a methane source. Nat Clim Chang 5(1):67–70. \nhttps://doi.org/10.1038/nclimate2446',
     'journal-title': 'Nat Clim Chang'},
    {'key': '5_CR187',
     'unstructured': 'Neff JC FJ, Zimov SA, Davydov SP, Carrasco JJ, Schuur EA, Davydova AI (2006) Seasonal changes in the age and structure of dissolved organic carbon in Siberian rivers and streams. Geophys Res Lett 33(23):L23401. \nhttps://doi.org/10.1029/2006GL028222',
     'DOI': '10.1029/2006GL028222',
     'doi-asserted-by': 'publisher'},
    {'issue': 'D22',
     'key': '5_CR188',
     'doi-asserted-by': 'publisher',
     'first-page': '28963',
     'DOI': '10.1029/98JD00534',
     'volume': '103',
     'author': 'F Nelson',
     'year': '1998',
     'unstructured': 'Nelson F, Hinkel K, Shiklomanov N, Mueller G, Miller L, Walker D (1998) Active-layer thickness in north Central Alaska: systematic sampling, scale, and spatial autocorrelation. J Geophys Res Atmos 103(D22):28963–28973',
     'journal-title': 'J Geophys Res Atmos'},
    {'issue': '1',
     'key': '5_CR189',
     'doi-asserted-by': 'publisher',
     'first-page': '5423',
     'DOI': '10.1038/s41467-018-07663-3',
     'volume': '9',
     'author': 'I Nitze',
     'year': '2018',
     'unstructured': 'Nitze I, Grosse G, Jones BM, Romanovsky VE, Boike J (2018) Remote sensing quantifies widespread abundance of permafrost region disturbances across the Arctic and Subarctic. Nat Commun 9(1):5423. \nhttps://doi.org/10.1038/s41467-018-07663-3',
     'journal-title': 'Nat Commun'},
    {'issue': '3',
     'key': '5_CR190',
     'doi-asserted-by': 'publisher',
     'first-page': '785',
     'DOI': '10.1007/s00442-009-1556-x',
     'volume': '163',
     'author': 'NS Nowinski',
     'year': '2010',
     'unstructured': 'Nowinski NS, Taneva L, Trumbore SE, Welker JM (2010) Decomposition of old organic matter as a result of deeper active layers in a snow depth manipulation experiment. Oecologia 163(3):785–792',
     'journal-title': 'Oecologia'},
    {'issue': '4',
     'key': '5_CR191',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2012GB004341',
     'volume': '26',
     'author': "Jonathan A. O'Donnell",
     'year': '2012',
     'unstructured': 'O’Donnell JA, Aiken GR, Walvoord MA, Butler KD (2012a) Dissolved organic matter composition of winter flow in the Yukon River basin: implications of permafrost thaw and increased groundwater discharge. Glob Biogeochem Cycles 26(4):GB0E06. \nhttps://doi.org/10.1029/2012GB004341',
     'journal-title': 'Global Biogeochemical Cycles'},
    {'issue': '2',
     'key': '5_CR192',
     'doi-asserted-by': 'publisher',
     'first-page': '213',
     'DOI': '10.1007/s10021-011-9504-0',
     'volume': '15',
     'author': 'JA O’Donnell',
     'year': '2012',
     'unstructured': 'O’Donnell JA, Jorgenson MT, Harden JW, McGuire AD, Kanevskiy MZ, Wickland KP (2012b) The effects of permafrost thaw on soil hydrologic, thermal, and carbon dynamics in an Alaskan peatland. Ecosystems 15(2):213–229',
     'journal-title': 'Ecosystems'},
    {'issue': '2',
     'key': '5_CR193',
     'doi-asserted-by': 'publisher',
     'first-page': '221',
     'DOI': '10.1890/06-0649',
     'volume': '77',
     'author': 'SF Oberbauer',
     'year': '2007',
     'unstructured': 'Oberbauer SF, Tweedie CE, Welker JM, Fahnestock JT, Henry GH, Webber PJ, Hollister RD, Walker MD, Kuchy A, Elmore E (2007) Tundra CO2 fluxes in response to experimental warming across latitudinal and moisture gradients. Ecol Monogr 77(2):221–238',
     'journal-title': 'Ecol Monogr'},
    {'issue': '3',
     'key': '5_CR194',
     'doi-asserted-by': 'publisher',
     'first-page': '187',
     'DOI': '10.1016/j.gloplacha.2005.09.001',
     'volume': '49',
     'author': 'T Osterkamp',
     'year': '2005',
     'unstructured': 'Osterkamp T (2005) The recent warming of permafrost in Alaska. Glob Planet Chang 49(3):187–202',
     'journal-title': 'Glob Planet Chang'},
    {'issue': '2',
     'key': '5_CR195',
     'doi-asserted-by': 'publisher',
     'first-page': '285',
     'DOI': '10.1111/j.1468-0459.2010.00395.x',
     'volume': '92',
     'author': 'I Overeem',
     'year': '2010',
     'unstructured': 'Overeem I, Syvitsky J (2010) Sedimentaryfluxes and budgets in changing cold environments: quantitative analysis and scaling issues. Geogr Ann Ser B 92(2):285–296',
     'journal-title': 'Geogr Ann Ser B'},
    {'issue': '1',
     'key': '5_CR196',
     'doi-asserted-by': 'publisher',
     'first-page': '23',
     'DOI': '10.1016/j.polar.2011.11.002',
     'volume': '6',
     'author': 'H Park',
     'year': '2012',
     'unstructured': 'Park H, Yabuki H, Ohata T (2012) Analysis of satellite and model datasets for variability and trends in Arctic snow extent and depth, 1948–2006. Pol Sci 6(1):23–37',
     'journal-title': 'Pol Sci'},
    {'issue': '2',
     'key': '5_CR197',
     'doi-asserted-by': 'publisher',
     'first-page': '631',
     'DOI': '10.5194/tc-7-631-2013',
     'volume': '7',
     'author': 'H Park',
     'year': '2013',
     'unstructured': 'Park H, Walsh J, Fedorov A, Sherstiukov A, Iijima Y, Ohata T (2013) The influence of climate and hydrological variables on opposite anomaly in active-layer thickness between Eurasian and north American watersheds. Cryosphere 7(2):631–645',
     'journal-title': 'Cryosphere'},
    {'issue': '5',
     'key': '5_CR198',
     'doi-asserted-by': 'publisher',
     'first-page': '1733',
     'DOI': '10.1175/JCLI-D-15-0569.1',
     'volume': '29',
     'author': 'H Park',
     'year': '2016',
     'unstructured': 'Park H, Yoshikawa Y, Oshima K, Kim Y, Ngo-Duc T, Kimball JS, Yang D (2016) Quantification of warming climate-induced changes in terrestrial Arctic River ice thickness and phenology. J Clim 29(5):1733–1754',
     'journal-title': 'J Clim'},
    {'issue': 'G4',
     'key': '5_CR199',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2011JG001653',
     'volume': '116',
     'author': 'F Parmentier',
     'year': '2011',
     'unstructured': 'Parmentier F, Van Der Molen M, Van Huissteden J, Karsanaev S, Kononov A, Suzdalov D, Maximov T, Dolman A (2011) Longer growing seasons do not increase net carbon uptake in the northeastern Siberian tundra. J Geophys Res Biogeo 116(G4):G04013. \nhttps://doi.org/10.1029/2011JG001653',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '18',
     'key': '5_CR200',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2004GL020358',
     'volume': '31',
     'author': 'S Payette',
     'year': '2004',
     'unstructured': 'Payette S, Delwaide A, Caccianiga M, Beauchemin M (2004) Accelerated thawing of subarctic peatland permafrost over the last 50 years. Geophys Res Lett 31(18):L18208. \nhttps://doi.org/10.1029/2004GL020358',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '12',
     'key': '5_CR201',
     'doi-asserted-by': 'publisher',
     'first-page': '3636',
     'DOI': '10.1073/pnas.1417392112',
     'volume': '112',
     'author': 'A Paytan',
     'year': '2015',
     'unstructured': 'Paytan A, Lecher AL, Dimova N, Sparrow KJ, Kodovska FG-T, Murray J, Tulaczyk S, Kessler JD (2015) Methane transport from the active layer to lakes in the Arctic using Toolik Lake, Alaska, as a case study. Proc Natl Acad Sci 112(12):3636–3640',
     'journal-title': 'Proc Natl Acad Sci'},
    {'issue': '7',
     'key': '5_CR202',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/9/7/075006',
     'volume': '9',
     'author': 'C Pizano',
     'year': '2014',
     'unstructured': 'Pizano C, Barón AF, Schuur EA, Crummer KG, Mack MC (2014) Effects of thermo-erosional disturbance on surface soil carbon and nitrogen dynamics in upland arctic tundra. Environ Res Lett 9(7):075006',
     'journal-title': 'Environ Res Lett'},
    {'issue': 'F1',
     'key': '5_CR203',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2006JF000740',
     'volume': '114',
     'author': 'LJ Plug',
     'year': '2009',
     'unstructured': 'Plug LJ, West JJ (2009) Thaw lake expansion in a two-dimensional coupled model of heat transfer, thaw subsidence, and mass movement. J Geophys Res Earth 114(F1):F01002. \nhttps://doi.org/10.1029/2006JF000740',
     'journal-title': 'J Geophys Res Earth'},
    {'issue': '3',
     'key': '5_CR204',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2007GL032303',
     'volume': '35',
     'author': 'LJ Plug',
     'year': '2008',
     'unstructured': 'Plug LJ, Walls C, Scott B (2008) Tundra lake changes from 1978 to 2001 on the Tuktoyaktuk peninsula, western Canadian Arctic. Geophys Res Lett 35(3):L03502. \nhttps://doi.org/10.1029/2007GL032303',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '8',
     'key': '5_CR205',
     'doi-asserted-by': 'publisher',
     'first-page': '5349',
     'DOI': '10.5194/bg-10-5349-2013',
     'volume': '10',
     'author': 'OS Pokrovsky',
     'year': '2013',
     'unstructured': 'Pokrovsky OS, Shirokova LS, Kirpotin SN, Kulizhsky SP, Vorobiev SN (2013) Impact of western Siberia heat wave 2012 on greenhouse gases and trace metal concentration in thaw lakes of discontinuous permafrost zone. Biogeosciences 10(8):5349–5365',
     'journal-title': 'Biogeosciences'},
    {'issue': '1',
     'key': '5_CR206',
     'doi-asserted-by': 'publisher',
     'first-page': '63',
     'DOI': '10.1007/s13280-011-0217-6',
     'volume': '40',
     'author': 'T Prowse',
     'year': '2011',
     'unstructured': 'Prowse T, Alfredsen K, Beltaos S, Bonsal BR, Bowden WB, Duguay CR, Korhola A, McNamara J, Vincent WF, Vuglinsky V (2011) Effects of changes in arctic lake and river ice. Ambio 40(1):63–74',
     'journal-title': 'Ambio'},
    {'issue': '21',
     'key': '5_CR207',
     'doi-asserted-by': 'publisher',
     'first-page': '5715',
     'DOI': '10.1175/2010JCLI3421.1',
     'volume': '23',
     'author': 'MA Rawlins',
     'year': '2010',
     'unstructured': 'Rawlins MA, Steele M, Holland MM, Adam JC, Cherry JE, Francis JA, Groisman PY, Hinzman LD, Huntington TG, Kane DL (2010) Analysis of the Arctic system for freshwater cycle intensification: observations and expectations. J Clim 23(21):5715–5737',
     'journal-title': 'J Clim'},
    {'issue': '4',
     'key': '5_CR208',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2007GB002934',
     'volume': '21',
     'author': 'PA Raymond',
     'year': '2007',
     'unstructured': 'Raymond PA, McClelland J, Holmes R, Zhulidov A, Mull K, Peterson B, Striegl R, Aiken G, Gurtovaya T (2007) Flux and age of dissolved organic carbon exported to the Arctic Ocean: a carbon isotopic study of the five largest arctic rivers. Glob Biogeochem Cycles 21(4):GB4011. \nhttps://doi.org/10.1029/2007GB002934',
     'journal-title': 'Glob Biogeochem Cycles'},
    {'issue': '5',
     'key': '5_CR306',
     'doi-asserted-by': 'publisher',
     'first-page': '788',
     'DOI': '10.1111/j.1600-0889.2007.00301.x',
     'volume': '59',
     'author': 'E. Repo',
     'year': '2007',
     'unstructured': 'Repo E, Huttunen J, Naumov A, Chichulin A, Lapshina E, Bleuten W, Martikainen P (2007) Release of CO2 and CH4 from small wetland lakes in western Siberia. Tellus B Chem Phys Meteorol 59(5):788–796',
     'journal-title': 'Tellus B: Chemical and Physical Meteorology'},
    {'issue': '3',
     'key': '5_CR209',
     'doi-asserted-by': 'publisher',
     'first-page': '189',
     'DOI': '10.1038/ngeo434',
     'volume': '2',
     'author': 'ME Repo',
     'year': '2009',
     'unstructured': 'Repo ME, Susiluoto S, Lind SE, Jokinen S, Elsakov V, Biasi C, Virtanen T, Martikainen PJ (2009) Large N2O emissions from cryoturbated peat soil in tundra. Nat Geosci 2(3):189',
     'journal-title': 'Nat Geosci'},
    {'issue': '1',
     'key': '5_CR210',
     'doi-asserted-by': 'publisher',
     'first-page': '35',
     'DOI': '10.1657/AAAR0013-099',
     'volume': '47',
     'author': 'FR Reyes',
     'year': '2015',
     'unstructured': 'Reyes FR, Lougheed VL (2015) Rapid nutrient release from permafrost thaw in arctic aquatic ecosystems. Arct Antarct Alp Res 47(1):35–48',
     'journal-title': 'Arct Antarct Alp Res'},
    {'issue': 'G4',
     'key': '5_CR211',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2005JG000150',
     'volume': '111',
     'author': 'B Riordan',
     'year': '2006',
     'unstructured': 'Riordan B, Verbyla D, McGuire AD (2006) Shrinking ponds in subarctic Alaska based on 1950–2002 remotely sensed images. J Geophys Res Biogeo 111(G4):G04002. \nhttps://doi.org/10.1029/2005JG000150',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '1',
     'key': '5_CR212',
     'doi-asserted-by': 'publisher',
     'first-page': '1',
     'DOI': '10.1002/(SICI)1099-1530(199701)8:1<1::AID-PPP243>3.0.CO;2-U',
     'volume': '8',
     'author': 'V Romanovsky',
     'year': '1997',
     'unstructured': 'Romanovsky V, Osterkamp T (1997) Thawing of the active layer on the coastal plain of the Alaskan Arctic. Permafr Periglac Process 8(1):1–22',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '17',
     'key': '5_CR213',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2011GL048497',
     'volume': '38',
     'author': 'J Rowland',
     'year': '2011',
     'unstructured': 'Rowland J, Travis B, Wilson C (2011) The role of advective heat transport in talik development beneath lakes and ponds in discontinuous permafrost. Geophys Res Lett 38(17):L17504. \nhttps://doi.org/10.1029/2011GL048497',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '4',
     'key': '5_CR214',
     'first-page': '349',
     'volume': '53',
     'author': 'J Ryckeboer',
     'year': '2003',
     'unstructured': 'Ryckeboer J, Mergaert J, Vaes K, Klammer S, De Clercq D, Coosemans J, Insam H, Swings J (2003) A survey of bacteria and fungi occurring during composting and self-heating processes. Ann Microbiol 53(4):349–410',
     'journal-title': 'Ann Microbiol'},
    {'issue': '11',
     'key': '5_CR215',
     'first-page': '3096',
     'volume': '16',
     'author': 'T Sachs',
     'year': '2010',
     'unstructured': 'Sachs T, Giebels M, Boike J, Kutzbach L (2010) Environmental controls on CH4 emission from polygonal tundra on the microsite scale in the Lena river delta, Siberia. Glob Chang Biol 16(11):3096–3110',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '2',
     'key': '5_CR216',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2010GB003862',
     'volume': '25',
     'author': 'Laura Sánchez-García',
     'year': '2011',
     'unstructured': 'Sánchez-García L, Alling V, Pugach S, Vonk J, Van Dongen B, Humborg C, Dudarev O, Semiletov I, Gustafsson Ö (2011) Inventories and behavior of particulate organic carbon in the Laptev and East Siberian seas. Glob Biogeochem Cycles 25(2)',
     'journal-title': 'Global Biogeochemical Cycles'},
    {'issue': 'G3',
     'key': '5_CR217',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2010JG001635',
     'volume': '116',
     'author': 'A Sannel',
     'year': '2011',
     'unstructured': 'Sannel A, Kuhry P (2011) Warming-induced destabilization of peat plateau/thermokarst lake complexes. J Geophys Res Biogeo 116(G3):G03035. \nhttps://doi.org/10.1029/2010JG001635',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '2',
     'key': '5_CR218',
     'doi-asserted-by': 'publisher',
     'first-page': '125',
     'DOI': '10.1002/ppp.449',
     'volume': '14',
     'author': 'T Sazonova',
     'year': '2003',
     'unstructured': 'Sazonova T, Romanovsky V (2003) A model for regional-scale estimation of temporal and spatial variability of active layer thickness and mean annual ground temperatures. Permafr Periglac Process 14(2):125–139',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '10',
     'key': '5_CR219',
     'doi-asserted-by': 'publisher',
     'first-page': '950',
     'DOI': '10.1038/nclimate3054',
     'volume': '6',
     'author': 'C Schädel',
     'year': '2016',
     'unstructured': 'Schädel C, Bader MK-F, Schuur EA, Biasi C, Bracho R, Čapek P, De Baets S, Diáková K, Ernakovich J, Estop-Aragones C (2016) Potential carbon emissions dominated by carbon dioxide from thawed permafrost soils. Nat Clim Chang 6(10):950',
     'journal-title': 'Nat Clim Chang'},
    {'issue': '7260',
     'key': '5_CR220',
     'doi-asserted-by': 'publisher',
     'first-page': '53',
     'DOI': '10.1038/nature08227',
     'volume': '461',
     'author': 'M Scheffer',
     'year': '2009',
     'unstructured': 'Scheffer M, Bascompte J, Brock WA, Brovkin V, Carpenter SR, Dakos V, Held H, Van Nes EH, Rietkerk M, Sugihara G (2009) Early-warning signals for critical transitions. Nature 461(7260):53',
     'journal-title': 'Nature'},
    {'issue': '1',
     'key': '5_CR221',
     'doi-asserted-by': 'publisher',
     'first-page': '216',
     'DOI': '10.1111/bor.12084',
     'volume': '44',
     'author': 'P Schleusner',
     'year': '2015',
     'unstructured': 'Schleusner P, Biskaborn BK, Kienast F, Wolter J, Subetto D, Diekmann B (2015) Basin evolution and palaeoenvironmental variability of the thermokarst lake E l’gene-K yuele, Arctic Siberia. Boreas 44(1):216–229',
     'journal-title': 'Boreas'},
    {'issue': '9',
     'key': '5_CR222',
     'doi-asserted-by': 'publisher',
     'first-page': '3117',
     'DOI': '10.1002/2014GL059514',
     'volume': '41',
     'author': 'K Schreiner',
     'year': '2014',
     'unstructured': 'Schreiner K, Bianchi TS, Rosenheim BE (2014) Evidence for permafrost thaw and transport from an Alaskan North slope watershed. Geophys Res Lett 41(9):3117–3126. \nhttps://doi.org/10.1002/2014GL059514',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '2',
     'key': '5_CR223',
     'doi-asserted-by': 'publisher',
     'first-page': '280',
     'DOI': '10.1007/s10021-007-9024-0',
     'volume': '10',
     'author': 'EA Schuur',
     'year': '2007',
     'unstructured': 'Schuur EA, Crummer KG, Vogel JG, Mack MC (2007) Plant species composition and productivity following permafrost thaw and thermokarst in Alaskan tundra. Ecosystems 10(2):280–292',
     'journal-title': 'Ecosystems'},
    {'issue': '8',
     'key': '5_CR224',
     'doi-asserted-by': 'publisher',
     'first-page': '701',
     'DOI': '10.1641/B580807',
     'volume': '58',
     'author': 'EA Schuur',
     'year': '2008',
     'unstructured': 'Schuur EA, Bockheim J, Canadell JG, Euskirchen E, Field CB, Goryachkin SV, Hagemann S, Kuhry P, Lafleur PM, Lee H (2008) Vulnerability of permafrost carbon to climate change: implications for the global carbon cycle. Bioscience 58(8):701–714',
     'journal-title': 'Bioscience'},
    {'issue': '7246',
     'key': '5_CR225',
     'doi-asserted-by': 'publisher',
     'first-page': '556',
     'DOI': '10.1038/nature08031',
     'volume': '459',
     'author': 'EA Schuur',
     'year': '2009',
     'unstructured': 'Schuur EA, Vogel JG, Crummer KG, Lee H, Sickman JO, Osterkamp T (2009) The effect of permafrost thaw on old carbon release and net carbon exchange from tundra. Nature 459(7246):556',
     'journal-title': 'Nature'},
    {'issue': '7546',
     'key': '5_CR226',
     'doi-asserted-by': 'publisher',
     'first-page': '171',
     'DOI': '10.1038/nature14338',
     'volume': '520',
     'author': 'EA Schuur',
     'year': '2015',
     'unstructured': 'Schuur EA, McGuire AD, Schadel C, Grosse G, Harden JW, Hayes DJ, Hugelius G, Koven CD, Kuhry P, Lawrence DM, Natali SM, Olefeldt D, Romanovsky VE, Schaefer K, Turetsky MR, Treat CC, Vonk JE (2015) Climate change and the permafrost carbon feedback. Nature 520(7546):171–179. \nhttps://doi.org/10.1038/nature14338',
     'journal-title': 'Nature'},
    {'issue': '9',
     'key': '5_CR227',
     'doi-asserted-by': 'publisher',
     'first-page': '2407',
     'DOI': '10.5194/bg-8-2407-2011',
     'volume': '8',
     'author': 'IP Semiletov',
     'year': '2011',
     'unstructured': 'Semiletov IP, Pipko II, Shakhova NE, Dudarev OV, Pugach SP, Charkin AN, McRoy C, Kosmach D, Gustafsson Ö (2011) Carbon transport by the Lena River from its headwaters to the Arctic Ocean, with emphasis on fluvial input of terrestrial particulate organic carbon vs. carbon transport by coastal erosion. Biogeosciences 8(9):2407–2426',
     'journal-title': 'Biogeosciences'},
    {'issue': '1',
     'key': '5_CR228',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/7/1/015201',
     'volume': '7',
     'author': 'IP Semiletov',
     'year': '2012',
     'unstructured': 'Semiletov IP, Shakhova NE, Sergienko VI, Pipko II, Dudarev OV (2012) On carbon transport and fate in the east Siberian Arctic land–shelf–atmosphere system. Environ Res Lett 7(1):015201',
     'journal-title': 'Environ Res Lett'},
    {'issue': '2',
     'key': '5_CR229',
     'doi-asserted-by': 'publisher',
     'first-page': '366',
     'DOI': '10.1016/j.yqres.2010.09.007',
     'volume': '75',
     'author': 'M Seppälä',
     'year': '2011',
     'unstructured': 'Seppälä M (2011) Synthesis of studies of palsa formation underlining the importance of local environmental and physical characteristics. Quat Res 75(2):366–370',
     'journal-title': 'Quat Res'},
    {'issue': '4',
     'key': '5_CR230',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/4/4/045015',
     'volume': '4',
     'author': 'A Shiklomanov',
     'year': '2009',
     'unstructured': 'Shiklomanov A, Lammers R (2009) Record Russian river discharge in 2007 and the limits of analysis. Environ Res Lett 4(4):045015',
     'journal-title': 'Environ Res Lett'},
    {'issue': 'G4',
     'key': '5_CR231',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2006JG000352',
     'volume': '112',
     'author': 'A. I. Shiklomanov',
     'year': '2007',
     'unstructured': 'Shiklomanov AI, Lammers RB, Rawlins M, Smith L, Pavelsky T (2007) Temporal and spatial variations in maximum river discharge from a new Russian data set. Journal of geophysical research: Biogeosciences 112(G4):G04S53. \nhttps://doi.org/10.1029/2006JG000352',
     'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
    {'key': '5_CR232',
     'unstructured': 'Shiklomanov NI, Streletskiy DA, Nelson FE, Hollister RD, Romanovsky VE, Tweedie CE, Bockheim JG, Brown J (2010) Decadal variations of active-layer thickness in moisture-controlled landscapes, Barrow, Alaska. J Geophys Res Biogeosci 115(G4):G00I04. \nhttps://doi.org/10.1029/2009JG001248',
     'DOI': '10.1029/2009JG001248',
     'doi-asserted-by': 'publisher'},
    {'issue': '1-2',
     'key': '5_CR233',
     'doi-asserted-by': 'publisher',
     'first-page': '215',
     'DOI': '10.1007/s00382-017-3600-6',
     'volume': '50',
     'author': 'Igor Shkolnik',
     'year': '2017',
     'unstructured': 'Shkolnik I, Pavlova T, Efimov S, Zhuravlev S (2017) Future changes in peak river flows across northern Eurasia as inferred from an ensemble of regional climate projections under the IPCC RCP8.5 scenario. Climate Dynam \nhttps://doi.org/10.1007/s00382-017-3600-6',
     'journal-title': 'Climate Dynamics'},
    {'issue': '1',
     'key': '5_CR234',
     'doi-asserted-by': 'publisher',
     'first-page': '7',
     'DOI': '10.1002/ppp.582',
     'volume': '18',
     'author': 'Y Shur',
     'year': '2007',
     'unstructured': 'Shur Y, Jorgenson M (2007) Patterns of permafrost formation and degradation in relation to climate and ecosystems. Permafr Periglac Process 18(1):7–19',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '7451',
     'key': '5_CR235',
     'doi-asserted-by': 'publisher',
     'first-page': '615',
     'DOI': '10.1038/nature12129',
     'volume': '497',
     'author': 'SA Sistla',
     'year': '2013',
     'unstructured': 'Sistla SA, Moore JC, Simpson RT, Gough L, Shaver GR, Schimel JP (2013) Long-term warming restructures Arctic tundra without changing net soil carbon storage. Nature 497(7451):615',
     'journal-title': 'Nature'},
    {'key': '5_CR236',
     'doi-asserted-by': 'publisher',
     'first-page': '42',
     'DOI': '10.1016/j.soilbio.2016.03.016',
     'volume': '98',
     'author': 'S Sjögersten',
     'year': '2016',
     'unstructured': 'Sjögersten S, Caul S, Daniell T, Jurd A, O’Sullivan O, Stapleton C, Titman JJ (2016) Organic matter chemistry controls greenhouse gas emissions from permafrost peatlands. Soil Biol Biochem 98:42–53',
     'journal-title': 'Soil Biol Biochem'},
    {'issue': '5727',
     'key': '5_CR237',
     'doi-asserted-by': 'publisher',
     'first-page': '1429',
     'DOI': '10.1126/science.1108142',
     'volume': '308',
     'author': 'LC Smith',
     'year': '2005',
     'unstructured': 'Smith LC, Sheng Y, MacDonald G, Hinzman L (2005) Disappearing arctic lakes. Science 308(5727):1429–1429',
     'journal-title': 'Science'},
    {'issue': '6',
     'key': '5_CR238',
     'doi-asserted-by': 'publisher',
     'first-page': '1442',
     'DOI': '10.1111/1365-2435.12127',
     'volume': '27',
     'author': 'NA Soudzilovskaia',
     'year': '2013',
     'unstructured': 'Soudzilovskaia NA, Bodegom PM, Cornelissen JH (2013) Dominant bryophyte control over high-latitude soil temperature fluctuations predicted by heat transfer traits, field moisture regime and laws of thermal insulation. Funct Ecol 27(6):1442–1454',
     'journal-title': 'Funct Ecol'},
    {'issue': '5',
     'key': '5_CR239',
     'doi-asserted-by': 'publisher',
     'first-page': '853',
     'DOI': '10.1007/s10021-009-9263-3',
     'volume': '12',
     'author': 'MM Squires',
     'year': '2009',
     'unstructured': 'Squires MM, Lesack LF, Hecky RE, Guildford SJ, Ramlal P, Higgins SN (2009) Primary production and carbon dioxide metabolic balance of a lake-rich arctic river floodplain: partitioning of phytoplankton, epipelon, macrophyte, and epiphyton production among lakes on the Mackenzie Delta. Ecosystems 12(5):853–872',
     'journal-title': 'Ecosystems'},
    {'issue': '1',
     'key': '5_CR240',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2008GL035822',
     'volume': '36',
     'author': 'JM St. Jacques',
     'year': '2009',
     'unstructured': 'St. Jacques JM, Sauchyn DJ (2009) Increasing winter baseflow and mean annual streamflow from possible permafrost thawing in the Northwest Territories, Canada. Geophys Res Lett 36(1):L01401. \nhttps://doi.org/10.1029/2008GL035822',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '13',
     'key': '5_CR241',
     'doi-asserted-by': 'publisher',
     'first-page': '1721',
     'DOI': '10.1029/2003GL017337',
     'volume': '30',
     'author': 'M Stieglitz',
     'year': '2003',
     'unstructured': 'Stieglitz M, Déry S, Romanovsky V, Osterkamp T (2003) The role of snow cover in the warming of arctic permafrost. Geophys Res Lett 30(13):1721. \nhttps://doi.org/10.1029/2003GL017337',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '4',
     'key': '5_CR242',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2012GB004306',
     'volume': '26',
     'author': 'Robert G. Striegl',
     'year': '2012',
     'unstructured': 'Striegl RGDM, McDonald CP, Rover JR, Stets EG (2012) Carbon dioxide and methane emissions from the Yukon River system. Global Biogeochem Cycles 24(4):GB0E05. \nhttps://doi.org/10.1029/2012GB004306',
     'journal-title': 'Global Biogeochemical Cycles'},
    {'issue': '8',
     'key': '5_CR243',
     'doi-asserted-by': 'publisher',
     'first-page': '1185',
     'DOI': '10.1046/j.1365-2486.2003.00655.x',
     'volume': '9',
     'author': 'L Ström',
     'year': '2003',
     'unstructured': 'Ström L, Ekberg A, Mastepanov M, Røjle Christensen T (2003) The effect of vascular plants on carbon turnover and methane emissions from a tundra wetland. Glob Chang Biol 9(8):1185–1192',
     'journal-title': 'Glob Chang Biol'},
    {'issue': '6837',
     'key': '5_CR244',
     'doi-asserted-by': 'publisher',
     'first-page': '546',
     'DOI': '10.1038/35079180',
     'volume': '411',
     'author': 'M Sturm',
     'year': '2001',
     'unstructured': 'Sturm M, Racine C, Tape K (2001) Climate change: increasing shrub abundance in the Arctic. Nature 411(6837):546',
     'journal-title': 'Nature'},
    {'issue': 'G1',
     'key': '5_CR245',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2005JG000013',
     'volume': '110',
     'author': 'M Sturm',
     'year': '2005',
     'unstructured': 'Sturm M, Douglas T, Racine C, Liston GE (2005) Changing snow and shrub conditions affect albedo with global implications. J Geophys Res Biogeo 110(G1):G01004. \nhttps://doi.org/10.1029/2005JG000013',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '6',
     'key': '5_CR246',
     'doi-asserted-by': 'publisher',
     'first-page': '1073',
     'DOI': '10.1002/hyp.1180',
     'volume': '17',
     'author': 'A Sugimoto',
     'year': '2003',
     'unstructured': 'Sugimoto A, Naito D, Yanagisawa N, Ichiyanagi K, Kurita N, Kubota J, Kotake T, Ohata T, Maximov T, Fedorov A (2003) Characteristics of soil moisture in permafrost observed in East Siberian taiga with stable isotopes of water. Hydrol Process 17(6):1073–1092',
     'journal-title': 'Hydrol Process'},
    {'issue': 'G4',
     'key': '5_CR247',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2011JG001795',
     'volume': '116',
     'author': 'KD Tape',
     'year': '2011',
     'unstructured': 'Tape KD, Verbyla D, Welker JM (2011) Twentieth century erosion in Arctic Alaska foothills: the influence of shrubs, runoff, and permafrost. J Geophys Res Biogeo 116(G4):G04024. \nhttps://doi.org/10.1029/2011JG001795',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '1',
     'key': '5_CR248',
     'doi-asserted-by': 'publisher',
     'first-page': '76',
     'DOI': '10.1002/ppp.1869',
     'volume': '27',
     'author': 'A Teltewskoi',
     'year': '2016',
     'unstructured': 'Teltewskoi A, Beermann F, Beil I, Bobrov A, De Klerk P, Lorenz S, Lüder A, Michaelis D, Joosten H (2016) 4000 years of changing wetness in a permafrost polygon Peatland (Kytalyk, NE Siberia): a comparative high-resolution multi-proxy study. Permafr Periglac Process 27(1):76–95',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': 'G2',
     'key': '5_CR249',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2011jg001907',
     'volume': '117',
     'author': 'C Trucco',
     'year': '2012',
     'unstructured': 'Trucco C, Schuur EAG, Natali SM, Belshe EF, Bracho R, Vogel J (2012) Seven-year trends of CO2 exchange in a tundra ecosystem affected by long-term permafrost thaw. J Geophys Res Biogeo 117(G2):G02031. \nhttps://doi.org/10.1029/2011jg001907',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '9',
     'key': '5_CR250',
     'doi-asserted-by': 'publisher',
     'first-page': '1922',
     'DOI': '10.1111/j.1365-2486.2007.01381.x',
     'volume': '13',
     'author': 'M Turetsky',
     'year': '2007',
     'unstructured': 'Turetsky M, Wieder R, Vitt D, Evans R, Scott K (2007) The disappearance of relict permafrost in boreal North America: effects on peatland carbon storage and fluxes. Glob Chang Biol 13(9):1922–1934',
     'journal-title': 'Glob Chang Biol'},
    {'key': '5_CR251',
     'unstructured': 'Turetsky M, Treat C, Waldrop M, Waddington J, Harden J, McGuire A (2008) Short-term response of methane fluxes and methanogen activity to water table and soil warming manipulations in an Alaskan peatland. J Geophys Res Biogeosci 113(G3):G00A10. \nhttps://doi.org/10.1029/2007JG000496',
     'DOI': '10.1029/2007JG000496',
     'doi-asserted-by': 'publisher'},
    {'key': '5_CR252',
     'author': 'Nataliya Ukraintseva',
     'first-page': '107',
     'year': '2013',
     'unstructured': 'Ukraintseva N, Leibman M, Streletskaya I, Mikhaylova T (2014) Geochemistry of plant-soil-permafrost system on landslide-affected slopes, Yamal, Russia as an indicator of landslide age. In: Landslides in cold regions in the context of climate change. Springer, Cham, pp 107–131',
     'volume-title': 'Landslides in Cold Regions in the Context of Climate Change'},
    {'issue': '6',
     'key': '5_CR253',
     'doi-asserted-by': 'publisher',
     'first-page': '985',
     'DOI': '10.5194/bg-4-985-2007',
     'volume': '4',
     'author': 'M Molen Van der',
     'year': '2007',
     'unstructured': 'Van der Molen M, Van Huissteden J, Parmentier F, Petrescu A, Dolman A, Maximov T, Kononov A, Karsanaev S, Suzdalov D (2007) The growing season greenhouse gas balance of a continental tundra site in the Indigirka lowlands, NE Siberia. Biogeosciences 4(6):985–1003. \nhttps://doi.org/10.5194/bg-4-985-2007',
     'journal-title': 'Biogeosciences'},
    {'issue': '1',
     'key': '5_CR254',
     'doi-asserted-by': 'publisher',
     'first-page': '166',
     'DOI': '10.1111/j.1365-2427.2011.02710.x',
     'volume': '57',
     'author': 'M Hardenbroek Van',
     'year': '2012',
     'unstructured': 'Van Hardenbroek M, Lotter AF, Bastviken D, Duc N, Heiri O (2012) Relationship between δ13C of chironomid remains and methane flux in Swedish lakes. Freshw Biol 57(1):166–177',
     'journal-title': 'Freshw Biol'},
    {'key': '5_CR255',
     'unstructured': 'Van Huissteden J (1990) Tundra rivers of the last glacial: sedimentation and geomorphological processes during the Middle Pleniglacial in Twente, Eastern Netherlands. In: Van Amerom H (ed) Mededelingen Rijks Geologische Dienst, vol 44–3. Rijks Geologische Dienst, pp 1–138'},
    {'issue': '5',
     'key': '5_CR256',
     'doi-asserted-by': 'publisher',
     'first-page': '545',
     'DOI': '10.1016/j.cosust.2012.09.008',
     'volume': '4',
     'author': 'J Huissteden Van',
     'year': '2012',
     'unstructured': 'Van Huissteden J, Dolman AJ (2012) Soil carbon in the Arctic and the permafrost carbon feedback. Curr Opin Environ Sustain 4(5):545–551. \nhttps://doi.org/10.1016/j.cosust.2012.09.008',
     'journal-title': 'Curr Opin Environ Sustain'},
    {'issue': 'G2',
     'key': '5_CR257',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2005jg000010',
     'volume': '110',
     'author': 'J Huissteden Van',
     'year': '2005',
     'unstructured': 'Van Huissteden J, Maximov TC, Dolman AJ (2005) High methane flux from an arctic floodplain (Indigirka lowlands, eastern Siberia). J Geophys Res Biogeo 110(G2):G02002. \nhttps://doi.org/10.1029/2005jg000010',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': 'G2',
     'key': '5_CR258',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2009JG001040',
     'volume': '114',
     'author': 'J. van Huissteden',
     'year': '2009',
     'unstructured': 'Van Huissteden J, Maximov TC, Dolman AJ (2009) Correction to “High methane flux from an arctic floodplain (Indigirka lowlands, eastern Siberia). J Geophys Res Biogeosci 114(G2):n/a–n/a. \nhttps://doi.org/10.1029/2009jg001040',
     'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
    {'issue': '2',
     'key': '5_CR259',
     'doi-asserted-by': 'publisher',
     'first-page': '119',
     'DOI': '10.1038/nclimate1101',
     'volume': '1',
     'author': 'J Huissteden Van',
     'year': '2011',
     'unstructured': 'Van Huissteden J, Berrittella C, Parmentier F, Mi Y, Maximov T, Dolman A (2011) Methane emissions from permafrost thaw lakes limited by lake drainage. Nat Clim Chang 1(2):119–123',
     'journal-title': 'Nat Clim Chang'},
    {'key': '5_CR260',
     'author': 'J Huissteden Van',
     'first-page': '490',
     'year': '2013',
     'unstructured': 'Van Huissteden J, Vandenberghe J, Gibbard PL, Lewin J (2013) Permafrost and Periglacial features | Periglacial fluvial sediments and forms. In: Elias SA (ed) Encyclopedia of the quaternary, vol 3. Elsevier, Amsterdam, pp 490–499. \nhttps://doi.org/10.1016/b978-0-444-53643-3.00108-4',
     'volume-title': 'Encyclopedia of the quaternary',
     'DOI': '10.1016/b978-0-444-53643-3.00108-4',
     'doi-asserted-by': 'publisher'},
    {'issue': '20',
     'key': '5_CR261',
     'doi-asserted-by': 'publisher',
     'first-page': '2053',
     'DOI': '10.1016/S0277-3791(03)00213-0',
     'volume': '22',
     'author': 'J Vandenberghe',
     'year': '2003',
     'unstructured': 'Vandenberghe J (2003) Climate forcing of fluvial system development: an evolution of ideas. Quat Sci Rev 22(20):2053–2060',
     'journal-title': 'Quat Sci Rev'},
    {'issue': '3–4',
     'key': '5_CR262',
     'doi-asserted-by': 'publisher',
     'first-page': '275',
     'DOI': '10.1016/j.geomorph.2006.12.030',
     'volume': '98',
     'author': 'J Vandenberghe',
     'year': '2008',
     'unstructured': 'Vandenberghe J (2008) The fluvial cycle at cold–warm–cold transitions in lowland regions: a refinement of theory. Geomorphology 98(3–4):275–284',
     'journal-title': 'Geomorphology'},
    {'issue': '3',
     'key': '5_CR263',
     'doi-asserted-by': 'publisher',
     'first-page': '215',
     'DOI': '10.1023/A:1005984701775',
     'volume': '41',
     'author': 'J Verville',
     'year': '1998',
     'unstructured': 'Verville J, Hobbie S, Chapin FS, Hooper D (1998) Response of tundra CH4 and CO2 flux tomanipulation of temperature and vegetation. Biogeochemistry 41(3):215–235',
     'journal-title': 'Biogeochemistry'},
    {'issue': '3',
     'key': '5_CR264',
     'doi-asserted-by': 'publisher',
     'first-page': '586',
     'DOI': '10.1002/2015JG003132',
     'volume': '121',
     'author': 'T Vihma',
     'year': '2016',
     'unstructured': 'Vihma T, Screen J, Tjernström M, Newton B, Zhang X, Popova V, Deser C, Holland M, Prowse T (2016) The atmospheric role in the Arctic water cycle: a review on processes, past and future changes, and their impacts. J Geophys Res Biogeo 121(3):586–620',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '9',
     'key': '5_CR265',
     'doi-asserted-by': 'publisher',
     'first-page': '675',
     'DOI': '10.1038/ngeo1937',
     'volume': '6',
     'author': 'JE Vonk',
     'year': '2013',
     'unstructured': 'Vonk JE, Gustafsson Ö (2013) Permafrost-carbon complexities. Nat Geosci 6(9):675–676. \nhttps://doi.org/10.1038/ngeo1937',
     'journal-title': 'Nat Geosci'},
    {'issue': '10',
     'key': '5_CR266',
     'doi-asserted-by': 'publisher',
     'first-page': '3153',
     'DOI': '10.5194/bg-7-3153-2010',
     'volume': '7',
     'author': 'JE Vonk',
     'year': '2010',
     'unstructured': 'Vonk JE, Sanchez-Garcia L, Semiletov I, Dudarev O, Eglinton T, Andersson A, Gustafsson Ö (2010) Molecular and radiocarbon constraints on sources and degradation of terrestrial organic carbon along the Kolyma paleoriver transect, east Siberian Sea. Biogeosciences 7(10):3153–3166',
     'journal-title': 'Biogeosciences'},
    {'issue': '11',
     'key': '5_CR267',
     'doi-asserted-by': 'publisher',
     'first-page': '2689',
     'DOI': '10.1002/grl.50348',
     'volume': '40',
     'author': 'JE Vonk',
     'year': '2013',
     'unstructured': 'Vonk JE, Mann PJ, Davydov S, Davydova A, Spencer RGM, Schade J, Sobczak WV, Zimov N, Zimov S, Bulygina E, Eglinton TI, Holmes RM (2013) High biolability of ancient permafrost carbon upon thaw. Geophys Res Lett 40(11):2689–2693. \nhttps://doi.org/10.1002/grl.50348',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '12',
     'key': '5_CR268',
     'doi-asserted-by': 'publisher',
     'first-page': '8410',
     'DOI': '10.1002/2014JC010261',
     'volume': '119',
     'author': 'JE Vonk',
     'year': '2014',
     'unstructured': 'Vonk JE, Semiletov IP, Dudarev OV, Eglinton TI, Andersson A, Shakhova N, Charkin A, Heim B, Gustafsson Ö (2014) Preferential burial of permafrost-derived organic carbon in Siberian-Arctic shelf waters. J Geophys Res Oceans 119(12):8410–8421',
     'journal-title': 'J Geophys Res Oceans'},
    {'issue': '23',
     'key': '5_CR269',
     'doi-asserted-by': 'publisher',
     'first-page': '7129',
     'DOI': '10.5194/bg-12-7129-2015',
     'volume': '12',
     'author': 'JE Vonk',
     'year': '2015',
     'unstructured': 'Vonk JE, Tank SE, Bowden WB, Laurion I, Vincent WF, Alekseychik P, Amyot M, Billet M, Canario J, Cory RM (2015) Reviews and syntheses: effects of permafrost thaw on Arctic aquatic ecosystems. Biogeosciences 12(23):7129–7167',
     'journal-title': 'Biogeosciences'},
    {'issue': '2',
     'key': '5_CR270',
     'doi-asserted-by': 'publisher',
     'first-page': '103',
     'DOI': '10.1002/ppp.452',
     'volume': '14',
     'author': 'D Walker',
     'year': '2003',
     'unstructured': 'Walker D, Jia G, Epstein H, Raynolds M, Chapin Iii F, Copass C, Hinzman L, Knudson J, Maier H, Michaelson G (2003) Vegetation-soil-thaw-depth relationships along a low-arctic bioclimate gradient, Alaska: synthesis of information from the ATLAS studies. Permafr Periglac Process 14(2):103–123',
     'journal-title': 'Permafr Periglac Process'},
    {'issue': '6',
     'key': '5_CR271',
     'doi-asserted-by': 'publisher',
     'first-page': '419',
     'DOI': '10.1038/ngeo1480',
     'volume': '5',
     'author': 'KM Walter Anthony',
     'year': '2012',
     'unstructured': 'Walter Anthony KM, Anthony P, Grosse G, Chanton J (2012) Geologic methane seeps along boundaries of Arctic permafrost thaw and melting glaciers. Nat Geosci 5(6):419–426. \nhttps://doi.org/10.1038/ngeo1480',
     'journal-title': 'Nat Geosci'},
    {'issue': '7510',
     'key': '5_CR272',
     'doi-asserted-by': 'publisher',
     'first-page': '452',
     'DOI': '10.1038/nature13560',
     'volume': '511',
     'author': 'KM Walter Anthony',
     'year': '2014',
     'unstructured': 'Walter Anthony KM, Zimov SA, Grosse G, Jones MC, Anthony PM, Chapin FS 3rd, Finlay JC, Mack MC, Davydov S, Frenzel P, Frolking S (2014) A shift of thermokarst lakes from carbon sources to sinks during the Holocene epoch. Nature 511(7510):452–456. \nhttps://doi.org/10.1038/nature13560',
     'journal-title': 'Nature'},
    {'key': '5_CR273',
     'doi-asserted-by': 'publisher',
     'first-page': '679',
     'DOI': '10.1038/ngeo2795',
     'volume': '9',
     'author': 'K Walter Anthony',
     'year': '2016',
     'unstructured': 'Walter Anthony K, Daanen R, Anthony P, Schneider von Deimling T, Ping C-L, Chanton JP, Grosse G (2016) Methane emissions proportional to permafrost carbon thawed in Arctic lakes since the 1950s. Nat Geosci 9:679–682',
     'journal-title': 'Nat Geosci'},
    {'issue': '1',
     'key': '5_CR274',
     'doi-asserted-by': 'publisher',
     'first-page': '3262',
     'DOI': '10.1038/s41467-018-05738-9',
     'volume': '9',
     'author': 'K Walter Anthony',
     'year': '2018',
     'unstructured': 'Walter Anthony K, von Deimling TS, Nitze I, Frolking S, Emond A, Daanen R, Anthony P, Lindgren P, Jones B, Grosse G (2018) 21st-century modeled permafrost carbon emissions accelerated by abrupt thaw beneath lakes. Nat Commun 9(1):3262',
     'journal-title': 'Nat Commun'},
    {'issue': '7107',
     'key': '5_CR275',
     'doi-asserted-by': 'publisher',
     'first-page': '71',
     'DOI': '10.1038/nature05040',
     'volume': '443',
     'author': 'KM Walter',
     'year': '2006',
     'unstructured': 'Walter KM, Zimov SA, Chanton JP, Verbyla D, Chapin FS 3rd (2006) Methane bubbling from Siberian thaw lakes as a positive feedback to climate warming. Nature 443(7107):71–75. \nhttps://doi.org/10.1038/nature05040',
     'journal-title': 'Nature'},
    {'issue': '1856',
     'key': '5_CR276',
     'doi-asserted-by': 'publisher',
     'first-page': '1657',
     'DOI': '10.1098/rsta.2007.2036',
     'volume': '365',
     'author': 'Katey M Walter',
     'year': '2007',
     'unstructured': 'Walter KM, Smith LC, Chapin FS, 3rd (2007a) methane bubbling from northern lakes: present and future contributions to the global methane budget. Philos Trans A Math Phys Eng Sci 365 (1856):1657–1676. doi:\nhttps://doi.org/10.1098/rsta.2007.2036',
     'journal-title': 'Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences'},
    {'issue': '5850',
     'key': '5_CR277',
     'doi-asserted-by': 'publisher',
     'first-page': '633',
     'DOI': '10.1126/science.1142924',
     'volume': '318',
     'author': 'KM Walter',
     'year': '2007',
     'unstructured': 'Walter KM, Edwards ME, Grosse G, Zimov SA, Chapin FS 3rd (2007b) Thermokarst lakes as a source of atmospheric CH4 during the last deglaciation. Science 318(5850):633–636. \nhttps://doi.org/10.1126/science.1142924',
     'journal-title': 'Science'},
    {'key': '5_CR278',
     'unstructured': 'Walter K, Chanton J, Chapin F, Schuur E, Zimov S (2008) Methane production and bubble emissions from arctic lakes: isotopic implications for source pathways and ages. J Geophys Res Biogeosci 113(G3):G00A08. \nhttps://doi.org/10.1029/2007JG000569',
     'DOI': '10.1029/2007JG000569',
     'doi-asserted-by': 'publisher'},
    {'issue': '6',
     'key': '5_CR279',
     'doi-asserted-by': 'publisher',
     'first-page': '0',
     'DOI': '10.2136/vzj2016.01.0010',
     'volume': '15',
     'author': 'Michelle A. Walvoord',
     'year': '2016',
     'unstructured': 'Walvoord MA, Kurylyk BL (2016) Hydrologic impacts of thawing permafrost\xa0– a review. Vadose Zone J 15 (6):0. doi:\nhttps://doi.org/10.2136/vzj2016.01.0010',
     'journal-title': 'Vadose Zone Journal'},
    {'issue': '12',
     'key': '5_CR280',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2007GL030216',
     'volume': '34',
     'author': 'MA Walvoord',
     'year': '2007',
     'unstructured': 'Walvoord MA, Striegl RG (2007) Increased groundwater to stream discharge from permafrost thawing in the Yukon River basin: potential impacts on lateral export of carbon and nitrogen. Geophys Res Lett 34(12):L12402. \nhttps://doi.org/10.1029/2007GL030216',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '5',
     'key': '5_CR281',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/11/5/055003',
     'volume': '11',
     'author': 'P Wang',
     'year': '2016',
     'unstructured': 'Wang P, Heijmans MM, Mommer L, van Ruijven J, Maximov TC, Berendse F (2016) Belowground plant biomass allocation in tundra ecosystems and its relationship with temperature. Environ Res Lett 11(5):055003',
     'journal-title': 'Environ Res Lett'},
    {'issue': '4',
     'key': '5_CR282',
     'doi-asserted-by': 'publisher',
     'first-page': 'n/a-n/a',
     'DOI': '10.1029/2012GB004342',
     'volume': '26',
     'author': 'K. P. Wickland',
     'year': '2012',
     'unstructured': 'Wickland K, Aiken GR, Butler K, Dornblaser MM, Spencer RGM, Striegl RG (2012) Biodegradability of dissolved organic carbon in the Yukon River and its tributaries: Seasonality and importance of inorganic nitrogen. Glob Biogeochem Cycles 26(4):GB0E03. \nhttps://doi.org/10.1029/2012GB004342',
     'journal-title': 'Global Biogeochemical Cycles'},
    {'issue': '6',
     'key': '5_CR283',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1088/1748-9326/aac4ad',
     'volume': '13',
     'author': 'KP Wickland',
     'year': '2018',
     'unstructured': 'Wickland KP, Waldrop MP, Aiken GR, Koch JC, Jorgenson MT, Striegl RG (2018) Dissolved organic carbon and nitrogen release from boreal Holocene permafrost and seasonally frozen soils of Alaska. Environ Res Lett 13(6):065011',
     'journal-title': 'Environ Res Lett'},
    {'issue': '2',
     'key': '5_CR284',
     'doi-asserted-by': 'publisher',
     'first-page': '555',
     'DOI': '10.1002/2013GL058510',
     'volume': '41',
     'author': 'M Wik',
     'year': '2014',
     'unstructured': 'Wik M, Thornton BF, Bastviken D, MacIntyre S, Varner RK, Crill PM (2014) Energy input is primary controller of methane bubbling in subarctic lakes. Geophys Res Lett 41(2):555–560',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '2',
     'key': '5_CR285',
     'doi-asserted-by': 'publisher',
     'first-page': '99',
     'DOI': '10.1038/ngeo2578',
     'volume': '9',
     'author': 'M Wik',
     'year': '2016',
     'unstructured': 'Wik M, Varner RK, Anthony KW, MacIntyre S, Bastviken D (2016) Climate-sensitive northern lakes and ponds are critical components of methane release. Nat Geosci 9(2):99',
     'journal-title': 'Nat Geosci'},
    {'issue': '8',
     'key': '5_CR286',
     'doi-asserted-by': 'publisher',
     'first-page': '2399',
     'DOI': '10.1029/2017JG004298',
     'volume': '123',
     'author': 'M Wik',
     'year': '2018',
     'unstructured': 'Wik M, Johnson JE, Crill PM, DeStasio JP, Erickson L, Halloran MJ, Fahnestock MF, Crawford MK, Phillips SC, Varner RK (2018) Sediment characteristics and methane ebullition in three subarctic lakes. J Geophys Res Biogeo 123(8):2399–2411',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '21',
     'key': '5_CR287',
     'doi-asserted-by': 'publisher',
     'first-page': '10280',
     'DOI': '10.1073/pnas.1811797116',
     'volume': '116',
     'author': 'B Wild',
     'year': '2019',
     'unstructured': 'Wild B, Andersson A, Bröder L, Vonk J, Hugelius G, McClelland JW, Song W, Raymond PA, Gustafsson Ö (2019) Rivers across the Siberian Arctic unearth the patterns of carbon release from thawing permafrost. Proc Natl Acad Sci 116(21):10280–10285',
     'journal-title': 'Proc Natl Acad Sci'},
    {'key': '5_CR288',
     'unstructured': 'Williams PJ, Smith MW (1991) The frozen earth. Fundamentals of geocryology. Cambridge University Press, Cambridge, 306 p'},
    {'key': '5_CR289',
     'unstructured': 'Woo M-K (2012) Permafrost hydrology. Springer, 563 p',
     'DOI': '10.1007/978-3-642-23462-0',
     'doi-asserted-by': 'crossref'},
    {'issue': '3',
     'key': '5_CR290',
     'doi-asserted-by': 'publisher',
     'first-page': '650',
     'DOI': '10.1002/2015JG003133',
     'volume': '121',
     'author': 'FJ Wrona',
     'year': '2016',
     'unstructured': 'Wrona FJ, Johansson M, Culp JM, Jenkins A, Mård J, Myers-Smith IH, Prowse TD, Vincent WF, Wookey PA (2016) Transitions in Arctic ecosystems: ecological implications of a changing hydrological regime. J Geophys Res Biogeo 121(3):650–674',
     'journal-title': 'J Geophys Res Biogeo'},
    {'issue': '2',
     'key': '5_CR291',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2004GL021570',
     'volume': '32',
     'author': 'P Wu',
     'year': '2005',
     'unstructured': 'Wu P, Wood R, Stott P (2005) Human influence on increasing Arctic river discharges. Geophys Res Lett 32(2):L02703. \nhttps://doi.org/10.1029/2004GL021570',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '2',
     'key': '5_CR292',
     'doi-asserted-by': 'publisher',
     'first-page': '286',
     'DOI': '10.1175/1525-7541(2004)005<0286:TIOCCO>2.0.CO;2',
     'volume': '5',
     'author': 'H Ye',
     'year': '2004',
     'unstructured': 'Ye H, Ladochy S, Yang D, Zhang T, Zhang X, Ellison M (2004) The impact of climatic conditions on seasonal river discharges in Siberia. J Hydrometeorol 5(2):286–295',
     'journal-title': 'J Hydrometeorol'},
    {'issue': '1',
     'key': '5_CR293',
     'doi-asserted-by': 'publisher',
     'first-page': '145',
     'DOI': '10.5194/bg-15-5287-2018',
     'volume': '12',
     'author': 'Y Yi',
     'year': '2018',
     'unstructured': 'Yi Y, Kimball JS, Chen R, Moghaddam M, Reichle RH, Mishra U, Zona D, Oechel WC (2018) Characterizing permafrost active layer dynamics and sensitivity to landscape spatial heterogeneity in Alaska. Cryosphere 12(1):145–161. \nhttps://doi.org/10.5194/bg-15-5287-2018',
     'journal-title': 'Cryosphere'},
    {'issue': '2',
     'key': '5_CR294',
     'doi-asserted-by': 'publisher',
     'first-page': '151',
     'DOI': '10.1002/ppp.451',
     'volume': '14',
     'author': 'K Yoshikawa',
     'year': '2003',
     'unstructured': 'Yoshikawa K, Hinzman LD (2003) Shrinking thermokarst ponds and groundwater dynamics in discontinuous permafrost near council, Alaska. Permafr Periglac Process 14(2):151–160',
     'journal-title': 'Permafr Periglac Process'},
    {'key': '5_CR295',
     'doi-asserted-by': 'publisher',
     'first-page': '1290',
     'DOI': '10.1016/j.scitotenv.2017.09.059',
     'volume': '615',
     'author': 'EA Zakharova',
     'year': '2018',
     'unstructured': 'Zakharova EA, Kouraev AV, Stephane G, Franck G, Desyatkin RV, Desyatkin AR (2018) Recent dynamics of hydro-ecosystems in thermokarst depressions in Central Siberia from satellite and in situ observations: importance for agriculture and human life. Sci Total Environ 615:1290–1304',
     'journal-title': 'Sci Total Environ'},
    {'issue': 'D16',
     'key': '5_CR296',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2004JD005642',
     'volume': '110',
     'author': 'T Zhang',
     'year': '2005',
     'unstructured': 'Zhang T, Frauenfeld OW, Serreze MC, Etringer A, Oelke C, McCreight J, Barry RG, Gilichinsky D, Yang D, Ye H (2005) Spatial and temporal variability in active layer thickness over the Russian Arctic drainage basin. J Geophys Res Atmos 110(D16):D16101. \nhttps://doi.org/10.1029/2004JD005642',
     'journal-title': 'J Geophys Res Atmos'},
    {'key': '5_CR297',
     'doi-asserted-by': 'publisher',
     'first-page': '7102',
     'DOI': '10.1029/2018GL077830',
     'volume': '45',
     'author': 'W Zhang',
     'year': '2018',
     'unstructured': 'Zhang W, Miller P, Jansson C, Samuelsson P, Mao J, Smith B (2018) Self-amplifying feedbacks accelerate greening and warming of the Arctic. Geophys Res Lett 45:7102–7111. \nhttps://doi.org/10.1029/2018GL077830',
     'journal-title': 'Geophys Res Lett'},
    {'issue': '3',
     'key': '5_CR298',
     'doi-asserted-by': 'publisher',
     'first-page': '197',
     'DOI': '10.14430/arctic1344',
     'volume': '46',
     'author': 'S Zimov',
     'year': '1993',
     'unstructured': 'Zimov S, Semiletov I, Daviodov S, Voropaev YV, Prosyannikov S, Wong C, Chan Y-H (1993) Wintertime CO2 emission from soils of Northeastern Siberia. Arctic 46(3):197–204',
     'journal-title': 'Arctic'},
    {'issue': '5327',
     'key': '5_CR299',
     'doi-asserted-by': 'publisher',
     'first-page': '800',
     'DOI': '10.1126/science.277.5327.800',
     'volume': '277',
     'author': 'S Zimov',
     'year': '1997',
     'unstructured': 'Zimov S, Voropaev YV, Semiletov I, Davidov S, Prosiannikov S, Chapin FS, Chapin M, Trumbore S, Tyler S (1997) North Siberian lakes: a methane source fueled by Pleistocene carbon. Science 277(5327):800–802',
     'journal-title': 'Science'},
    {'key': '5_CR300',
     'unstructured': 'Zimov SA, Davydov SP, Zimova GM, Davydova AI, Schuur EAG, Dutta K, Chapin FS (2006) Permafrost carbon: stock and decomposability of a globally significant carbon pool. Geophys Res Lett 33(20). \nhttps://doi.org/10.1029/2006gl027484',
     'DOI': '10.1029/2006gl027484',
     'doi-asserted-by': 'publisher'},
    {'issue': '2–3',
     'key': '5_CR301',
     'doi-asserted-by': 'publisher',
     'first-page': '125',
     'DOI': '10.1111/j.1574-6968.1990.tb04090.x',
     'volume': '6',
     'author': 'SH Zinder',
     'year': '1990',
     'unstructured': 'Zinder SH (1990) Conversion of acetic acid to methane by thermophiles. FEMS Microbiol Rev 6(2–3):125–137',
     'journal-title': 'FEMS Microbiol Rev'},
    {'issue': '2',
     'key': '5_CR302',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2009GB003487',
     'volume': '23',
     'author': 'D Zona',
     'year': '2009',
     'unstructured': 'Zona D, Oechel W, Kochendorfer J, Paw U, Salyuk A, Olivas P, Oberbauer S, Lipson D (2009) Methane fluxes during the initiation of a large-scale water table manipulation experiment in the Alaskan Arctic tundra. Glob Biogeochem Cycles 23(2):GB2013. \nhttps://doi.org/10.1029/2009GB003487',
     'journal-title': 'Glob Biogeochem Cycles'},
    {'issue': '2',
     'key': '5_CR303',
     'doi-asserted-by': 'publisher',
     'DOI': '10.1029/2011GB004037',
     'volume': '26',
     'author': 'D Zona',
     'year': '2012',
     'unstructured': 'Zona D, Lipson DA, Paw U, Kyaw T, Oberbauer SF, Olivas P, Gioli B, Oechel WC (2012) Increased CO2 loss from vegetated drained lake tundra ecosystems due to flooding. Glob Biogeochem Cycles 26(2):GB2004. \nhttps://doi.org/10.1029/2011GB004037',
     'journal-title': 'Glob Biogeochem Cycles'},
    {'issue': '1',
     'key': '5_CR304',
     'doi-asserted-by': 'publisher',
     'first-page': '40',
     'DOI': '10.1073/pnas.1516017113',
     'volume': '113',
     'author': 'D Zona',
     'year': '2016',
     'unstructured': 'Zona D, Gioli B, Commane R, Lindaas J, Wofsy SC, Miller CE, Dinardo SJ, Dengel S, Sweeney C, Karion A, Chang RY, Henderson JM, Murphy PC, Goodrich JP, Moreaux V, Liljedahl A, Watts JD, Kimball JS, Lipson DA, Oechel WC (2016) Cold season emissions dominate the Arctic tundra methane budget. Proc Natl Acad Sci U S A 113(1):40–45. \nhttps://doi.org/10.1073/pnas.1516017113',
     'journal-title': 'Proc Natl Acad Sci U S A'}],
   'container-title': ['Thawing Permafrost'],
   'link': [{'URL': 'http://link.springer.com/content/pdf/10.1007/978-3-030-31379-1_5',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2020, 1, 1]],
    'date-time': '2020-01-01T12:29:28Z',
    'timestamp': 1577881768000},
   'score': 16.117552,
   'issued': {'date-parts': [[2020]]},
   'ISBN': ['9783030313784', '9783030313791'],
   'references-count': 308,
   'URL': 'http://dx.doi.org/10.1007/978-3-030-31379-1_5',
   'relation': {'cites': []},
   'assertion': [{'value': '2 January 2020',
     'order': 1,
     'name': 'first_online',
     'label': 'First Online',
     'group': {'name': 'ChapterHistory', 'label': 'Chapter History'}}]},
  {'indexed': {'date-parts': [[2020, 4, 10]],
    'date-time': '2020-04-10T01:46:33Z',
    'timestamp': 1586483193891},
   'reference-count': 0,
   'publisher': 'Wiley',
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'DOI': '10.1002/(issn)1099-1530',
   'type': 'journal',
   'created': {'date-parts': [[2006, 3, 21]],
    'date-time': '2006-03-21T18:16:41Z',
    'timestamp': 1142965001000},
   'source': 'Crossref',
   'is-referenced-by-count': 30,
   'title': ['Permafrost and Periglacial Processes'],
   'prefix': '10.1002',
   'member': '311',
   'language': 'en',
   'link': [{'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/(ISSN)1099-1530',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2018, 8, 4]],
    'date-time': '2018-08-04T15:54:52Z',
    'timestamp': 1533398092000},
   'score': 16.092146,
   'short-title': ['Permafrost Periglac. Process.'],
   'issued': {'date-parts': [[None]]},
   'references-count': 0,
   'URL': 'http://dx.doi.org/10.1002/(issn)1099-1530',
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 4, 8]],
    'date-time': '2020-04-08T01:20:09Z',
    'timestamp': 1586308809436},
   'reference-count': 47,
   'publisher': 'Wiley',
   'issue': '4',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 4626,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost Periglac. Process.'],
   'published-print': {'date-parts': [[2003, 10]]},
   'DOI': '10.1002/ppp.464',
   'type': 'journal-article',
   'created': {'date-parts': [[2003, 12, 19]],
    'date-time': '2003-12-19T08:00:40Z',
    'timestamp': 1071820840000},
   'page': '331-342',
   'source': 'Crossref',
   'is-referenced-by-count': 36,
   'title': ['Establishing long-term permafrost observatories for active-layer and permafrost investigations in Alaska: 1977-2002'],
   'prefix': '10.1002',
   'volume': '14',
   'author': [{'given': 'T. E.',
     'family': 'Osterkamp',
     'sequence': 'first',
     'affiliation': []}],
   'member': '311',
   'published-online': {'date-parts': [[2003]]},
   'reference': [{'key': '10.1002/ppp.464-BIB1',
     'author': 'Brown',
     'year': '1982',
     'unstructured': '1982. Influence of short-term climatic fluctuations on permafrost terrain. In Carbon Dioxide Effects Research and Assessment Program, DOE/EV10019-02, v. 2, pt. 3; US Department of Energy: Washington, DC.',
     'volume-title': 'Carbon Dioxide Effects Research and Assessment Program'},
    {'key': '10.1002/ppp.464-BIB2',
     'author': 'Clow',
     'year': '1991',
     'unstructured': '1991. Investigation of borehole temperature data for recent climate changes: examples from Alaskan Arctic and Antarctica. In Proceedings of the International Conference on the Role of Polar Regions in Global Change, June 11-15, 1990, vol. 2. Geophysical Institute, University of Alaska: Fairbanks, AK; 533.'},
    {'key': '10.1002/ppp.464-BIB3',
     'author': 'Esch',
     'volume': '4',
     'first-page': '38',
     'year': '1990',
     'journal-title': 'Journal of Cold Regions Engineering',
     'DOI': '10.1061/(ASCE)0887-381X(1990)4:1(6)',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB4',
     'author': 'Gosink',
     'first-page': '576',
     'year': '1983',
     'unstructured': '1983. Evidence for recent permafrost warming in Alaska. In Final Proceedings of the 4th International Conference on Permafrost, Fairbanks, AK, July 18-23, 1983. National Academy of Sciences Press: Washington, DC; 576.',
     'volume-title': 'Final Proceedings of the 4th International Conference on Permafrost, Fairbanks, AK, July 18-23'},
    {'key': '10.1002/ppp.464-BIB5',
     'author': 'Jorgenson',
     'volume': '48',
     'first-page': '551',
     'year': '2000',
     'journal-title': 'Climatic Change',
     'DOI': '10.1023/A:1005667424292',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB6',
     'author': 'Kawasaki',
     'year': '1985',
     'unstructured': '1985. Electromagnetic induction measurements in permafrost terrain for detecting ground ice and ice-rich soils. UAG R-300. Geophysical Institute, University of Alaska: Fairbanks, AK.'},
    {'key': '10.1002/ppp.464-BIB7',
     'author': 'Kwong',
     'volume': '26',
     'first-page': '399',
     'year': '1994',
     'journal-title': 'Climatic Change',
     'DOI': '10.1007/BF01094404',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB8',
     'author': 'Lachenbruch',
     'volume': '68',
     'first-page': '1515',
     'year': '1957a',
     'journal-title': 'Bulletin of the Geological Society of America',
     'DOI': '10.1130/0016-7606(1957)68[1515:TEOTOO]2.0.CO;2',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB9',
     'author': 'Lachenbruch',
     'year': '1957b',
     'unstructured': '1957b. Three-dimensional heat conduction in permafrost beneath heated buildings. Bulletin 1052-B. U.S. Geological Survey, Menlo Park, CA.'},
    {'key': '10.1002/ppp.464-BIB10',
     'author': 'Lachenbruch',
     'year': '1994',
     'unstructured': '1994. Permafrost, the active layer, and changing climate. Open-File Report 94-694, 43 p., U.S. Geological Survey, Menlo Park, CA.'},
    {'key': '10.1002/ppp.464-BIB11',
     'author': 'Lachenbruch',
     'volume': '87',
     'first-page': '9301',
     'year': '1982',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/JB087iB11p09301',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB12',
     'author': 'Lachenbruch',
     'volume': '234',
     'first-page': '689',
     'year': '1986',
     'journal-title': 'Science',
     'DOI': '10.1126/science.234.4777.689',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB13',
     'author': 'Lachenbruch',
     'first-page': '645',
     'year': '1988',
     'journal-title': 'Professional Paper'},
    {'key': '10.1002/ppp.464-BIB14',
     'author': 'Mackay',
     'volume': '20',
     'first-page': '120',
     'year': '1983',
     'journal-title': 'Canadian Journal of Earth Sciences',
     'DOI': '10.1139/e83-012',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB15',
     'author': 'Muller',
     'year': '1947',
     'unstructured': '1947. Permafrost or Permanently Frozen Ground and Related Engineering Problems. U.S. Engineers Office, Strategic Engineering Study, Special Report 62.'},
    {'key': '10.1002/ppp.464-BIB16',
     'author': 'Osterkamp',
     'first-page': '106',
     'year': '1982',
     'unstructured': '1982. Potential impact of a warmer climate on permafrost in Alaska. In Proceedings of the Conference on the Potential Effects of Carbon Dioxide Induced Climatic Change in Alaska, April 7-8, 1982, Miscellaneous Publication 83-1, (ed.). School of Agriculture and Land Resources Management, University of Alaska: Fairbanks, AK; 106-113.',
     'volume-title': 'Proceedings of the Conference on the Potential Effects of Carbon Dioxide Induced Climatic Change in Alaska, April 7-8, 1982, Miscellaneous Publication 83-1'},
    {'key': '10.1002/ppp.464-BIB17',
     'author': 'Osterkamp',
     'first-page': '145',
     'year': '1983',
     'unstructured': '1983. Response of Alaskan permafrost to climate. In Final Proceedings of the 4th International Conference on Permafrost, July 18-23, 1983, Fairbanks, AK. National Academy of Sciences Press: Washington, DC; 145-152.',
     'volume-title': 'Final Proceedings of the 4th International Conference on Permafrost, July 18-23, 1983, Fairbanks, AK'},
    {'key': '10.1002/ppp.464-BIB18',
     'author': 'Osterkamp',
     'year': '1985',
     'unstructured': '1985. Temperature Measurements in Permafrost. Report No. FHWA-AK-RD-Alaska Department of Transportation and Public Facilities, Fairbanks, AK.'},
    {'key': '10.1002/ppp.464-BIB19',
     'author': 'Osterkamp',
     'year': '1988',
     'unstructured': "1988. The ?health? of Alaska's permafrost. In Proceedings of the Alaska Scientific Conference, AAAS-Arctic Div., Oct. 6-8, 1988. University of Alaska: Fairbanks, AK.",
     'volume-title': 'Proceedings of the Alaska Scientific Conference, AAAS-Arctic Div., Oct. 6-8, 1988'},
    {'key': '10.1002/ppp.464-BIB20',
     'author': 'Osterkamp',
     'volume': '75',
     'first-page': '85',
     'year': '1994',
     'journal-title': 'EOS, Transactions of the American Geophysical Union'},
    {'key': '10.1002/ppp.464-BIB21',
     'author': 'Osterkamp',
     'volume': '76',
     'first-page': 'f244',
     'year': '1995',
     'journal-title': 'EOS, Transactions of the American Geophysical Union',
     'DOI': '10.1029/95EO00141',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB22',
     'author': 'Osterkamp',
     'first-page': '2902',
     'year': '2001',
     'unstructured': '2001. Subsea Permafrost. Chapter in Encyclopedia of Ocean Sciences, and (eds), Academic Press: London; 2902-2912.',
     'volume-title': 'Encyclopedia of Ocean Sciences',
     'DOI': '10.1006/rwos.2001.0008',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB23',
     'author': 'Osterkamp',
     'first-page': '863',
     'year': '2003',
     'unstructured': '2003. A thermal history of permafrost in Alaska. In Proceedings of the 8th International Conference on Permafrost, July 21-25, 2003, Zurich, Switzerland. Balkema Publishers: Lisse; 863-868.',
     'volume-title': 'Proceedings of the 8th International Conference on Permafrost, July 21-25, 2003, Zurich, Switzerland'},
    {'key': '10.1002/ppp.464-BIB24',
     'first-page': '497',
     'volume-title': 'Environmental Assessment of the Alaskan Continental Shelf, Annual Reports',
     'volume': '4',
     'author': 'Osterkamp',
     'year': '1980',
     'unstructured': '1980. Subsea permafrost: probing, thermal regime and data analysis. In Environmental Assessment of the Alaskan Continental Shelf, Annual Reports, Vol. 4. National Oceans and Atmospheres Administration, Environmental Research Laboratory: Boulder, CO; 497-677.'},
    {'key': '10.1002/ppp.464-BIB25',
     'author': 'Osterkamp',
     'first-page': '238',
     'year': '1982',
     'unstructured': '1982. Temperature measurements in subsea permafrost off the coast of Alaska. In Proceedings of the 4th Canadian Permafrost Conference, March 2-6, 1981, Roger J.E. Brown Memorial Volume, (ed.). Calgary, Alberta, National Research Council, Ottawa, Canada; 238-248.',
     'volume-title': 'Proceedings of the 4th Canadian Permafrost Conference, March 2-6, 1981, Roger J.E. Brown Memorial Volume'},
    {'key': '10.1002/ppp.464-BIB26',
     'author': 'Osterkamp',
     'volume': '4',
     'first-page': '38',
     'year': '1990',
     'journal-title': 'Journal of Cold Regions Engineering',
     'DOI': '10.1061/(ASCE)0887-381X(1990)4:1(38)',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB27',
     'author': 'Osterkamp',
     'volume': '5',
     'first-page': '13',
     'year': '1981',
     'journal-title': 'Cold Regions Science and Technology',
     'DOI': '10.1016/0165-232X(81)90037-9',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB28',
     'author': 'Osterkamp',
     'volume': '10',
     'first-page': '17',
     'year': '1999',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/(SICI)1099-1530(199901/03)10:1<17::AID-PPP303>3.0.CO;2-4',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB29',
     'author': 'Osterkamp',
     'volume': '11',
     'first-page': '99',
     'year': '1985',
     'journal-title': 'Cold Regions Science and Technology',
     'DOI': '10.1016/0165-232X(85)90010-2',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB30',
     'author': 'Osterkamp',
     'volume': '32',
     'first-page': '303',
     'year': '2000',
     'journal-title': 'Arctic, Antarctic, and Alpine Research',
     'DOI': '10.2307/1552529',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB31',
     'author': 'Pavlov',
     'volume': '5',
     'first-page': '101',
     'year': '1994',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.3430050204',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB32',
     'author': 'Petersen',
     'year': '1984',
     'unstructured': '1984. Well logging in permafrost. Paper presented at the Workshop on Permafrost Geophysics, Golden, Colorado, October 23-24, 1984, extended abstract in Special Report 85-5, U.S. Army CRREL, Hanover, NH.'},
    {'key': '10.1002/ppp.464-BIB33',
     'author': 'Péwé',
     'year': '1982',
     'unstructured': '1982. Geologic hazards of the Fairbanks area, Alaska. Special Report 15. Division of Geological and Geophysical Surveys, College, Alaska.'},
    {'key': '10.1002/ppp.464-BIB34',
     'author': 'Ping',
     'volume': '103',
     'first-page': '28',
     'year': '1998',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/98JD02024',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB35',
     'author': 'Romanovsky',
     'volume': '6',
     'first-page': '313',
     'year': '1995',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.3430060404',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB36',
     'author': 'Romanovsky',
     'volume': '11',
     'first-page': '219',
     'year': '2000',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/1099-1530(200007/09)11:3<219::AID-PPP352>3.0.CO;2-7',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB37',
     'author': 'Romanovsky',
     'first-page': '989',
     'year': '2003',
     'unstructured': '2003. Spatial and temporal variations in the active layer and near-surface permafrost temperatures in Northern Alaska. In Proceedings of the 8th International Conference on Permafrost, July 21-25, 2003, Zurich, Switzerland. Balkema Publishers: Lisse; 989-994.',
     'volume-title': 'Proceedings of the 8th International Conference on Permafrost, July 21-25, 2003, Zurich, Switzerland'},
    {'key': '10.1002/ppp.464-BIB38',
     'author': 'Smith',
     'year': '2001',
     'unstructured': '2001. Response of the active layer and permafrost temperatures to warming during 1998 in the Mackenzie Delta, Northwest Territories and at Canadian Forces Station Alert and Baker Lake, Nunavut. Geological Survey of Canada, Current Research, 2001-E5.'},
    {'key': '10.1002/ppp.464-BIB39',
     'author': 'Steinhart',
     'volume': '15',
     'first-page': '497',
     'year': '1968',
     'journal-title': 'Deep Sea Research'},
    {'key': '10.1002/ppp.464-BIB40',
     'author': 'Walker',
     'year': '2003',
     'journal-title': 'Journal of Geophysical Research-Atmospheres'},
    {'key': '10.1002/ppp.464-BIB41',
     'author': 'Walker',
     'year': '1988',
     'unstructured': '1988. Transient electromagnetics for permafrost. Ph.D. thesis. University of Alaska, Fairbanks, AK.'},
    {'key': '10.1002/ppp.464-BIB42',
     'author': 'Wang',
     'volume': '5',
     'first-page': '87',
     'year': '1994',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.3430050203',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB43',
     'author': 'Zhang',
     'volume': '73',
     'year': '1992',
     'journal-title': 'EOS, Transactions of the American Geophysical Union'},
    {'key': '10.1002/ppp.464-BIB44',
     'author': 'Zhang',
     'volume': '74',
     'first-page': '89',
     'year': '1993',
     'journal-title': 'EOS, Transactions of the American Geophysical Union'},
    {'key': '10.1002/ppp.464-BIB45',
     'author': 'Zhang',
     'volume': '23',
     'first-page': '333',
     'year': '1995',
     'journal-title': 'Cold Regions Science and Technology',
     'DOI': '10.1016/0165-232X(94)00021-O',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB46',
     'author': 'Zhang',
     'volume': '32',
     'first-page': '2075',
     'year': '1996',
     'journal-title': 'Water Resources Research',
     'DOI': '10.1029/96WR00996',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.464-BIB47',
     'author': 'Zhang',
     'volume': '8',
     'first-page': '45',
     'year': '1997',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/(SICI)1099-1530(199701)8:1<45::AID-PPP240>3.0.CO;2-K',
     'doi-asserted-by': 'crossref'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.464',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2018, 3, 30]],
    'date-time': '2018-03-30T18:35:48Z',
    'timestamp': 1522434948000},
   'score': 15.395377,
   'issued': {'date-parts': [[2003]]},
   'references-count': 47,
   'journal-issue': {'published-print': {'date-parts': [[2003, 10]]},
    'issue': '4'},
   'URL': 'http://dx.doi.org/10.1002/ppp.464',
   'relation': {'cites': []},
   'ISSN': ['1045-6740', '1099-1530'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'},
    {'value': '1099-1530', 'type': 'electronic'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 4, 15]],
    'date-time': '2020-04-15T21:57:19Z',
    'timestamp': 1586987839999},
   'reference-count': 2,
   'publisher': 'Wiley',
   'issue': '4',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 1796,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost Periglac. Process.'],
   'published-print': {'date-parts': [[2010, 10]]},
   'DOI': '10.1002/ppp.711',
   'type': 'journal-article',
   'created': {'date-parts': [[2010, 12, 30]],
    'date-time': '2010-12-30T05:33:57Z',
    'timestamp': 1293687237000},
   'page': '366-369',
   'source': 'Crossref',
   'is-referenced-by-count': 2,
   'title': ['Report from the international permafrost association: Third european conference on permafrost (EUCOP III) in Longyearbyen, Svalbard'],
   'prefix': '10.1002',
   'volume': '21',
   'author': [{'given': 'Hanne H.',
     'family': 'Christiansen',
     'sequence': 'first',
     'affiliation': []},
    {'given': 'Bernd',
     'family': 'Etzelmüller',
     'sequence': 'additional',
     'affiliation': []}],
   'member': '311',
   'published-online': {'date-parts': [[2010, 12, 29]]},
   'reference': [{'key': '10.1002/ppp.711-BIB1|cit1',
     'unstructured': 'Berthling I 2010 64'},
    {'key': '10.1002/ppp.711-BIB2|cit2',
     'unstructured': 'Mertes JR Christiansen HH Etzelmüller B 2010 Thermal State of Frozen Ground in a Changing Climate during the IPY'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.711',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2017, 3, 30]],
    'date-time': '2017-03-30T12:16:05Z',
    'timestamp': 1490876165000},
   'score': 15.395377,
   'issued': {'date-parts': [[2010, 10]]},
   'references-count': 2,
   'journal-issue': {'published-print': {'date-parts': [[2010, 10]]},
    'issue': '4'},
   'URL': 'http://dx.doi.org/10.1002/ppp.711',
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 4, 13]],
    'date-time': '2020-04-13T11:23:23Z',
    'timestamp': 1586777003858},
   'reference-count': 4,
   'publisher': 'Wiley',
   'issue': '4',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 2526,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost Periglac. Process.'],
   'published-print': {'date-parts': [[2008, 10]]},
   'DOI': '10.1002/ppp.632',
   'type': 'journal-article',
   'created': {'date-parts': [[2008, 11, 27]],
    'date-time': '2008-11-27T16:09:27Z',
    'timestamp': 1227802167000},
   'page': '393-397',
   'source': 'Crossref',
   'is-referenced-by-count': 1,
   'title': ['Report from the International Permafrost Association: Ninth International Conference on Permafrost and IPA council meetings'],
   'prefix': '10.1002',
   'volume': '19',
   'author': [{'given': 'Jerry',
     'family': 'Brown',
     'sequence': 'first',
     'affiliation': []},
    {'given': 'Hanne H.',
     'family': 'Christiansen',
     'sequence': 'additional',
     'affiliation': []},
    {'given': 'Hans-W.',
     'family': 'Hubberten',
     'sequence': 'additional',
     'affiliation': []}],
   'member': '311',
   'reference': [{'key': '10.1002/ppp.632-BIB1',
     'doi-asserted-by': 'publisher',
     'first-page': '107',
     'DOI': '10.1002/ppp.619',
     'article-title': 'Remote sensing of permafrost-related problems and hazards',
     'volume': '19',
     'author': 'Kaab',
     'year': '2008',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.632-BIB2',
     'unstructured': 'Kane DL, Hinkel KM (eds). 2008a. Proceedings Ninth International Conference on Permafrost, 2008. Institute of Northern Engineering: University of Alaska Fairbanks, 2 volumes; 2140 pp.'},
    {'key': '10.1002/ppp.632-BIB3',
     'unstructured': 'Kane DL, Hinkel KM (eds). 2008b. Ninth International Conference on Permafrost, Extended Abstracts. Institute of Northern Engineering: University of Alaska Fairbanks; 372 pp.'},
    {'key': '10.1002/ppp.632-BIB4',
     'author': 'Muller',
     'first-page': '280',
     'year': '2008',
     'volume-title': 'Frozen in Time: Permafrost and Engineering Problems',
     'DOI': '10.1061/9780784409893',
     'doi-asserted-by': 'crossref'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.632',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2017, 6, 18]],
    'date-time': '2017-06-18T14:07:15Z',
    'timestamp': 1497794835000},
   'score': 15.395377,
   'issued': {'date-parts': [[2008, 10]]},
   'references-count': 4,
   'journal-issue': {'published-print': {'date-parts': [[2008, 10]]},
    'issue': '4'},
   'URL': 'http://dx.doi.org/10.1002/ppp.632',
   'relation': {'cites': []},
   'ISSN': ['1045-6740', '1099-1530'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'},
    {'value': '1099-1530', 'type': 'electronic'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 4, 16]],
    'date-time': '2020-04-16T10:22:29Z',
    'timestamp': 1587032549769},
   'reference-count': 2,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 1614,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2011, 4]]},
   'DOI': '10.1002/ppp.729',
   'type': 'journal-article',
   'created': {'date-parts': [[2011, 6, 14]],
    'date-time': '2011-06-14T06:25:50Z',
    'timestamp': 1308032750000},
   'page': '195-197',
   'source': 'Crossref',
   'is-referenced-by-count': 3,
   'title': ['Report from the international permafrost association: A new strategy and structure for the international permafrost association'],
   'prefix': '10.1002',
   'volume': '22',
   'author': [{'given': 'Hans-Wolfgang',
     'family': 'Hubberten',
     'sequence': 'first',
     'affiliation': []}],
   'member': '311',
   'published-online': {'date-parts': [[2011, 6, 13]]},
   'reference': [{'key': '10.1002/ppp.729-BIB729-bib-0001|ppp729-cit-0001',
     'doi-asserted-by': 'crossref',
     'first-page': '417',
     'DOI': '10.1002/ppp.668',
     'article-title': 'Report from the International Permafrost Association: the Permafrost Young Researchers Network (PYRN)',
     'volume': '20',
     'author': 'Bonnaventure',
     'year': '2009',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.729-BIB729-bib-0002|ppp729-cit-0002',
     'author': 'Brown',
     'first-page': '1',
     'year': '1997',
     'volume-title': 'Washington, DC: U.S. Geological Survey in Cooperation with the Circum-Pacific Council for Energy and Mineral Resources'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.729',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'},
    {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.729',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2018, 8, 1]],
    'date-time': '2018-08-01T19:00:38Z',
    'timestamp': 1533150038000},
   'score': 15.395377,
   'issued': {'date-parts': [[2011, 4]]},
   'references-count': 2,
   'journal-issue': {'published-print': {'date-parts': [[2011, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.729',
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 4, 12]],
    'date-time': '2020-04-12T00:25:46Z',
    'timestamp': 1586651146338},
   'reference-count': 49,
   'publisher': 'Wiley',
   'issue': '3',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 0,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2016, 7]]},
   'DOI': '10.1002/ppp.1878',
   'type': 'journal-article',
   'created': {'date-parts': [[2015, 12, 14]],
    'date-time': '2015-12-14T06:18:39Z',
    'timestamp': 1450073919000},
   'page': '271-284',
   'source': 'Crossref',
   'is-referenced-by-count': 4,
   'title': ['Molards and Their Relation to Landslides Involving Permafrost Failure'],
   'prefix': '10.1002',
   'volume': '27',
   'author': [{'ORCID': 'http://orcid.org/0000-0002-8679-5259',
     'authenticated-orcid': False,
     'given': 'Juan Pablo',
     'family': 'Milana',
     'sequence': 'first',
     'affiliation': [{'name': 'CONICET and the Universidad Nacional de San Juan; InGeo-FCEFyN; San Juan Argentina'}]}],
   'member': '311',
   'published-online': {'date-parts': [[2015, 12, 14]]},
   'reference': [{'key': '10.1002/ppp.1878-BIB0001|ppp1878-cit-0001',
     'doi-asserted-by': 'crossref',
     'first-page': '909',
     'DOI': '10.1046/j.1365-3091.1998.00200.x',
     'article-title': 'Postglacial colluvium in western Norway: Depositional processes, facies and palaeoclimatic record',
     'volume': '45',
     'author': 'Blikra',
     'year': '1998',
     'journal-title': 'Sedimentology'},
    {'key': '10.1002/ppp.1878-BIB0002|ppp1878-cit-0002',
     'author': 'Brideau',
     'first-page': '119',
     'year': '2010',
     'volume-title': 'Yukon Exploration and Geology 2009'},
    {'key': '10.1002/ppp.1878-BIB0003|ppp1878-cit-0003',
     'doi-asserted-by': 'crossref',
     'first-page': '735',
     'DOI': '10.1130/0091-7613(1988)016<0735:LAOTFO>2.3.CO;2',
     'article-title': 'Laboratory analogue of the formation of molards, cones of rock-avalanche debris',
     'volume': '16',
     'author': 'Cassie',
     'year': '1988',
     'journal-title': 'Geology'},
    {'key': '10.1002/ppp.1878-BIB0004|ppp1878-cit-0004',
     'first-page': '328',
     'article-title': 'Climate change and hazardous processes in high mountains',
     'volume': '69',
     'author': 'Clague',
     'year': '2012',
     'journal-title': 'Revista de la Asociación Geológica Argentina'},
    {'key': '10.1002/ppp.1878-BIB0005|ppp1878-cit-0005',
     'unstructured': 'Croce F 2006 Estudio geofísico e importancia hídrica de glaciares cubiertos y de rocas de la cuenca del arroyo Agua Negra 354'},
    {'key': '10.1002/ppp.1878-BIB0006|ppp1878-cit-0006',
     'doi-asserted-by': 'publisher',
     'first-page': '289',
     'DOI': '10.1002/ppp.431',
     'article-title': 'Internal Structure and behaviour of a rock glacier in the Arid Andes of Argentina',
     'volume': '13',
     'author': 'Croce',
     'year': '2002',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1878-BIB0007|ppp1878-cit-0007',
     'unstructured': 'Cruden DM Langenberg W Paulen R 2003 Geology of the Frank Slide and southwestern Alberta 34'},
    {'key': '10.1002/ppp.1878-BIB0008|ppp1878-cit-0008',
     'doi-asserted-by': 'crossref',
     'first-page': '789',
     'DOI': '10.1139/t02-035',
     'article-title': 'Dynamic simulation of the motion of fragmenting rock avalanches',
     'volume': '39',
     'author': 'Davies',
     'year': '2002',
     'journal-title': 'Canadian Geotechnical Journal'},
    {'key': '10.1002/ppp.1878-BIB0009|ppp1878-cit-0009',
     'doi-asserted-by': 'publisher',
     'first-page': 'L06614',
     'DOI': '10.1029/2005GL025165',
     'article-title': 'Sliding of outrunner blocks from submarine landslides',
     'volume': '33',
     'author': 'De Blasio',
     'year': '2006',
     'journal-title': 'Geophysical Research Letters'},
    {'key': '10.1002/ppp.1878-BIB0010|ppp1878-cit-0010',
     'author': 'Deline',
     'year': '2011',
     'volume-title': 'Thermal and Geomorphic Permafrost Response to Present and Future Climate Change in the European Alps'},
    {'issue': '3-4',
     'key': '10.1002/ppp.1878-BIB0012|ppp1878-cit-0012',
     'doi-asserted-by': 'crossref',
     'first-page': '171',
     'DOI': '10.1016/j.geomorph.2008.09.009',
     'article-title': 'Longitudinal ridges in mass movement deposits',
     'volume': '105',
     'author': 'Dufresne',
     'year': '2009',
     'journal-title': 'Geomorphology'},
    {'key': '10.1002/ppp.1878-BIB0013|ppp1878-cit-0013',
     'author': 'Duguay',
     'volume': '163',
     'year': '2005',
     'series-title': 'AGU Geophysical Monograph Series',
     'volume-title': 'Remote Sensing of Northern Hydrology',
     'DOI': '10.1029/163GM06',
     'doi-asserted-by': 'publisher'},
    {'issue': '3-4',
     'key': '10.1002/ppp.1878-BIB0014|ppp1878-cit-0014',
     'doi-asserted-by': 'crossref',
     'first-page': '195',
     'DOI': '10.1016/j.enggeo.2009.08.007',
     'article-title': 'Landslides triggered by the 1949 Khait earthquake, Tajikistan and associated loss of life',
     'volume': '109',
     'author': 'Evans',
     'year': '2009',
     'journal-title': 'Engineering Geology'},
    {'key': '10.1002/ppp.1878-BIB0015|ppp1878-cit-0015',
     'author': 'Gestión Ambiental Consultores (GAC)',
     'year': '2012',
     'volume-title': 'EIA Proyecto expansión Andina 244, CODELCO, Cap. 2.4.7'},
    {'issue': '1-3',
     'key': '10.1002/ppp.1878-BIB0016|ppp1878-cit-0016',
     'doi-asserted-by': 'publisher',
     'first-page': '64',
     'DOI': '10.1016/j.enggeo.2005.06.025',
     'article-title': 'A large rockslide-debris avalanche in cohesive soil at Pink Mountain, northeastern British Columbia, Canada',
     'volume': '83',
     'author': 'Geertsema',
     'year': '2006',
     'journal-title': 'Engineering Geology'},
    {'key': '10.1002/ppp.1878-BIB0017|ppp1878-cit-0017',
     'first-page': '29',
     'article-title': "Géologie et dynamique de l'écroulement du Mount Granier, dans le Massif de Chartreuse, en novembre 1248",
     'volume': '1',
     'author': 'Goguel',
     'year': '1972',
     'journal-title': 'Bulletin du Bureau de Recherche Géologique et Minière'},
    {'key': '10.1002/ppp.1878-BIB0018|ppp1878-cit-0018',
     'doi-asserted-by': 'publisher',
     'first-page': '221',
     'DOI': '10.5194/tc-6-221-2012',
     'article-title': 'Derivation and analysis of a high-resolution estimate of global permafrost zonation',
     'volume': '6',
     'author': 'Gruber',
     'year': '2012',
     'journal-title': 'The Cryosphere'},
    {'key': '10.1002/ppp.1878-BIB0019|ppp1878-cit-0019',
     'unstructured': 'Hungr O. 1990 Mobility of rock avalanches 46 11 20'},
    {'key': '10.1002/ppp.1878-BIB0020|ppp1878-cit-0020',
     'unstructured': 'Intergovernmental Panel on Climate Change 2007 1 73 http://www.ipcc.ch/',
     'DOI': '10.1017/CBO9780511546013',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1878-BIB0021|ppp1878-cit-0021',
     'doi-asserted-by': 'crossref',
     'first-page': '103',
     'DOI': '10.1016/j.enggeo.2013.01.021',
     'article-title': 'Angle of repose of landslide debris deposits induced by 2008 Sichuan Earthquake',
     'volume': '156',
     'author': 'Jun-Jie',
     'year': '2013',
     'journal-title': 'Engineering Geology'},
    {'key': '10.1002/ppp.1878-BIB0022|ppp1878-cit-0022',
     'unstructured': 'Kellerer-Pirklbauer A Lieb G Schoeneich P Deline P Pogliotti P 2011 Thermal and Geomorphic Permafrost Response to Present and Future Climate Change in the European Alps http://www.permanet-alpinespace.eu'},
    {'key': '10.1002/ppp.1878-BIB0023|ppp1878-cit-0023',
     'doi-asserted-by': 'publisher',
     'first-page': 'E11004',
     'DOI': '10.1029/2011JE003865',
     'article-title': 'Static and dynamic angles of repose in loose granular materials under reduced gravity',
     'volume': '116',
     'author': 'Kleinhans',
     'year': '2011',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1878-BIB0024|ppp1878-cit-0024',
     'doi-asserted-by': 'crossref',
     'first-page': '359',
     'DOI': '10.1023/A:1013746917257',
     'article-title': 'Modeling Modern and Late Pleistocene glacio-climatological conditions in the North Chilean Andes (29 S-30 S)',
     'volume': '52',
     'author': 'Kull',
     'year': '2002',
     'journal-title': 'Climate Change'},
    {'issue': 'Bll',
     'key': '10.1002/ppp.1878-BIB0025|ppp1878-cit-0025',
     'doi-asserted-by': 'crossref',
     'first-page': '9301',
     'DOI': '10.1029/JB087iB11p09301',
     'article-title': 'Permafrost, heat flow, and the geothermal regime at Prudhoe Bay, Alaska',
     'volume': '87',
     'author': 'Lachenbruch',
     'year': '1982',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1878-BIB0026|ppp1878-cit-0026',
     'author': 'Luckman',
     'first-page': '119',
     'year': '2001',
     'volume-title': 'Interhemispheric climate linkages',
     'DOI': '10.1016/B978-012472670-3/50011-2',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1878-BIB0027|ppp1878-cit-0027',
     'author': 'Marangunic',
     'first-page': '383',
     'year': '1968',
     'volume-title': 'The Great Alaska Earthquake of 1964'},
    {'key': '10.1002/ppp.1878-BIB0028|ppp1878-cit-0028',
     'unstructured': 'McConnell RG Brock RW 1904 Report on the great landslide at Frank, Alberta',
     'DOI': '10.4095/300540',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1878-BIB0029|ppp1878-cit-0029',
     'unstructured': 'Milana JP 2006 Linea base de la criosfera http://seia.sea.gob.cl, Expte 1048260, Addenda, 6316_2005_11_13_OD/Anexo III-A.pdf'},
    {'key': '10.1002/ppp.1878-BIB0030|ppp1878-cit-0030',
     'author': 'Milana',
     'first-page': '192',
     'year': '2011',
     'volume-title': 'Hielo y Desierto - Los Glaciares Aridos de San Juan'},
    {'issue': '3',
     'key': '10.1002/ppp.1878-BIB0031|ppp1878-cit-0031',
     'first-page': '310',
     'article-title': 'Las propiedades mecánicas del permafrost de Glaciares de Roca en relación a su origen y contenido de hielo, Sistema El Tapado, IV Región',
     'volume': '63',
     'author': 'Milana',
     'year': '2008',
     'journal-title': 'Revista de la Asociación Geológica Argentina'},
    {'key': '10.1002/ppp.1878-BIB0032|ppp1878-cit-0032',
     'first-page': '205',
     'article-title': 'Trends and jumps in the annual precipitation in South America, south of 15S',
     'volume': '11',
     'author': 'Minetti',
     'year': '1998',
     'journal-title': 'Atmosfera'},
    {'key': '10.1002/ppp.1878-BIB0033|ppp1878-cit-0033',
     'first-page': '119',
     'article-title': 'Non-linear trends and low frequency oscillations in annual precipitation over Argentina and Chile, 1931-1999',
     'volume': '16',
     'author': 'Minetti',
     'year': '2003',
     'journal-title': 'Atmosfera'},
    {'key': '10.1002/ppp.1878-BIB0034|ppp1878-cit-0034',
     'doi-asserted-by': 'crossref',
     'first-page': '595',
     'DOI': '10.1190/1.1438343',
     'article-title': 'Debris flow outrunner blocks, glide tracks, and pressure ridges identified on the Nigerian continental slope using 3-D seismic coherency',
     'volume': '18',
     'author': 'Nissen',
     'year': '1999',
     'journal-title': 'Leading Edge'},
    {'key': '10.1002/ppp.1878-BIB0035|ppp1878-cit-0035',
     'author': 'Paterson',
     'first-page': '480',
     'year': '1994',
     'edition': '3',
     'volume-title': 'The Physics of Glaciers'},
    {'key': '10.1002/ppp.1878-BIB0037|ppp1878-cit-0037',
     'author': 'Reineck',
     'first-page': '551',
     'year': '1979',
     'edition': '2',
     'volume-title': 'Depositional Sedimentary Environments'},
    {'key': '10.1002/ppp.1878-BIB0038|ppp1878-cit-0038',
     'author': 'Rivera',
     'first-page': '274',
     'year': '2000',
     'volume-title': 'Proceedings Sixth International Conference on Southern Hemisphere Meteorology and Oceanography, Santiago Chile'},
    {'key': '10.1002/ppp.1878-BIB0039|ppp1878-cit-0039',
     'doi-asserted-by': 'crossref',
     'first-page': '63',
     'DOI': '10.1002/joc.3370110105',
     'article-title': 'Synoptic aspects of the central Chile rainfall variability associated with the Southern Oscillation',
     'volume': '11',
     'author': 'Rutllant',
     'year': '1991',
     'journal-title': 'International Journal of Climatology'},
    {'key': '10.1002/ppp.1878-BIB0040|ppp1878-cit-0040',
     'doi-asserted-by': 'crossref',
     'first-page': '59',
     'DOI': '10.1002/ppp.3430020110',
     'article-title': 'Global solar radiation, soil temperature and permafrost in the Central Andes, Argentina: a progress report',
     'volume': '2',
     'author': 'Schrott',
     'year': '1991',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '4',
     'key': '10.1002/ppp.1878-BIB0041|ppp1878-cit-0041',
     'doi-asserted-by': 'crossref',
     'first-page': '657',
     'DOI': '10.1130/GES00131.1',
     'article-title': 'Structural analysis and analogue modeling of the kinemetics and dynamics of rockslide avalanches',
     'volume': '4',
     'author': 'Shea',
     'year': '2008',
     'journal-title': 'Geosphere'},
    {'key': '10.1002/ppp.1878-BIB0042|ppp1878-cit-0042',
     'doi-asserted-by': 'crossref',
     'first-page': '1639',
     'DOI': '10.1126/science.154.3757.1639',
     'article-title': 'Sherman Landslide, Alaska',
     'volume': '154',
     'author': 'Shreve',
     'year': '1966',
     'journal-title': 'Science'},
    {'key': '10.1002/ppp.1878-BIB0043|ppp1878-cit-0043',
     'author': 'Shreve',
     'volume': '1603',
     'first-page': '395',
     'year': '1968',
     'volume-title': 'The Great Alaska Earthquake of 1964 (Hydrology Volume)'},
    {'key': '10.1002/ppp.1878-BIB0044|ppp1878-cit-0044',
     'doi-asserted-by': 'crossref',
     'first-page': '573',
     'DOI': '10.1007/BF00569941',
     'article-title': 'Morphology and emplacement of an unusual debris-avalanche deposit at Jocotitlán volcano, Central Mexico',
     'volume': '54',
     'author': 'Siebe',
     'year': '1992',
     'journal-title': 'Bulletin of Volcanology'},
    {'key': '10.1002/ppp.1878-BIB0045|ppp1878-cit-0045',
     'unstructured': 'Strom AL Abdrakhmatov KE 2009 Rockslides and rock avalanches of the Kokomeren river basin (Central Tien Shan) http://www.iclhq.org/Summer_School_Guidebook-2009.pdf'},
    {'key': '10.1002/ppp.1878-BIB0046|ppp1878-cit-0046',
     'doi-asserted-by': 'crossref',
     'first-page': '321',
     'DOI': '10.1016/j.coldregions.2008.08.009',
     'article-title': 'Indicators of present global warming through changes in active layer-thickness, estimation of thermal diffusivity and geomorphological observations in the Morenas Coloradas rockglacier, Central Andes of Mendoza, Argentina',
     'volume': '55',
     'author': 'Trombotto',
     'year': '2009',
     'journal-title': 'Cold Regions Science and Technology'},
    {'key': '10.1002/ppp.1878-BIB0047|ppp1878-cit-0047',
     'author': 'Vuille',
     'volume': '34',
     'year': '2007',
     'article-title': 'High-latitude forcing of regional aridification along the subtropical west coast of South America',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2007GL031899',
     'doi-asserted-by': 'publisher'},
    {'key': '10.1002/ppp.1878-BIB0048|ppp1878-cit-0048',
     'author': 'Washburn',
     'year': '1973',
     'volume-title': 'Periglacial Processes and Environments'},
    {'issue': '5',
     'key': '10.1002/ppp.1878-BIB0036|ppp1878-cit-0036',
     'doi-asserted-by': 'publisher',
     'first-page': '589',
     'DOI': '10.1139/t2012-021',
     'article-title': 'Observations from the large, rapid Yigong rock slide - debris avalanche, southeast Tibet',
     'volume': '49',
     'author': 'Xu',
     'year': '2012',
     'journal-title': 'Canadian Geotechnical Journal'},
    {'key': '10.1002/ppp.1878-BIB0049|ppp1878-cit-0049',
     'author': 'Zhang',
     'first-page': '149',
     'year': '2002',
     'volume-title': 'Catastrophic landslides: effects, occurrence, and mechanisms',
     'DOI': '10.1130/REG15-p149',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1878-BIB0050|ppp1878-cit-0050',
     'author': 'Zischg',
     'year': '2012',
     'volume-title': 'Proceedings 12th Congress INTERPRAEVENT 2012 - Grenoble/France'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1878',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2019, 9, 2]],
    'date-time': '2019-09-02T12:36:46Z',
    'timestamp': 1567427806000},
   'score': 15.395377,
   'subtitle': ['Molards and permafrost degradation'],
   'issued': {'date-parts': [[2015, 12, 14]]},
   'references-count': 49,
   'journal-issue': {'published-print': {'date-parts': [[2016, 7]]},
    'issue': '3'},
   'URL': 'http://dx.doi.org/10.1002/ppp.1878',
   'archive': ['Portico'],
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
  {'indexed': {'date-parts': [[2020, 4, 20]],
    'date-time': '2020-04-20T06:43:52Z',
    'timestamp': 1587365032686},
   'reference-count': 67,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 908,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2013, 4]]},
   'DOI': '10.1002/ppp.1768',
   'type': 'journal-article',
   'created': {'date-parts': [[2013, 3, 7]],
    'date-time': '2013-03-07T13:43:37Z',
    'timestamp': 1362663817000},
   'page': '138-145',
   'source': 'Crossref',
   'is-referenced-by-count': 13,
   'title': ['Recent Progress (2007-2012) in Permafrost Isotope Geochemistry'],
   'prefix': '10.1002',
   'volume': '24',
   'author': [{'given': 'Denis',
     'family': 'Lacelle',
     'sequence': 'first',
     'affiliation': [{'name': 'Department of Geography; University of Ottawa; Ottawa; Ontario; Canada'}]},
    {'given': 'Yurij K.',
     'family': "Vasil'chuk",
     'sequence': 'additional',
     'affiliation': [{'name': 'Department of Geography and Geology; Lomonosov Moscow State University; Moscow; Russia'}]}],
   'member': '311',
   'published-online': {'date-parts': [[2013, 3, 7]]},
   'reference': [{'key': '10.1002/ppp.1768-BIB0001|ppp1768-cit-0001',
     'doi-asserted-by': 'crossref',
     'first-page': '574',
     'DOI': '10.1007/s10040-003-0270-8',
     'article-title': 'Hydrogeochemistry of the permafrost zone in the central part of the Yakutian diamond-bearing province, Russia',
     'volume': '11',
     'author': 'Alexeev',
     'year': '2003',
     'journal-title': 'Hydrogeology Journal'},
    {'key': '10.1002/ppp.1768-BIB0002|ppp1768-cit-0002',
     'author': 'Barrett',
     'volume': '112',
     'year': '2007',
     'article-title': 'Biogeochemical stoichiometry of Antarctica Dry Valley ecosystems',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/2005JG000141',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1768-BIB0003|ppp1768-cit-0003',
     'doi-asserted-by': 'crossref',
     'first-page': '2349',
     'DOI': '10.5194/hess-13-2349-2009',
     'article-title': 'Spatial variation in soil active-layer geochemistry across hydrology margins in polar desert ecosystems',
     'volume': '13',
     'author': 'Barrett',
     'year': '2009',
     'journal-title': 'Hydrology and Earth System Sciences'},
    {'key': '10.1002/ppp.1768-BIB0004|ppp1768-cit-0004',
     'doi-asserted-by': 'crossref',
     'first-page': '12pp',
     'DOI': '10.1029/2009GC002548',
     'article-title': 'Ratio of 36Cl/Cl in ground ice of east Siberia and its application for chronometry',
     'volume': '10',
     'author': 'Blinov',
     'year': '2009',
     'journal-title': 'Geochemistry, Geophysics, Geosystems'},
    {'key': '10.1002/ppp.1768-BIB0005|ppp1768-cit-0005',
     'doi-asserted-by': 'crossref',
     'first-page': '61',
     'DOI': '10.1126/science.1172768',
     'article-title': 'Evidence for calcium carbonate at the Mars Phoenix landing site',
     'volume': '325',
     'author': 'Boynton',
     'year': '2009',
     'journal-title': 'Science'},
    {'key': '10.1002/ppp.1768-BIB0006|ppp1768-cit-0006',
     'author': 'Brosius',
     'volume': '117',
     'year': '2012',
     'article-title': 'Using the deuterium isotope composition of permafrost meltwater to constrain thermokarst lake contributions to atmospheric CH4 during the last deglaciation',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/2011JG001810',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1768-BIB0007|ppp1768-cit-0007',
     'doi-asserted-by': 'crossref',
     'first-page': '909',
     'DOI': '10.1139/e88-087',
     'article-title': 'Evidence for recent temperature-induced water migration into permafrost from tritium content of ground ice near Mayo, Yukon Territory, Canada',
     'volume': '25',
     'author': 'Burn',
     'year': '1988',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1768-BIB0008|ppp1768-cit-0008',
     'doi-asserted-by': 'crossref',
     'first-page': '239',
     'DOI': '10.1016/j.yqres.2007.05.003',
     'article-title': 'Molar gas ratios of air entrapped in ice: a new tool to determine the origin of relict massive ground ice bodies in permafrost',
     'volume': '68',
     'author': 'Cardyn',
     'year': '2007',
     'journal-title': 'Quaternary Research'},
    {'key': '10.1002/ppp.1768-BIB0009|ppp1768-cit-0009',
     'doi-asserted-by': 'crossref',
     'first-page': '127',
     'DOI': '10.4296/cwrj3402127',
     'article-title': 'Progress in Canadian snow and frozen ground hydrology, 2003-2007',
     'volume': '34',
     'author': 'Carey',
     'year': '2009',
     'journal-title': 'Canadian Water Resources Journal'},
    {'key': '10.1002/ppp.1768-BIB0010|ppp1768-cit-0010',
     'doi-asserted-by': 'crossref',
     'first-page': '57',
     'DOI': '10.1016/0165-232X(83)90017-4',
     'article-title': 'The mechanism of repeated-segregation for the formation of thick layered ground ice',
     'volume': '8',
     'author': 'Cheng',
     'year': '1983',
     'journal-title': 'Cold Regions Science and Technology'},
    {'key': '10.1002/ppp.1768-BIB0011|ppp1768-cit-0011',
     'doi-asserted-by': 'crossref',
     'first-page': '735',
     'DOI': '10.1111/j.1745-6584.2000.tb02709.x',
     'article-title': 'Recharge and preservation of Laurentide glacial melt water in the Canadian Shield',
     'volume': '38',
     'author': 'Clark',
     'year': '2000',
     'journal-title': 'Groundwater'},
    {'key': '10.1002/ppp.1768-BIB0012|ppp1768-cit-0012',
     'unstructured': 'Clark ID Wilk M Lacelle D 2010 Environmental fate of tritium in soil and vegetation'},
    {'key': '10.1002/ppp.1768-BIB0013|ppp1768-cit-0013',
     'volume': '585',
     'first-page': '140',
     'year': '2005',
     'article-title': 'Scientific results from the Mallik 2002 Gas Hydrate Production Research Well Program, Mackenzie Delta, Northwest Territories, Canada',
     'journal-title': 'Geological Survey of Canada Bulletin'},
    {'key': '10.1002/ppp.1768-BIB0014|ppp1768-cit-0014',
     'doi-asserted-by': 'crossref',
     'first-page': '190',
     'DOI': '10.1016/j.earscirev.2010.04.002',
     'article-title': 'The principles of cryostratigraphy',
     'volume': '101',
     'author': 'French',
     'year': '2010',
     'journal-title': 'Earth-Science Reviews'},
    {'key': '10.1002/ppp.1768-BIB0015|ppp1768-cit-0015',
     'doi-asserted-by': 'crossref',
     'first-page': '169',
     'DOI': '10.1002/hyp.7196',
     'article-title': 'Impacts of permafrost degradation on Arctic river biogeochemistry',
     'volume': '23',
     'author': 'Frey',
     'year': '2009',
     'journal-title': 'Hydrological Processes'},
    {'key': '10.1002/ppp.1768-BIB0016|ppp1768-cit-0016',
     'doi-asserted-by': 'crossref',
     'first-page': '26',
     'DOI': '10.1002/ppp.714',
     'article-title': 'Origin and characteristics of massive ground ice on Hershel Island (western Canadian Arctic) as revealed by stable water isotope and hydrochemical signatures',
     'volume': '22',
     'author': 'Fritz',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0017|ppp1768-cit-0017',
     'doi-asserted-by': 'crossref',
     'first-page': '28',
     'DOI': '10.1016/j.palaeo.2011.12.015',
     'article-title': 'Eastern Beringia and beyond: late Wisconsinan and Holocene landscape dynamics along the Yukon Coastal Plain, Canada',
     'volume': '319-320',
     'author': 'Fritz',
     'year': '2012',
     'journal-title': 'Palaegeography, Palaeoclimatology, Palaeoecology'},
    {'key': '10.1002/ppp.1768-BIB0018|ppp1768-cit-0018',
     'author': 'Fujino',
     'first-page': '77',
     'year': '1978',
     'volume-title': 'In Joint Studies on Physical and Biological Environments in the Permafrost'},
    {'key': '10.1002/ppp.1768-BIB0019|ppp1768-cit-0019',
     'doi-asserted-by': 'crossref',
     'first-page': '1547',
     'DOI': '10.1016/j.quascirev.2007.04.004',
     'article-title': 'Dating of syngenetic ice wedges in permafrost with 36Cl',
     'volume': '26',
     'author': 'Gilichinsky',
     'year': '2007',
     'journal-title': 'Quaternary Science Reviews'},
    {'key': '10.1002/ppp.1768-BIB0020|ppp1768-cit-0020',
     'doi-asserted-by': 'crossref',
     'first-page': '19',
     'DOI': '10.1089/ast.2011.0700',
     'article-title': 'Sulfuric acid speleogenesis associated with a glacially driven groundwater system - paleo-spring “pipes” at Borup Fjord Pass, Nunavut',
     'volume': '12',
     'author': 'Grasby',
     'year': '2012',
     'journal-title': 'Astrobiology'},
    {'key': '10.1002/ppp.1768-BIB0021|ppp1768-cit-0021',
     'doi-asserted-by': 'crossref',
     'first-page': '4008',
     'DOI': '10.1016/j.gca.2008.05.058',
     'article-title': 'Canadian Shield brine from the Con Mine, Yellowknife, NT, Canada: noble gas evidence for an evaporated Palaeozoic seawater origin mixed with glacial meltwater and Holocene recharge',
     'volume': '72',
     'author': 'Greene',
     'year': '2008',
     'journal-title': 'Geochimica et Cosmochimica Acta'},
    {'key': '10.1002/ppp.1768-BIB0022|ppp1768-cit-0022',
     'doi-asserted-by': 'crossref',
     'first-page': '64',
     'DOI': '10.1126/science.1172466',
     'article-title': 'Detection of perchlorate and the soluble chemistry of martian soil at the Phoenix Lander site',
     'volume': '325',
     'author': 'Hecht',
     'year': '2009',
     'journal-title': 'Science'},
    {'key': '10.1002/ppp.1768-BIB0023|ppp1768-cit-0023',
     'author': 'Jorgenson',
     'volume': '33',
     'year': '2006',
     'article-title': 'Abrupt increase in permafrost degradation in Arctic Alaska',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2005GL024960',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1768-BIB0024|ppp1768-cit-0024',
     'doi-asserted-by': 'crossref',
     'first-page': '35',
     'DOI': '10.1017/S0022143000011771',
     'article-title': 'Melting and refreezing at the glacier sole and the isotopic composition of the ice',
     'volume': '28',
     'author': 'Jouzel',
     'year': '1982',
     'journal-title': 'Journal of Glaciology'},
    {'key': '10.1002/ppp.1768-BIB0025|ppp1768-cit-0025',
     'doi-asserted-by': 'crossref',
     'first-page': '84',
     'DOI': '10.1657/1523-0430(2007)39[84:GOSASO]2.0.CO;2',
     'article-title': 'Geochemistry of soils and streams on surfaces of varying ages in Arctic Alaska',
     'volume': '39',
     'author': 'Keller',
     'year': '2007',
     'journal-title': 'Arctic, Antarctic, and Alpine Research'},
    {'key': '10.1002/ppp.1768-BIB0026|ppp1768-cit-0026',
     'doi-asserted-by': 'crossref',
     'first-page': '76',
     'DOI': '10.1016/j.chemgeo.2010.02.013',
     'article-title': 'Stream geochemistry as an indicator of increasing permafrost thaw depth in an arctic watershed',
     'volume': '273',
     'author': 'Keller',
     'year': '2010',
     'journal-title': 'Chemical Geology'},
    {'key': '10.1002/ppp.1768-BIB0027|ppp1768-cit-0027',
     'author': 'Kleinberg',
     'volume': '108',
     'year': '2003',
     'article-title': 'Deep sea NMR: Methane hydrate growth habit in porous media and its relationship to hydraulic permeability, deposit accumulation, and submarine slope stability',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/2003JB002389',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1768-BIB0028|ppp1768-cit-0028',
     'doi-asserted-by': 'crossref',
     'first-page': '275',
     'DOI': '10.1002/ppp.458',
     'article-title': 'Ground ice and soluble cations in near-surface permafrost, Inuvik, Northwest Territories, Canada',
     'volume': '143',
     'author': 'Kokelj',
     'year': '2003',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0029|ppp1768-cit-0029',
     'doi-asserted-by': 'crossref',
     'first-page': '37',
     'DOI': '10.1139/e04-089',
     'article-title': 'Geochemistry of the active layer and near-surface permafrost, Mackenzie delta region, Northwest Territories, Canada',
     'volume': '42',
     'author': 'Kokelj',
     'year': '2005',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1768-BIB0030|ppp1768-cit-0030',
     'doi-asserted-by': 'crossref',
     'first-page': '171',
     'DOI': '10.1002/ppp.417',
     'article-title': 'Physical and chemical characteristics of the active layer and permafrost, Herschel Island, western Arctic coast, Canada',
     'volume': '13',
     'author': 'Kokelj',
     'year': '2002',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0031|ppp1768-cit-0031',
     'doi-asserted-by': 'crossref',
     'first-page': '173',
     'DOI': '10.1002/ppp.642',
     'article-title': 'Origin and polycyclic behavior of tundra thaw slumps, Mackenzie Delta region, Northwest Territories, Canada',
     'volume': '20',
     'author': 'Kokelj',
     'year': '2009',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0032|ppp1768-cit-0032',
     'author': 'Kvenvolden',
     'volume': '124',
     'first-page': '3',
     'year': '2001',
     'volume-title': 'In Natural Gas Hydrates: Occurrence, Distribution, and Dynamics, AGU Monograph Series',
     'DOI': '10.1029/GM124p0003',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1768-BIB0033|ppp1768-cit-0033',
     'doi-asserted-by': 'crossref',
     'first-page': '13',
     'DOI': '10.1002/ppp.712',
     'article-title': 'On the δ18O, δD and D-excess relations in meteoric precipitation and during equilibrium freezing: theoretical approach and field examples',
     'volume': '22',
     'author': 'Lacelle',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0034|ppp1768-cit-0034',
     'doi-asserted-by': 'crossref',
     'first-page': '249',
     'DOI': '10.1016/j.yqres.2007.05.002',
     'article-title': 'Nature and origin of a Pleistocene-age massive ground ice body exposed in the Chapman Lake moraine complex central Yukon Territory',
     'volume': '68',
     'author': 'Lacelle',
     'year': '2007a',
     'journal-title': 'Quaternary Research'},
    {'key': '10.1002/ppp.1768-BIB0035|ppp1768-cit-0035',
     'doi-asserted-by': 'crossref',
     'first-page': '157',
     'DOI': '10.1016/j.chemgeo.2007.05.021',
     'article-title': 'Acid drainage generation and seasonal recycling in disturbed permafrost near Eagle Plains, northern Yukon Territory, Canada',
     'volume': '243',
     'author': 'Lacelle',
     'year': '2007b',
     'journal-title': 'Chemical Geology'},
    {'key': '10.1002/ppp.1768-BIB0036|ppp1768-cit-0036',
     'doi-asserted-by': 'crossref',
     'first-page': '1139',
     'DOI': '10.1139/E08-063',
     'article-title': 'Weathering regime and geochemical conditions in a polar desert environment, Haughton impact structure region, Devon Island, Canada',
     'volume': '45',
     'author': 'Lacelle',
     'year': '2008',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1768-BIB0037|ppp1768-cit-0037',
     'doi-asserted-by': 'crossref',
     'first-page': '3401',
     'DOI': '10.1016/j.quascirev.2009.09.013',
     'article-title': 'Burial and preservation a 30,000 year old perennial snowbank in Red Creek valley, Ogilvie Mountains, central Yukon, Canada',
     'volume': '28',
     'author': 'Lacelle',
     'year': '2009',
     'journal-title': 'Quaternary Science Reviews'},
    {'key': '10.1002/ppp.1768-BIB0038|ppp1768-cit-0038',
     'doi-asserted-by': 'crossref',
     'first-page': '46',
     'DOI': '10.1016/j.epsl.2011.03.023',
     'article-title': 'Geomicrobiology and occluded O2-CO2-Ar gas analyses provide evidence of microbial respiration in ancient terrestrial ground ice',
     'volume': '306',
     'author': 'Lacelle',
     'year': '2011',
     'journal-title': 'Earth and Planetary Science Letters'},
    {'key': '10.1002/ppp.1768-BIB0039|ppp1768-cit-0039',
     'doi-asserted-by': 'crossref',
     'first-page': '217',
     'DOI': '10.1016/j.yqres.2012.05.007',
     'article-title': 'Revised 14C dating of ice wedge growth in interior Alaska (USA) to MIS2 reveals cold paleoclimate and carbon recycling in ancient permafrost terrain',
     'volume': '78',
     'author': 'Lachniet',
     'year': '2012',
     'journal-title': 'Quaternary Research'},
    {'key': '10.1002/ppp.1768-BIB0040|ppp1768-cit-0040',
     'doi-asserted-by': 'crossref',
     'first-page': '689',
     'DOI': '10.1007/s12205-011-0009-3',
     'article-title': 'Review on the gas hydrate development and production as a new energy resource',
     'volume': '15',
     'author': 'Lee',
     'year': '2011',
     'journal-title': 'KSCE Journal of Civil Engineering'},
    {'key': '10.1002/ppp.1768-BIB0041|ppp1768-cit-0041',
     'author': 'Levy',
     'volume': '39',
     'year': '2012',
     'article-title': 'Hypersaline “wet patches” in Taylor Valley, Antarctica',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2012GL050898',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1768-BIB0042|ppp1768-cit-0042',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1111/j.1467-8306.1972.tb00839.x',
     'article-title': 'The world of underground ice',
     'volume': '62',
     'author': 'Mackay',
     'year': '1972',
     'journal-title': 'Annals of the Association of American Geographers'},
    {'key': '10.1002/ppp.1768-BIB0043|ppp1768-cit-0043',
     'doi-asserted-by': 'crossref',
     'first-page': '996',
     'DOI': '10.1139/e80-100',
     'article-title': 'The origin of hummocks, western Arctic coast, Canada',
     'volume': '17',
     'author': 'Mackay',
     'year': '1980',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1768-BIB0044|ppp1768-cit-0044',
     'author': 'McKay',
     'first-page': '219',
     'year': '2005',
     'article-title': 'Polar lakes, streams and springs as analogs for the hydrological cycle on Mars. In Water on Mars and Life, Tetsuya Tokano (ed)',
     'journal-title': 'Advances in Astrobiology and Biogeophysics'},
    {'key': '10.1002/ppp.1768-BIB0045|ppp1768-cit-0045',
     'author': 'Navarro-Gonzalez',
     'volume': '115',
     'year': '2010',
     'article-title': 'Reanalysis of the Viking results suggests perchlorate and organics at mid-latitudes on Mars',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/2010JE003599',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1768-BIB0046|ppp1768-cit-0046',
     'doi-asserted-by': 'crossref',
     'first-page': '403',
     'DOI': '10.1111/j.1365-2117.2005.00272.x',
     'article-title': 'Migration pathways in the Central North Slope foreland basin, Alaska USA: solute and thermal constraints on fluid flow simulations',
     'volume': '17',
     'author': 'Nunn',
     'year': '2005',
     'journal-title': 'Basin Research'},
    {'key': '10.1002/ppp.1768-BIB0047|ppp1768-cit-0047',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1016/j.apgeochem.2005.08.004',
     'article-title': 'A geochemical evaluation of perennial spring activity and associated mineral precipitates at Expedition Fjord, Axel Heiberg Island, Canadian high Arctic',
     'volume': '21',
     'author': 'Omelon',
     'year': '2006',
     'journal-title': 'Applied Geochemistry'},
    {'key': '10.1002/ppp.1768-BIB0048|ppp1768-cit-0048',
     'doi-asserted-by': 'crossref',
     'first-page': '84',
     'DOI': '10.1002/ppp.667',
     'article-title': 'Paleoclimatic information from stable water isotopes of Holocene ice wedges on the Dmitrii Laptev Strait, northeast Siberia, Russia',
     'volume': '22',
     'author': 'Opel',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0049|ppp1768-cit-0049',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1139/e98-097',
     'article-title': 'Perennial spring occurrence in the Expedition Fjord area of western Axel Heiberg Island, Canadian high Arctic',
     'volume': '36',
     'author': 'Pollard',
     'year': '1999',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'issue': '12',
     'key': '10.1002/ppp.1768-BIB0067|ppp1768-cit-0067',
     'doi-asserted-by': 'crossref',
     'DOI': '10.1029/2012GL051445',
     'article-title': 'Transient nature of Arctic spring systems driven by subglacial meltwater',
     'volume': '39',
     'author': 'Scheidegger',
     'year': '2012',
     'journal-title': 'Geophysical Research Letters'},
    {'key': '10.1002/ppp.1768-BIB0050|ppp1768-cit-0050',
     'doi-asserted-by': 'crossref',
     'first-page': '589',
     'DOI': '10.1016/j.apgeochem.2006.12.005',
     'article-title': 'Geochemistry and stable isotopic signatures, including chlorine and bromine isotopes, of the deep groundwaters of the Siberian Platform, Russia',
     'volume': '22',
     'author': 'Shouakar-Stash',
     'year': '2007',
     'journal-title': 'Applied Geochemistry'},
    {'key': '10.1002/ppp.1768-BIB0051|ppp1768-cit-0051',
     'author': 'Shumskii',
     'year': '1959',
     'volume-title': 'In Principles of Geocryology, Part I. General Geocryology'},
    {'key': '10.1002/ppp.1768-BIB0052|ppp1768-cit-0052',
     'author': 'Slagoda',
     'first-page': '415',
     'year': '2012',
     'volume-title': 'In Proceedings of the Tenth International Conference'},
    {'key': '10.1002/ppp.1768-BIB0053|ppp1768-cit-0053',
     'doi-asserted-by': 'crossref',
     'first-page': '58',
     'DOI': '10.1126/science.1172339',
     'article-title': 'H2O at the Phoenix landing site',
     'volume': '325',
     'author': 'Smith',
     'year': '2009',
     'journal-title': 'Science'},
    {'key': '10.1002/ppp.1768-BIB0054|ppp1768-cit-0054',
     'doi-asserted-by': 'crossref',
     'first-page': '117',
     'DOI': '10.1002/ppp.690',
     'article-title': 'Thermal state of permafrost in North America: a contribution to the International Polar Year',
     'volume': '21',
     'author': 'Smith',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0055|ppp1768-cit-0055',
     'doi-asserted-by': 'crossref',
     'first-page': '49',
     'DOI': '10.1002/ppp.680',
     'article-title': 'Investigation of ice wedge infilling processes using stable oxygen and hydrogen isotopes, crystallography and occluded gases (O2, N2, Ar)',
     'volume': '22',
     'author': 'St-Jean',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0056|ppp1768-cit-0056',
     'doi-asserted-by': 'crossref',
     'first-page': '80',
     'DOI': '10.1016/j.jhydrol.2009.04.013',
     'article-title': 'Hydrogeochemistry of groundwaters in and below the base of thick permafrost at Lupin, Nunavut, Canada',
     'volume': '373',
     'author': 'Stotler',
     'year': '2009',
     'journal-title': 'Journal of Hydrology'},
    {'key': '10.1002/ppp.1768-BIB0057|ppp1768-cit-0057',
     'doi-asserted-by': 'crossref',
     'first-page': '348',
     'DOI': '10.1111/j.1745-6584.2010.00724.x',
     'article-title': 'Hydrogeology, chemical and microbial activity measurement through deep permafrost',
     'volume': '49',
     'author': 'Stotler',
     'year': '2011',
     'journal-title': 'Groundwater'},
    {'key': '10.1002/ppp.1768-BIB0058|ppp1768-cit-0058',
     'doi-asserted-by': 'crossref',
     'first-page': '547',
     'DOI': '10.1038/261547a0',
     'article-title': 'Permafrost oxygen isotope ratios and chronology of three cores from Antarctica',
     'volume': '261',
     'author': 'Stuiver',
     'year': '1976',
     'journal-title': 'Nature'},
    {'key': '10.1002/ppp.1768-BIB0059|ppp1768-cit-0059',
     'doi-asserted-by': 'crossref',
     'first-page': '91',
     'DOI': '10.1002/ppp.1732',
     'article-title': 'Origin and flow dynamics of perennial groundwater in continuous permafrost terrain using isotopes and noble gases: case study of the Fishing River, northern Yukon, Canada',
     'volume': '23',
     'author': 'Utting',
     'year': '2012',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1768-BIB0060|ppp1768-cit-0060',
     'first-page': '488pp',
     'year': '2007',
     'volume-title': 'Palynology and Chronology of Polygonal Ice Wedge Complexes in Russia Permafrost Area'},
    {'key': '10.1002/ppp.1768-BIB0061|ppp1768-cit-0061',
     'author': "Vasil'chuk",
     'first-page': '1809',
     'year': '2008',
     'volume-title': 'In Proceedings, 9th International Conference on Permafrost'},
    {'key': '10.1002/ppp.1768-BIB0062|ppp1768-cit-0062',
     'doi-asserted-by': 'crossref',
     'first-page': '637',
     'DOI': '10.1016/S0168-583X(00)00212-3',
     'article-title': 'AMS-dating of Late Pleistocene and Holocene syngenetic ice-wedges',
     'volume': '172',
     'author': "Vasil'chuk",
     'year': '2000a',
     'journal-title': 'Nuclear Instruments and Methods in Physics Research Section B: Beam Interactions with Materials and Atoms'},
    {'key': '10.1002/ppp.1768-BIB0063|ppp1768-cit-0063',
     'doi-asserted-by': 'crossref',
     'first-page': '237',
     'DOI': '10.1016/S0012-821X(00)00122-9',
     'article-title': 'First direct dating of Late Pleistocene ice-wedges by AMS',
     'volume': '179',
     'author': "Vasil'chuk",
     'year': '2000b',
     'journal-title': 'Earth and Planetary Science Letters'},
    {'key': '10.1002/ppp.1768-BIB0064|ppp1768-cit-0064',
     'doi-asserted-by': 'crossref',
     'first-page': '243',
     'DOI': '10.1017/S0033822200019755',
     'article-title': 'AMS 14C Dating of Pollen Concentrate from Late Pleistocene Ice Wedges from the Bison and Seyaha Sites in Siberia',
     'volume': '47',
     'author': "Vasil'chuk",
     'year': '2005',
     'journal-title': 'Radiocarbon'},
    {'key': '10.1002/ppp.1768-BIB0065|ppp1768-cit-0065',
     'doi-asserted-by': 'crossref',
     'first-page': '1636',
     'DOI': '10.1016/j.jenvrad.2008.05.004',
     'article-title': 'Organically bound tritium (OBT) for various plants in the vicinity of a continuous atmospheric tritium release',
     'volume': '99',
     'author': 'Vichot',
     'year': '2008',
     'journal-title': 'Journal of Environmental Radioactivity'},
    {'key': '10.1002/ppp.1768-BIB0066|ppp1768-cit-0066',
     'doi-asserted-by': 'crossref',
     'first-page': '237',
     'DOI': '10.1002/ppp.613',
     'article-title': 'Progress in permafrost hydrology in the new millennium',
     'volume': '19',
     'author': 'Woo',
     'year': '2008',
     'journal-title': 'Permafrost and Periglacial Processes'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1768',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2019, 7, 10]],
    'date-time': '2019-07-10T16:03:40Z',
    'timestamp': 1562774620000},
   'score': 15.395377,
   'subtitle': ['Recent Progress in Permafrost Isotope Geochemistry'],
   'issued': {'date-parts': [[2013, 3, 7]]},
   'references-count': 67,
   'journal-issue': {'published-print': {'date-parts': [[2013, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.1768',
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 2, 25]],
    'date-time': '2020-02-25T01:23:18Z',
    'timestamp': 1582593798483},
   'reference-count': 26,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 2800,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost Periglac. Process.'],
   'published-print': {'date-parts': [[2008, 4]]},
   'DOI': '10.1002/ppp.618',
   'type': 'journal-article',
   'created': {'date-parts': [[2008, 5, 27]],
    'date-time': '2008-05-27T18:16:29Z',
    'timestamp': 1211912189000},
   'page': '255-260',
   'source': 'Crossref',
   'is-referenced-by-count': 51,
   'title': ['Report from the International Permafrost Association: state of permafrost in the first decade of the 21st century'],
   'prefix': '10.1002',
   'volume': '19',
   'author': [{'given': 'Jerry',
     'family': 'Brown',
     'sequence': 'first',
     'affiliation': []},
    {'given': 'Vladimir E.',
     'family': 'Romanovsky',
     'sequence': 'additional',
     'affiliation': []}],
   'member': '311',
   'published-online': {'date-parts': [[2008]]},
   'reference': [{'key': '10.1002/ppp.618-BIB1',
     'author': 'Brown',
     'volume': '17',
     'first-page': '377',
     'year': '2006',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.570',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.618-BIB2',
     'author': 'Christiansen',
     'year': '2008',
     'unstructured': '. 2008. Interannual variations in active layer thickness in Svalbard. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB3',
     'author': 'Drozdov',
     'year': '2008',
     'unstructured': ', . 2008. Recent advances in Russian geocryological research: a contribution to the International Polar Year. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB4',
     'author': 'Harris',
     'year': '2008',
     'unstructured': '. 2008. Recent warming of European permafrost: Evidence from borehole monitoring. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB5',
     'author': 'Johansson',
     'year': '2008',
     'unstructured': ', , , . 2008. Increasing permafrost temperatures in Subarctic Sweden. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB6',
     'author': 'Kraev',
     'year': '2008',
     'unstructured': ', , , , , , , , , , . 2008. Thermal state of permafrost in the eastern Arctic. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB7',
     'author': 'Malkova',
     'year': '2008',
     'unstructured': '2008. Last twenty-five years of changes in permafrost temperature of the European north of Russia. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB8',
     'author': 'Marchenko',
     'volume': '56',
     'first-page': '311',
     'year': '2007',
     'journal-title': 'Global and Planetary Change',
     'DOI': '10.1016/j.gloplacha.2006.07.023',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.618-BIB9',
     'author': 'Mazhitova',
     'year': '2008',
     'unstructured': ', , . 2008. Recent decade thaw depth dynamics in the European Russian Arctic based on the Circumpolar Active Layer Monitoring (CALM) data. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB10',
     'author': 'Nelson',
     'volume': '15',
     'first-page': '99',
     'year': '2004',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.488',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.618-BIB11',
     'author': 'Oberman',
     'year': '2008',
     'unstructured': '2008. Contemporary permafrost degradation of European north of Russia. In Proceedings, Ninth International Conference on Permafrost, 29 June– 3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB12',
     'author': 'Osterkamp',
     'volume': '49',
     'first-page': '187',
     'year': '2005',
     'journal-title': 'Global and Planetary Change',
     'DOI': '10.1016/j.gloplacha.2005.09.001',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.618-BIB13',
     'author': 'Osterkamp',
     'year': '2008',
     'unstructured': '2008. Thermal state of permafrost in Alaska. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB14',
     'author': 'Parsons',
     'year': '2008.',
     'unstructured': ', , , , , , , . 2008. Permafrost data and information: Past approaches and future directions. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB15',
     'author': 'Ramos',
     'year': '2008',
     'unstructured': ', , , , , . 2008. Thermal active layer monitoring in two different sites on Livingston Island during the last seven years: a comparative study. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB16',
     'author': 'Romanovsky',
     'first-page': '181',
     'year': '2007',
     'unstructured': ', , , , , , . 2007. Frozen ground. In Global Outlook for Ice and Snow. United Nations Environment Programme: Nairobi; 181–200.',
     'volume-title': 'Global Outlook for Ice and Snow'},
    {'key': '10.1002/ppp.618-BIB17',
     'author': 'Romanovsky',
     'year': '2008a',
     'unstructured': ', , , , . 2008a. Soil climate and frost heave along the Permafrost/Ecological North American Arctic Transect. In Proceedings, Ninth International Conference on Permafrost, 29 June– 3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB18',
     'author': 'Romanovsky',
     'year': '2008b',
     'unstructured': ', , , , , , , , . 2008b. First results of IPY: Thermal state and fate of permafrost in Russia. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB19',
     'author': 'Sharkhuu',
     'year': '2008',
     'unstructured': ', , , . 2008. Thermal state of permafrost Mongolia. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008. Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB20',
     'author': 'Shiklomanov',
     'year': '2008',
     'unstructured': ', , , . 2008. The Circumpolar Active Layer Monitoring (CALM) program: Data collection, management, and dissemination strategies. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB21',
     'author': 'Smith',
     'volume': '16',
     'first-page': '19',
     'year': '2005',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.511',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.618-BIB22',
     'author': 'Streletskiy',
     'year': '2008',
     'unstructured': ', , . 2008. Long-term active and ground surface temperature trends: 13 years of observations at Alaskan CALM sites. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB23',
     'author': 'Vasiliev',
     'year': '2008',
     'unstructured': ', . 2008. Active layer monitoring in West Siberia under the CALM II Program. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB24',
     'author': 'Vonder Mühll',
     'year': '2008.',
     'unstructured': ', . 2008. PERMOS – A comprehensive monitoring network of mountain permafrost in the Swiss Alps. In Proceedings, Ninth International Conference on Permafrost, 29 June– 3 July 2008. Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB25',
     'author': 'Zamolodchikov',
     'year': '2008',
     'unstructured': ', , . 2008. Recent climate and active layer changes in northeast Russia: Regional output of Circumpolar Active Layer Monitoring (CALM). In Proceedings, Ninth International Conference on Permafrost 29 June–3 July 2008. Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
    {'key': '10.1002/ppp.618-BIB26',
     'author': 'Zhao',
     'year': '2008',
     'unstructured': ', . 2008. Regional changes of permafrost in Central Asia. In Proceedings, Ninth International Conference on Permafrost 29 June–3 July 2008. Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.618',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'},
    {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.618',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2019, 2, 11]],
    'date-time': '2019-02-11T16:57:20Z',
    'timestamp': 1549904240000},
   'score': 15.395377,
   'issued': {'date-parts': [[2008]]},
   'references-count': 26,
   'journal-issue': {'published-print': {'date-parts': [[2008, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.618',
   'relation': {'cites': []},
   'ISSN': ['1045-6740', '1099-1530'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'},
    {'value': '1099-1530', 'type': 'electronic'}]},
  {'indexed': {'date-parts': [[2020, 3, 25]],
    'date-time': '2020-03-25T18:33:19Z',
    'timestamp': 1585161199211},
   'reference-count': 2,
   'publisher': 'Wiley',
   'issue': '4',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 1431,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2011, 10]]},
   'DOI': '10.1002/ppp.736',
   'type': 'journal-article',
   'created': {'date-parts': [[2011, 12, 13]],
    'date-time': '2011-12-13T00:54:05Z',
    'timestamp': 1323737645000},
   'page': '390-391',
   'source': 'Crossref',
   'is-referenced-by-count': 0,
   'title': ['Report from the International Permafrost Association'],
   'prefix': '10.1002',
   'volume': '22',
   'author': [{'given': 'Hugues',
     'family': 'Lantuit',
     'sequence': 'first',
     'affiliation': [{'name': 'IPA'}]},
    {'given': 'Inga',
     'family': 'May',
     'sequence': 'additional',
     'affiliation': [{'name': 'PYRN'}]}],
   'member': '311',
   'published-online': {'date-parts': [[2011, 12, 13]]},
   'reference': [{'key': '10.1002/ppp.736-BIB736-bib-0001|ppp736-cit-0001',
     'unstructured': 'Callaghan TV Johansson M AnisimovO H Christiansen H Instanes A Romanovsky V Smith S and contributing authors Changing permafrost and its impacts'},
    {'key': '10.1002/ppp.736-BIB736-bib-0002|ppp736-cit-0002',
     'unstructured': 'Forbes DL 2011 State of the Arctic Coast 2010 - Scientific Review and Outlook http://arcticcoasts.org'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.736',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'},
    {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.736',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2018, 8, 1]],
    'date-time': '2018-08-01T18:55:47Z',
    'timestamp': 1533149747000},
   'score': 15.395377,
   'subtitle': ['Report from the International Permafrost Association'],
   'issued': {'date-parts': [[2011, 10]]},
   'references-count': 2,
   'journal-issue': {'published-print': {'date-parts': [[2011, 10]]},
    'issue': '4'},
   'URL': 'http://dx.doi.org/10.1002/ppp.736',
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
  {'indexed': {'date-parts': [[2020, 3, 28]],
    'date-time': '2020-03-28T23:34:36Z',
    'timestamp': 1585438476499},
   'reference-count': 97,
   'publisher': 'Wiley',
   'issue': '4',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2017, 7, 20]],
      'date-time': '2017-07-20T00:00:00Z',
      'timestamp': 1500508800000},
     'delay-in-days': 0,
     'content-version': 'tdm'},
    {'URL': 'http://onlinelibrary.wiley.com/termsAndConditions#vor',
     'start': {'date-parts': [[2017, 7, 20]],
      'date-time': '2017-07-20T00:00:00Z',
      'timestamp': 1500508800000},
     'delay-in-days': 0,
     'content-version': 'vor'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2017, 10]]},
   'DOI': '10.1002/ppp.1956',
   'type': 'journal-article',
   'created': {'date-parts': [[2017, 7, 20]],
    'date-time': '2017-07-20T01:22:56Z',
    'timestamp': 1500513776000},
   'page': '726-740',
   'source': 'Crossref',
   'is-referenced-by-count': 3,
   'title': ['Palaeoenvironmental Proxies for Permafrost Presence During the Younger Dryas, Central Poland'],
   'prefix': '10.1002',
   'volume': '28',
   'author': [{'ORCID': 'http://orcid.org/0000-0002-1045-5506',
     'authenticated-orcid': False,
     'given': 'Joanna',
     'family': 'Petera-Zganiacz',
     'sequence': 'first',
     'affiliation': [{'name': 'Faculty of Geographical Sciences, Department of Geomorphology and Palaeogeography; University of Lodz; Lódz Poland'}]},
    {'given': 'Danuta A.',
     'family': 'Dzieduszyńska',
     'sequence': 'additional',
     'affiliation': [{'name': 'Faculty of Geographical Sciences, Department of Geomorphology and Palaeogeography; University of Lodz; Lódz Poland'}]}],
   'member': '311',
   'published-online': {'date-parts': [[2017, 7, 20]]},
   'reference': [{'key': '10.1002/ppp.1956-BIB0001|ppp1956-cit-0002',
     'author': 'Allen',
     'volume': 'II',
     'year': '1982',
     'volume-title': 'Sedimentary Structures, Their Character and Physical Basis'},
    {'key': '10.1002/ppp.1956-BIB0002|ppp1956-cit-0003',
     'doi-asserted-by': 'crossref',
     'first-page': '89',
     'DOI': '10.1016/S1040-6182(00)00125-7',
     'article-title': 'Environmental change and fluvial activity during the Younger Dryas in central Germany',
     'volume': '79',
     'author': 'Andres',
     'year': '2001',
     'journal-title': 'Quaternary International'},
    {'key': '10.1002/ppp.1956-BIB0003|ppp1956-cit-0004',
     'first-page': '3',
     'article-title': 'On the deformational structures in systems with reversed density gradients',
     'volume': '40',
     'author': 'Anketell',
     'year': '1970',
     'journal-title': 'Rocznik Polskiego Towarzystwa Geologicznego'},
    {'key': '10.1002/ppp.1956-BIB0004|ppp1956-cit-0005',
     'author': 'Antczak',
     'year': '1986',
     'volume-title': 'Channel pattern conversion and cessation of the Warta River bifurcation in the Warsaw-Berlin Pradolina and the southern Poznań gap section during the Late Vistulian'},
    {'key': '10.1002/ppp.1956-BIB0005|ppp1956-cit-0006',
     'doi-asserted-by': 'crossref',
     'first-page': '531',
     'DOI': '10.1002/jqs.2547',
     'article-title': 'The younger dryas cooling in northeast Germany: summer temperature and environmental changes in the Friedländer Groβe Wiese region',
     'volume': '27',
     'author': 'Asch',
     'year': '2012',
     'journal-title': 'Journal of Quaternary Science'},
    {'key': '10.1002/ppp.1956-BIB0006|ppp1956-cit-0007',
     'first-page': '361',
     'article-title': 'Timing and the final disappearance of permafrost in central European Lowland, as reconstructed from the evolution of lakes in N Poland',
     'volume': '55',
     'author': 'Błaszkiewicz',
     'year': '2011',
     'journal-title': 'Geological Quarterly'},
    {'key': '10.1002/ppp.1956-BIB0007|ppp1956-cit-0008',
     'first-page': '193',
     'article-title': 'Periglacial environments during the Weichselian Late Glacial in the Mass valley, the Netherlands',
     'volume': '72',
     'author': 'Bohncke',
     'year': '1993',
     'journal-title': 'Geologie en Mijnbouw'},
    {'key': '10.1002/ppp.1956-BIB0008|ppp1956-cit-0009',
     'first-page': '9',
     'article-title': 'Geowissenschaftliche Untersuchungen an der OPAL-Trasse in Mecklenburg-Vorpommern - Geländearbeiten und erste Ergebnisse',
     'volume': '18',
     'author': 'Börner',
     'year': '2011',
     'journal-title': 'Brandenburgische Geowissenschaftliche Beiträge'},
    {'key': '10.1002/ppp.1956-BIB0009|ppp1956-cit-0010',
     'doi-asserted-by': 'crossref',
     'first-page': '123',
     'DOI': '10.1016/1040-6182(95)00039-L',
     'article-title': 'Problems of dead ice and ground ice in the central part of the North European Plain',
     'volume': '28',
     'author': 'Böse',
     'year': '1995',
     'journal-title': 'Quaternary International'},
    {'key': '10.1002/ppp.1956-BIB0010|ppp1956-cit-0011',
     'doi-asserted-by': 'crossref',
     'first-page': '520',
     'DOI': '10.1038/ngeo263',
     'article-title': 'An abrupt wind shift in western Europe at the onset of the Younger Dryas cold period',
     'volume': '1',
     'author': 'Brauer',
     'year': '2008',
     'journal-title': 'Nature Geoscience'},
    {'key': '10.1002/ppp.1956-BIB0011|ppp1956-cit-0012',
     'author': 'Brodzikowski',
     'first-page': '287',
     'year': '1987a',
     'series-title': 'Geological Society Special Publication 29',
     'volume-title': 'Deformation of Sediments and Sedimentary Rocks'},
    {'key': '10.1002/ppp.1956-BIB0012|ppp1956-cit-0013',
     'author': 'Brodzikowski',
     'first-page': '269',
     'year': '1987b',
     'series-title': 'Geological Society Special Publication 29',
     'volume-title': 'Deformation of Sediments and Sedimentary Rocks'},
    {'key': '10.1002/ppp.1956-BIB0013|ppp1956-cit-0014',
     'first-page': '17',
     'article-title': 'Systems with reversed density gradient and their occurrence in periglacial zones',
     'volume': '124',
     'author': 'Cegła',
     'year': '1970',
     'journal-title': 'Acta Universitatis Wratislaviensis'},
    {'key': '10.1002/ppp.1956-BIB0014|ppp1956-cit-0015',
     'first-page': '91',
     'article-title': 'Late Pleistocene frost structures at Witów',
     'volume': '24',
     'author': 'Chmielewski',
     'year': '1970',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0015|ppp1956-cit-0016',
     'doi-asserted-by': 'crossref',
     'first-page': '131',
     'DOI': '10.1144/pygs.44.2.131',
     'article-title': 'Periglacial involutions and the evidence for coversands in the English Midlands',
     'volume': '44',
     'author': 'Douglas',
     'year': '1982',
     'journal-title': 'Proceedings of the Yorkshire Geological Society'},
    {'key': '10.1002/ppp.1956-BIB0016|ppp1956-cit-0017',
     'doi-asserted-by': 'crossref',
     'first-page': '69',
     'DOI': '10.17741/bgsf/84.1.006',
     'article-title': 'Geologic position of the Younger Dryas subfossil forest in the Warta River Valley, central Poland',
     'volume': '84',
     'author': 'Dzieduszyńska',
     'year': '2012',
     'journal-title': 'Bulletin of the Geological Society of Finland'},
    {'key': '10.1002/ppp.1956-BIB0017|ppp1956-cit-0018',
     'first-page': '11',
     'article-title': 'Characteristics of the Koźmin Las site',
     'volume': '102',
     'author': 'Dzieduszyńska',
     'year': '2014',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0018|ppp1956-cit-0019',
     'doi-asserted-by': 'crossref',
     'first-page': '334',
     'DOI': '10.2478/s13386-011-0019-4',
     'article-title': 'The age of the subfossil trunk horizon in deposits of the Warta River valley (central Poland) based on 14C datings',
     'volume': '38',
     'author': 'Dzieduszyńska',
     'year': '2011',
     'journal-title': 'Geochronometria'},
    {'key': '10.1002/ppp.1956-BIB0019|ppp1956-cit-0020',
     'doi-asserted-by': 'crossref',
     'first-page': '99',
     'DOI': '10.1016/j.quaint.2013.07.017',
     'article-title': 'Environmental influence on forest development and decline in the Warta River valley (Central Poland) during the Late Weichselian',
     'volume': '324',
     'author': 'Dzieduszyńska',
     'year': '2014a',
     'journal-title': 'Quaternary International'},
    {'key': '10.1002/ppp.1956-BIB0020|ppp1956-cit-0021',
     'doi-asserted-by': 'crossref',
     'first-page': '361',
     'DOI': '10.2478/s13386-013-0173-y',
     'article-title': 'Optical dating and sedimentary record from the terrace depositional profile of the Warta River (Central Poland)',
     'volume': '41',
     'author': 'Dzieduszyńska',
     'year': '2014b',
     'journal-title': 'Geochronometria'},
    {'key': '10.1002/ppp.1956-BIB0021|ppp1956-cit-0022',
     'first-page': '101',
     'article-title': 'Erosional and deformational structures in single sedimentary beds: a genetic commentary',
     'volume': '66',
     'author': 'Dżułyński',
     'year': '1996',
     'journal-title': 'Annales Societatis Geologorum Poloniae'},
    {'key': '10.1002/ppp.1956-BIB0022|ppp1956-cit-0023',
     'first-page': '1',
     'article-title': 'The development of the Warta River valley between Burzenin and Dobrów in the Late Quaternary period',
     'volume': '90',
     'author': 'Forysiak',
     'year': '2005',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0100|ppp1956-cit-0100',
     'first-page': '1',
     'article-title': 'Record of changes in the natural environment of the Late Weichselian and Holocene preserved in the sediments of peatlands of the Łódź Region',
     'volume': '99',
     'author': 'Forysiak',
     'year': '2012',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0023|ppp1956-cit-0024',
     'doi-asserted-by': 'crossref',
     'first-page': '69',
     'DOI': '10.2478/v10056-010-0002-4',
     'article-title': 'Late Vistulian and Holocene changes in the Ner River valley in light of geological and palaeocological data from the Ner-Zawada peatland',
     'volume': '52',
     'author': 'Forysiak',
     'year': '2010',
     'journal-title': 'Geologija'},
    {'key': '10.1002/ppp.1956-BIB0024|ppp1956-cit-0025',
     'author': 'French',
     'year': '2007',
     'volume-title': 'The Periglacial Environment',
     'DOI': '10.1002/9781118684931',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1956-BIB0025|ppp1956-cit-0026',
     'doi-asserted-by': 'crossref',
     'first-page': '2017',
     'DOI': '10.1139/e88-188',
     'article-title': 'Pleistocene epigenetic and syngenetic frost fissures, Bełchatów, Poland',
     'volume': '25',
     'author': 'French',
     'year': '1988',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1956-BIB0026|ppp1956-cit-0027',
     'doi-asserted-by': 'crossref',
     'first-page': '190',
     'DOI': '10.1016/j.earscirev.2010.04.002',
     'article-title': 'The principles of cryostratigraphy',
     'volume': '101',
     'author': 'French',
     'year': '2010',
     'journal-title': 'Earth-Science Reviews'},
    {'key': '10.1002/ppp.1956-BIB0027|ppp1956-cit-0028',
     'first-page': '1',
     'article-title': 'Origin and stratigraphical position of periglacial structures in Middle Poland',
     'volume': '31',
     'author': 'Goździk',
     'year': '1973',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0028|ppp1956-cit-0029',
     'first-page': '172',
     'article-title': 'Methodology of field studies. Detailed analysis of fossil contractional frost fissures, an instruction',
     'volume': '27',
     'author': 'Goździk',
     'year': '1978',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0029|ppp1956-cit-0030',
     'first-page': '53',
     'article-title': 'A permafrost evolution and its impact on some depositional conditions between 20 and 10 ka in Poland',
     'volume': '34',
     'author': 'Goździk',
     'year': '1996',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0030|ppp1956-cit-0031',
     'doi-asserted-by': 'crossref',
     'first-page': '39',
     'DOI': '10.1002/jqs.3390030107',
     'article-title': 'Ice wedges: growth, thaw transformation, and palaeoenvironmental significance',
     'volume': '3',
     'author': 'Harry',
     'year': '1988',
     'journal-title': 'Journal of Quaternary Science'},
    {'key': '10.1002/ppp.1956-BIB0031|ppp1956-cit-0032',
     'first-page': '135',
     'article-title': 'Preliminary results of the study of a Vistulian Late Glacial drainage pattern in the Scheldtbasin (Belgium-Flemish Valley-Moervaart Depression)',
     'volume': '4',
     'author': 'Heyse',
     'year': '1983',
     'journal-title': 'Quaternary Studies in Poland'},
    {'key': '10.1002/ppp.1956-BIB0032|ppp1956-cit-0033',
     'first-page': '53',
     'article-title': 'Fossil periglacial remnants in the Beernem-Mouton excavation in Flanders (Belgium)',
     'volume': '39',
     'author': 'Heyse',
     'year': '2000',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0033|ppp1956-cit-0034',
     'doi-asserted-by': 'crossref',
     'first-page': '81',
     'DOI': '10.1016/j.tecto.2005.08.012',
     'article-title': 'Soft-sediment deformation structures in Late Miocene-Pleistocene sediments on the pediment of the Mátra Hills (Visonta, Atkár, Verseg): cryoturbation, load structures or seismites?',
     'volume': '410',
     'author': 'Horváth',
     'year': '2005',
     'journal-title': 'Tectonophysics'},
    {'key': '10.1002/ppp.1956-BIB0034|ppp1956-cit-0035',
     'doi-asserted-by': 'crossref',
     'first-page': '115',
     'DOI': '10.1016/S0037-0738(00)00030-0',
     'article-title': 'Changing river styles in response to Weichselian climate changes in the Vecht valley, eastern Netherlands',
     'volume': '133',
     'author': 'Huisink',
     'year': '2000',
     'journal-title': 'Sedimentary Geology'},
    {'key': '10.1002/ppp.1956-BIB0035|ppp1956-cit-0036',
     'doi-asserted-by': 'crossref',
     'first-page': '313',
     'DOI': '10.1002/(SICI)1099-1530(199709)8:3<313::AID-PPP255>3.0.CO;2-E',
     'article-title': 'Permafrost distribution and temperatures in Europe during the Younger Dryas',
     'volume': '8',
     'author': 'Isarin',
     'year': '1997',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1956-BIB0036|ppp1956-cit-0037',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1016/S0012-8252(99)00047-1',
     'article-title': 'Reconstructing and modelling Late Weichselian climates: the Younger Dryas in Europe as a case study',
     'volume': '48',
     'author': 'Isarin',
     'year': '1999',
     'journal-title': 'Earth-Science Reviews'},
    {'key': '10.1002/ppp.1956-BIB0037|ppp1956-cit-0038',
     'doi-asserted-by': 'crossref',
     'first-page': '447',
     'DOI': '10.1002/(SICI)1099-1417(1998090)13:5<447::AID-JQS402>3.0.CO;2-B',
     'article-title': 'The impact of the North Atlantic Ocean on the Younger Dryas climate in northwestern and central Europe',
     'volume': '13',
     'author': 'Isarin',
     'year': '1998',
     'journal-title': 'Journal of Quaternary Sciences'},
    {'key': '10.1002/ppp.1956-BIB0038|ppp1956-cit-0039',
     'author': 'Jahn',
     'year': '1975',
     'volume-title': 'Problems of the Periglacial Zone'},
    {'key': '10.1002/ppp.1956-BIB0039|ppp1956-cit-0040',
     'doi-asserted-by': 'crossref',
     'first-page': '162',
     'DOI': '10.14430/arctic3501',
     'article-title': 'Some observations on permafrost distribution at a lake in the Mackenzie Delta, N.W.T., Canada',
     'volume': '17',
     'author': 'Johnston',
     'year': '1964',
     'journal-title': 'Arctic'},
    {'key': '10.1002/ppp.1956-BIB0040|ppp1956-cit-0041',
     'author': 'Kaiser',
     'volume': '61',
     'year': '2012',
     'article-title': 'Late Quaternary evolution of rivers, lakes and peatlands in northeast Germany reflecting past climatic and human impact - an overview',
     'journal-title': 'Quaternary Science Journal'},
    {'key': '10.1002/ppp.1956-BIB0041|ppp1956-cit-0042',
     'first-page': '251',
     'article-title': 'Younger Dryas cooling and fluvial response (Maas River, the Netherlands)',
     'volume': '74',
     'author': 'Kasse',
     'year': '1995',
     'journal-title': 'Geologie en Mijnbouw'},
    {'key': '10.1002/ppp.1956-BIB0042|ppp1956-cit-0043',
     'first-page': '123',
     'article-title': 'Climatic change and fluvial dynamics of the Maas during the late Weichselian and early Holocene',
     'volume': '14',
     'author': 'Kasse',
     'year': '1995',
     'journal-title': 'Palaoklimaforschung/Palaeoclimate Research'},
    {'key': '10.1002/ppp.1956-BIB0043|ppp1956-cit-0044',
     'doi-asserted-by': 'crossref',
     'first-page': '455',
     'DOI': '10.1002/(SICI)1099-1417(1998090)13:5<455::AID-JQS398>3.0.CO;2-T',
     'article-title': 'Weichselian-Late Pleniglacial and Late-glacial depositional environments, Coleoptera and periglacial climatic records from central Poland (Bełchatów)',
     'volume': '13',
     'author': 'Kasse',
     'year': '1998',
     'journal-title': 'Journal of Quaternary Sciences'},
    {'key': '10.1002/ppp.1956-BIB0044|ppp1956-cit-0045',
     'first-page': '45',
     'article-title': 'Symptoms of the permafrost presence in Middle Poland during the last 150 000 years',
     'volume': '35',
     'author': 'Klatkowa',
     'year': '1996',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0045|ppp1956-cit-0046',
     'first-page': '143',
     'article-title': 'Late Vistulian deglaciation and the expansion of the periglacial zone in NW Poland',
     'volume': '72',
     'author': 'Kozarski',
     'year': '1993',
     'journal-title': 'Geologie en Mijnbouw'},
    {'key': '10.1002/ppp.1956-BIB0046|ppp1956-cit-0047',
     'first-page': '1',
     'article-title': 'Deglaciation of north-western Poland: environmental conditions and transformation of the geosystem (~20 ka →10 ka BP)',
     'volume': '1',
     'author': 'Kozarski',
     'year': '1995',
     'journal-title': 'Dokumentacja Geograficzna'},
    {'key': '10.1002/ppp.1956-BIB0047|ppp1956-cit-0048',
     'first-page': '73',
     'article-title': 'The periglacial impact on the deglaciation area of northern Poland after 20 kyr BP',
     'volume': '34',
     'author': 'Kozarski',
     'year': '1996',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0048|ppp1956-cit-0049',
     'first-page': '51',
     'article-title': 'Valley floors and changes of river channel patterns in the North Polish Plain during the Late-Würm and Holocene',
     'volume': '4',
     'author': 'Kozarski',
     'year': '1977',
     'journal-title': 'Quaestiones Geographicae'},
    {'key': '10.1002/ppp.1956-BIB0049|ppp1956-cit-0050',
     'author': 'Kozarski',
     'first-page': '185',
     'year': '1988',
     'volume-title': 'Lake, Mire and River Environments During the Last 15000 Years'},
    {'key': '10.1002/ppp.1956-BIB0050|ppp1956-cit-0051',
     'doi-asserted-by': 'crossref',
     'first-page': '333',
     'DOI': '10.1111/j.1502-3885.1990.tb00138.x',
     'article-title': 'Middle and Late Weichselian stratigraphy and palaeoenvironments in central Poland',
     'volume': '19',
     'author': 'Krzyszkowski',
     'year': '1990',
     'journal-title': 'Boreas'},
    {'key': '10.1002/ppp.1956-BIB0051|ppp1956-cit-0052',
     'first-page': '57',
     'article-title': 'Periglacial phenomena and the mean temperature during the last glacial time in the Netherlands',
     'volume': '26',
     'author': 'Maarleveld',
     'year': '1976',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0052|ppp1956-cit-0053',
     'doi-asserted-by': 'crossref',
     'first-page': '1720',
     'DOI': '10.1139/e93-151',
     'article-title': 'Air temperature, snow cover, creep of frozen ground, and the time of ice-wedge cracking, western Arctic coast',
     'volume': '30',
     'author': 'Mackay',
     'year': '1993',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1956-BIB0053|ppp1956-cit-0054',
     'doi-asserted-by': 'crossref',
     'first-page': '95',
     'DOI': '10.1139/e01-048',
     'article-title': 'The first 20 years (1978-1979 to 1998-1999) of ice-wedge growth at the Illisarvik experimental drained lake site, western Arctic coast, Canada',
     'volume': '39',
     'author': 'Mackay',
     'year': '2002',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1956-BIB0054|ppp1956-cit-0055',
     'first-page': '181',
     'article-title': 'Role of buried dead ice in modeling of lake basins in present lakelands',
     'volume': '71',
     'author': 'Marks',
     'year': '1996',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0055|ppp1956-cit-0056',
     'first-page': '988',
     'article-title': 'Pleistocene glacial limits in the territory of Poland',
     'volume': '53',
     'author': 'Marks',
     'year': '2005',
     'journal-title': 'Przegląd Geologiczny'},
    {'key': '10.1002/ppp.1956-BIB0056|ppp1956-cit-0057',
     'doi-asserted-by': 'crossref',
     'first-page': '356',
     'DOI': '10.1016/j.yqres.2010.12.014',
     'article-title': 'Climate and material controls on periglacial soil processes: Toward improving periglacial climate indicators',
     'volume': '75',
     'author': 'Matsuoka',
     'year': '2011',
     'journal-title': 'Quaternary Research'},
    {'key': '10.1002/ppp.1956-BIB0057|ppp1956-cit-0058',
     'author': 'Miall',
     'volume': '5',
     'year': '1978',
     'volume-title': 'Fluvial Sedimentology'},
    {'key': '10.1002/ppp.1956-BIB0058|ppp1956-cit-0059',
     'doi-asserted-by': 'crossref',
     'first-page': '83',
     'DOI': '10.1016/0037-0738(83)90046-5',
     'article-title': 'Genesis and diagnostic value of soft sediment deformation structures - a overview',
     'volume': '35',
     'author': 'Mills',
     'year': '1983',
     'journal-title': 'Sedimentary Geology'},
    {'key': '10.1002/ppp.1956-BIB0059|ppp1956-cit-0060',
     'first-page': '145',
     'article-title': 'Cryoturbation structures on the terraces of the Wisła River near Włocławek',
     'volume': '6',
     'author': 'Mojski',
     'year': '1958',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0060|ppp1956-cit-0061',
     'doi-asserted-by': 'crossref',
     'first-page': '217',
     'DOI': '10.1002/ppp.3430040304',
     'article-title': 'Thermokarst involutions, Summer Island, Pleistocene Mackenzie Delta, western Canadian Arctic',
     'volume': '4',
     'author': 'Murton',
     'year': '1993',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1956-BIB0061|ppp1956-cit-0062',
     'doi-asserted-by': 'crossref',
     'first-page': '237',
     'DOI': '10.2478/v10118-012-0012-2',
     'article-title': 'Younger Dryas Cladocera assemblages from two valley mires in central Poland and their potential significance for climate reconstructions',
     'volume': '18',
     'author': 'Pawłowski',
     'year': '2012',
     'journal-title': 'Geologos'},
    {'key': '10.1002/ppp.1956-BIB0062|ppp1956-cit-0063',
     'doi-asserted-by': 'crossref',
     'first-page': '679',
     'DOI': '10.1007/s10933-013-9692-z',
     'article-title': 'Changes in the biota and sediments of glacial Lake Koźmin, Poland, during the Late Saalian (Illinoian)',
     'volume': '49',
     'author': 'Pawłowski',
     'year': '2013',
     'journal-title': 'Journal of Paleolimnology'},
    {'key': '10.1002/ppp.1956-BIB0063|ppp1956-cit-0064',
     'doi-asserted-by': 'crossref',
     'first-page': '12',
     'DOI': '10.1016/j.quaint.2014.06.033',
     'article-title': 'Palaeoecological record of natural changes and human impact in a small river valley in Central Poland',
     'volume': '370',
     'author': 'Pawłowski',
     'year': '2015',
     'journal-title': 'Quaternary International'},
    {'key': '10.1002/ppp.1956-BIB0064|ppp1956-cit-0065',
     'first-page': '1',
     'article-title': 'Vistulian valley deposits in th Uniejów Basin and their palaeogeographical significance',
     'volume': '83',
     'author': 'Petera',
     'year': '2002',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0065|ppp1956-cit-0066',
     'first-page': '103',
     'article-title': 'Stratigraphy of the Vistulian deposits and young Quaternary tectonic activity near Koźmin',
     'volume': '16',
     'author': 'Petera-Zganiacz',
     'year': '2007',
     'journal-title': 'Prace Instytutu Geografii Akademii Świętokrzyskiej w Kielcach'},
    {'key': '10.1002/ppp.1956-BIB0066|ppp1956-cit-0067',
     'first-page': '39',
     'article-title': 'Determinants of the spread and properties of the organic series containing remains of the Younger Dryas forest',
     'volume': '102',
     'author': 'Petera-Zganiacz',
     'year': '2014',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0067|ppp1956-cit-0068',
     'first-page': '57',
     'article-title': 'Palaeogeographical significance of subfossil tree trunks in the Late Vistulian sediments',
     'volume': '93',
     'author': 'Petera-Zganiacz',
     'year': '2007',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0068|ppp1956-cit-0069',
     'doi-asserted-by': 'crossref',
     'first-page': '55',
     'DOI': '10.1016/j.quaint.2014.09.074',
     'article-title': 'Younger Dryas flood events: a case study from the middle Warta River valley (Central Poland)',
     'volume': '386',
     'author': 'Petera-Zganiacz',
     'year': '2015',
     'journal-title': 'Quaternary International'},
    {'key': '10.1002/ppp.1956-BIB0069|ppp1956-cit-0070',
     'doi-asserted-by': 'crossref',
     'first-page': '107',
     'DOI': '10.1002/jqs.3390100203',
     'article-title': 'A Late-Glacial colluvial sequence at Watcombe Bottom, Ventnor, Isle of Wight, England',
     'volume': '10',
     'author': 'Preece',
     'year': '1995',
     'journal-title': 'Journal of Quaternary Science'},
    {'key': '10.1002/ppp.1956-BIB0070|ppp1956-cit-0071',
     'year': '1998',
     'volume-title': 'Lake Gościąż, Central Poland. A Monographic Study, Part 1. W'},
    {'key': '10.1002/ppp.1956-BIB0071|ppp1956-cit-0072',
     'doi-asserted-by': 'crossref',
     'first-page': '14',
     'DOI': '10.1016/j.quascirev.2014.09.007',
     'article-title': 'A stratigraphic framework for abrupt climatic changes during the Last Glacial period based on three synchronized Greenland ice-core records: refining and extending the INTIMATE event stratigraphy',
     'volume': '106',
     'author': 'Rasmussen',
     'year': '2014',
     'journal-title': 'Quaternary Science Reviews'},
    {'key': '10.1002/ppp.1956-BIB0072|ppp1956-cit-0073',
     'doi-asserted-by': 'crossref',
     'first-page': '209',
     'DOI': '10.1016/S0277-3791(02)00190-7',
     'article-title': 'Investigation of the relationship between permafrost distribution in NW Europe and extensive winter sea-ice cover in the North Atlantic Ocean during the cold phases of the Last Glaciation',
     'volume': '22',
     'author': 'Renssen',
     'year': '2003',
     'journal-title': 'Quaternary Science Reviews'},
    {'key': '10.1002/ppp.1956-BIB0073|ppp1956-cit-0074',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1016/S0012-821X(99)00322-2',
     'article-title': 'Permafrost as a critical factor in paleoclimate modelling: the Younger Dryas case in Europe',
     'volume': '176',
     'author': 'Renssen',
     'year': '2000',
     'journal-title': 'Earth and Planetary Science Letters'},
    {'key': '10.1002/ppp.1956-BIB0074|ppp1956-cit-0075',
     'author': 'Romanovskij',
     'year': '1993',
     'volume-title': 'Problems of Lithosphere Cryogenesis'},
    {'key': '10.1002/ppp.1956-BIB0075|ppp1956-cit-0076',
     'first-page': '73',
     'article-title': 'Palaeohydrology and fossilization of a meandering channel of Younger Dryas age in the middle Prosna river valley',
     'volume': '7',
     'author': 'Rotnicki',
     'year': '1986',
     'journal-title': 'Quaternary Studies in Poland'},
    {'key': '10.1002/ppp.1956-BIB0076|ppp1956-cit-0077',
     'first-page': '113',
     'article-title': 'Late Vistulian and Holocene channel forms and deposits of the middle Prosna River and their palaeohydrological interpretation',
     'volume': '13/14',
     'author': 'Rotnicki',
     'year': '1998',
     'journal-title': 'Quaestiones Geographicae'},
    {'key': '10.1002/ppp.1956-BIB0077|ppp1956-cit-0078',
     'first-page': '55',
     'article-title': 'The pingo remnant in the Suwałki Lake region (NE Poland)',
     'volume': '15',
     'author': 'Rutkowski',
     'year': '1998',
     'journal-title': 'Quaternary Studies in Poland'},
    {'key': '10.1002/ppp.1956-BIB0078|ppp1956-cit-0079',
     'doi-asserted-by': 'crossref',
     'first-page': '7',
     'DOI': '10.1002/ppp.582',
     'article-title': 'Patterns of permafrost formation and degradation in relation to climate and ecosystems',
     'volume': '18',
     'author': 'Shur',
     'year': '2007',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1956-BIB0079|ppp1956-cit-0080',
     'first-page': '53',
     'article-title': 'Vegetation development in the Late Vistulian and functioning and end of the forest ecosystem in Koźmin Las',
     'volume': '102',
     'author': 'Stachowicz-Rybka',
     'year': '2014',
     'journal-title': 'Acta Geographica Lodziensia'},
    {'key': '10.1002/ppp.1956-BIB0080|ppp1956-cit-0081',
     'doi-asserted-by': 'crossref',
     'first-page': '97',
     'DOI': '10.1016/j.quaint.2015.04.017',
     'article-title': 'Climatic fluctuations reflected in the evolution of fluvial systems of Central-Eastern Europe (60-8 ka cal BP)',
     'volume': '388',
     'author': 'Starkel',
     'year': '2015',
     'journal-title': 'Quaternary International'},
    {'key': '10.1002/ppp.1956-BIB0081|ppp1956-cit-0082',
     'author': 'Szczypek',
     'year': '1986',
     'volume-title': 'Dune-Forming Processes in Central Part of the Kraków-Wieluń Upland'},
    {'key': '10.1002/ppp.1956-BIB0082|ppp1956-cit-0083',
     'doi-asserted-by': 'crossref',
     'first-page': '147',
     'DOI': '10.7163/GPol.2011.S1.10',
     'article-title': 'Local evidence of landform evolution vs. global changes - a case of Younger Dryas study in the upper Ner valley system, Central Poland',
     'volume': '88',
     'author': 'Turkowska',
     'year': '2011',
     'journal-title': 'Geographia Polonica'},
    {'key': '10.1002/ppp.1956-BIB0083|ppp1956-cit-0084',
     'first-page': '83',
     'article-title': 'A Warta River system during the Younger Dryas in the Koło Basin (Middle Poland)',
     'volume': '23',
     'author': 'Turkowska',
     'year': '2004',
     'journal-title': 'Quaestiones Geographicae'},
    {'key': '10.1002/ppp.1956-BIB0084|ppp1956-cit-0085',
     'first-page': '221',
     'article-title': 'Cracks and fissures of post-Alleröd age in the Netherlands',
     'volume': '17',
     'author': 'Van der Tak-Schneider',
     'year': '1968',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0085|ppp1956-cit-0086',
     'author': 'Vandenberghe',
     'first-page': '179',
     'year': '1988',
     'volume-title': 'Advances in Periglacial Geomorphology'},
    {'key': '10.1002/ppp.1956-BIB0086|ppp1956-cit-0087',
     'doi-asserted-by': 'crossref',
     'first-page': '343',
     'DOI': '10.1002/ppp.3430030408',
     'article-title': 'Cryoturbations: a sediment structural analysis',
     'volume': '3',
     'author': 'Vandenberghe',
     'year': '1992',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1956-BIB0087|ppp1956-cit-0088',
     'doi-asserted-by': 'crossref',
     'first-page': '121',
     'DOI': '10.1002/ppp.3430040205',
     'article-title': 'Permafrost changes in Europe during the last glacial',
     'volume': '4',
     'author': 'Vandenberghe',
     'year': '1993',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1956-BIB0088|ppp1956-cit-0089',
     'doi-asserted-by': 'crossref',
     'first-page': '75',
     'DOI': '10.1016/S1040-6182(01)00104-5',
     'article-title': 'Climate changes in east Europe and Siberia at the Late glacial-Holocene transition',
     'volume': '91',
     'author': 'Velichko',
     'year': '2002',
     'journal-title': 'Quaternary International'},
    {'key': '10.1002/ppp.1956-BIB0089|ppp1956-cit-0090',
     'doi-asserted-by': 'crossref',
     'first-page': '123',
     'DOI': '10.1002/ppp.3430020207',
     'article-title': 'Differential frost heave, load casting and convection: converging mechanisms; a discussion of the origin of cryoturbations',
     'volume': '2',
     'author': 'Vliet-Lanoë',
     'year': '1991',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1956-BIB0090|ppp1956-cit-0091',
     'first-page': '135',
     'article-title': 'Comparison between cryogenic and co-seismic or neotectonic deformations: implications for the European permafrost',
     'volume': '38',
     'author': 'Vliet-Lanoë',
     'year': '1999',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.1956-BIB0091|ppp1956-cit-0092',
     'first-page': '163',
     'article-title': 'Neotectonic and seismic activity in the English Channel and Dover Strait: the differentiation between co-seismic and periglacial deformation. Potential for large earthquakes in low seismic activity regions of Europe',
     'volume': '18',
     'author': 'Vliet-Lanoë',
     'year': '2000',
     'journal-title': 'Han/Lesse Cahiers du Centre Européen de Géodynamique et de Séismologie'},
    {'key': '10.1002/ppp.1956-BIB0092|ppp1956-cit-0093',
     'doi-asserted-by': 'crossref',
     'first-page': '103',
     'DOI': '10.1016/j.gloplacha.2004.03.003',
     'article-title': 'Distinguishing between tectonic and periglacial deformations of quaternary continental deposits in Europe',
     'volume': '43',
     'author': 'Vliet-Lanoë',
     'year': '2004',
     'journal-title': 'Global and Planetary Change'},
    {'key': '10.1002/ppp.1956-BIB0093|ppp1956-cit-0094',
     'author': 'Washburn',
     'year': '1979',
     'volume-title': 'Geocryology. A Survey of Periglacial Processes and Environments'},
    {'key': '10.1002/ppp.1956-BIB0094|ppp1956-cit-0095',
     'first-page': '43',
     'article-title': 'Younger Dryas and Holocene vegetation changes as the reflection of eolian processes and human activity at the archaeological site Witów near Łęczyca, Central Poland',
     'volume': '41',
     'author': 'Wasylikowa',
     'year': '1999',
     'journal-title': 'Prace i Materiały Muzeum Archeologicznego i Etnograficznego w Łodzi'},
    {'key': '10.1002/ppp.1956-BIB0095|ppp1956-cit-0096',
     'first-page': '55',
     'article-title': 'Palaeomorphologic and palaeotectonic evolution of the Konin elevation',
     'volume': '3',
     'author': 'Widera',
     'year': '1998',
     'journal-title': 'Geologos'},
    {'key': '10.1002/ppp.1956-BIB0096|ppp1956-cit-0097',
     'author': 'Zieliński',
     'year': '2015',
     'volume-title': 'Sedymentology. Deposits of rivers and lakes'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1956',
     'content-type': 'application/pdf',
     'content-version': 'vor',
     'intended-application': 'text-mining'},
    {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.1956',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2018, 8, 6]],
    'date-time': '2018-08-06T21:21:08Z',
    'timestamp': 1533590468000},
   'score': 15.395377,
   'subtitle': ['Permafrost presence in the Younger Dryas'],
   'issued': {'date-parts': [[2017, 7, 20]]},
   'references-count': 97,
   'journal-issue': {'published-print': {'date-parts': [[2017, 10]]},
    'issue': '4'},
   'URL': 'http://dx.doi.org/10.1002/ppp.1956',
   'archive': ['Portico'],
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
  {'indexed': {'date-parts': [[2020, 3, 29]],
    'date-time': '2020-03-29T01:01:20Z',
    'timestamp': 1585443680411},
   'reference-count': 76,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 883,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2013, 4]]},
   'DOI': '10.1002/ppp.1772',
   'type': 'journal-article',
   'created': {'date-parts': [[2013, 4, 11]],
    'date-time': '2013-04-11T12:03:42Z',
    'timestamp': 1365681822000},
   'page': '99-107',
   'source': 'Crossref',
   'is-referenced-by-count': 37,
   'title': ['Recent Advances in Mountain Permafrost Research'],
   'prefix': '10.1002',
   'volume': '24',
   'author': [{'given': 'Bernd',
     'family': 'Etzelmüller',
     'sequence': 'first',
     'affiliation': [{'name': 'Department of Geosciences; University of Oslo; Oslo; Norway'}]}],
   'member': '311',
   'published-online': {'date-parts': [[2013, 4, 11]]},
   'reference': [{'issue': '1',
     'key': '10.1002/ppp.1772-BIB0001|ppp1772-cit-0001',
     'doi-asserted-by': 'crossref',
     'first-page': '17pp',
     'DOI': '10.1515/arh-2007-0003',
     'article-title': 'The rheology of frozen soils',
     'volume': '17',
     'author': 'Arenson',
     'year': '2007',
     'journal-title': 'Applied Rheology'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0002|ppp1772-cit-0002',
     'doi-asserted-by': 'crossref',
     'first-page': '42',
     'DOI': '10.1002/ppp.669',
     'article-title': 'Hydrological and geomorphological significance of rock glaciers in the Dry Andes, Chile (27 degrees-33 degrees S)',
     'volume': '21',
     'author': 'Azocar',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '3-4',
     'key': '10.1002/ppp.1772-BIB0003|ppp1772-cit-0003',
     'doi-asserted-by': 'crossref',
     'first-page': '98',
     'DOI': '10.1016/j.geomorph.2011.05.002',
     'article-title': 'Beyond confusion: Rock glaciers as cryo-conditioned landforms',
     'volume': '131',
     'author': 'Berthling',
     'year': '2011',
     'journal-title': 'Geomorphology'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0004|ppp1772-cit-0004',
     'doi-asserted-by': 'crossref',
     'first-page': '378',
     'DOI': '10.1016/j.yqres.2010.12.011',
     'article-title': 'The concept of cryo-conditioning in landscape evolution',
     'volume': '75',
     'author': 'Berthling',
     'year': '2011',
     'journal-title': 'Quaternary Research'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0005|ppp1772-cit-0005',
     'doi-asserted-by': 'crossref',
     'first-page': '807',
     'DOI': '10.5194/tc-6-807-2012',
     'article-title': 'Permafrost distribution in the European Alps: calculation and evaluation of an index map and summary statistics',
     'volume': '6',
     'author': 'Boeckli',
     'year': '2012a',
     'journal-title': 'The Cryosphere'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0006|ppp1772-cit-0006',
     'doi-asserted-by': 'crossref',
     'first-page': '125',
     'DOI': '10.5194/tc-6-125-2012',
     'article-title': 'A statistical approach to modelling permafrost distribution in the European Alps or similar mountain ranges',
     'volume': '6',
     'author': 'Boeckli',
     'year': '2012b',
     'journal-title': 'The Cryosphere'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0007|ppp1772-cit-0007',
     'doi-asserted-by': 'crossref',
     'first-page': '443',
     'DOI': '10.1139/E08-013',
     'article-title': 'Mountain permafrost probability mapping using the BTS method in two climatically dissimilar locations, northwest Canada',
     'volume': '45',
     'author': 'Bonnaventure',
     'year': '2008',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'issue': '1-2',
     'key': '10.1002/ppp.1772-BIB0008|ppp1772-cit-0008',
     'doi-asserted-by': 'crossref',
     'first-page': '293',
     'DOI': '10.1007/s10584-010-9818-5',
     'article-title': 'Modelling climate change effects on the spatial distribution of mountain permafrost at three sites in northwest Canada',
     'volume': '105',
     'author': 'Bonnaventure',
     'year': '2011',
     'journal-title': 'Climatic Change'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0009|ppp1772-cit-0009',
     'doi-asserted-by': 'crossref',
     'first-page': '52',
     'DOI': '10.1002/ppp.1733',
     'article-title': 'A Permafrost Probability Model for the Southern Yukon and Northern British Columbia, Canada',
     'volume': '23',
     'author': 'Bonnaventure',
     'year': '2012',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': 'F2',
     'key': '10.1002/ppp.1772-BIB0010|ppp1772-cit-0010',
     'doi-asserted-by': 'crossref',
     'DOI': '10.1029/2006JF000528',
     'article-title': 'Statistical estimation and generalized additive modeling of rock glacier distribution in the San Juan Mountains, Colorado, United States',
     'volume': '112',
     'author': 'Brenning',
     'year': '2007',
     'journal-title': 'Journal of Geophysical Research-Earth Surface'},
    {'issue': 'F2',
     'key': '10.1002/ppp.1772-BIB0011|ppp1772-cit-0011',
     'doi-asserted-by': 'crossref',
     'DOI': '10.1029/2006JF000631',
     'article-title': 'Responses of permafrost to climate change and their environmental significance, Qinghai-Tibet Plateau',
     'volume': '112',
     'author': 'Cheng',
     'year': '2007',
     'journal-title': 'Journal of Geophysical Research-Earth Surface'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0012|ppp1772-cit-0012',
     'doi-asserted-by': 'crossref',
     'first-page': '156',
     'DOI': '10.1002/ppp.687',
     'article-title': 'The Thermal State of Permafrost in the Nordic Area during the International Polar Year 2007-2009',
     'volume': '21',
     'author': 'Christiansen',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '5',
     'key': '10.1002/ppp.1772-BIB0013|ppp1772-cit-0013',
     'doi-asserted-by': 'crossref',
     'first-page': '1521',
     'DOI': '10.5194/nhess-12-1521-2012',
     'article-title': 'Rapid movement of frozen debris-lobes: implications for permafrost degradation and slope instability in the south-central Brooks Range, Alaska',
     'volume': '12',
     'author': 'Daanen',
     'year': '2012',
     'journal-title': 'Natural Hazards and Earth System Sciences'},
    {'issue': '3',
     'key': '10.1002/ppp.1772-BIB0014|ppp1772-cit-0014',
     'doi-asserted-by': 'crossref',
     'first-page': '773',
     'DOI': '10.5194/tc-5-773-2011',
     'article-title': 'Simulation of permafrost and seasonal thaw depth in the JULES land surface scheme',
     'volume': '5',
     'author': 'Dankers',
     'year': '2011',
     'journal-title': 'The Cryosphere'},
    {'issue': '5',
     'key': '10.1002/ppp.1772-BIB0015|ppp1772-cit-0015',
     'doi-asserted-by': 'crossref',
     'first-page': '491',
     'DOI': '10.1127/0941-2948/2010/0476',
     'article-title': 'Influence of atmospheric forcing parameters on modelled mountain permafrost evolution',
     'volume': '19',
     'author': 'Engelhardt',
     'year': '2010',
     'journal-title': 'Meteorologische Zeitschrift'},
    {'key': '10.1002/ppp.1772-BIB0016|ppp1772-cit-0016',
     'doi-asserted-by': 'crossref',
     'first-page': '67',
     'DOI': '10.5194/tc-5-67-2011',
     'article-title': 'Modeling the temperature evolution of Svalbard permafrost during the 20th and 21st century',
     'volume': '5',
     'author': 'Etzelmuller',
     'year': '2011',
     'journal-title': 'The Cryosphere'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0017|ppp1772-cit-0017',
     'doi-asserted-by': 'crossref',
     'first-page': '343',
     'DOI': '10.1002/ppp.733',
     'article-title': 'Air and Ground Temperature Variations Observed along Elevation and Continentality Gradients in Southern Norway',
     'volume': '22',
     'author': 'Farbrot',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '5',
     'key': '10.1002/ppp.1772-BIB0018|ppp1772-cit-0018',
     'doi-asserted-by': 'crossref',
     'first-page': '1245',
     'DOI': '10.5194/gmd-5-1245-2012',
     'article-title': 'TopoSUB: a tool for efficient large area numerical modelling in complex topography at sub-grid scales',
     'volume': '5',
     'author': 'Fiddes',
     'year': '2012',
     'journal-title': 'Geoscientific Model Development'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0019|ppp1772-cit-0019',
     'doi-asserted-by': 'crossref',
     'first-page': '241',
     'DOI': '10.5194/nhess-12-241-2012',
     'article-title': 'On the influence of topographic, geological and cryospheric factors on rock avalanches and rockfalls in high-mountain areas',
     'volume': '12',
     'author': 'Fischer',
     'year': '2012',
     'journal-title': 'Natural Hazards and Earth System Sciences'},
    {'issue': '3-4',
     'key': '10.1002/ppp.1772-BIB0020|ppp1772-cit-0020',
     'doi-asserted-by': 'crossref',
     'first-page': '515',
     'DOI': '10.1007/s10584-009-9679-y',
     'article-title': 'Applying probabilistic projections of climate change with impact models: a case study for sub-arctic palsa mires in Fennoscandia',
     'volume': '99',
     'author': 'Fronzek',
     'year': '2010',
     'journal-title': 'Climatic Change'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0021|ppp1772-cit-0021',
     'doi-asserted-by': 'crossref',
     'first-page': '129',
     'DOI': '10.1002/ppp.585',
     'article-title': 'The lower limit of mountain permafrost in the Russian Altai Mountains',
     'volume': '18',
     'author': 'Fukui',
     'year': '2007',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0022|ppp1772-cit-0022',
     'doi-asserted-by': 'crossref',
     'first-page': '221',
     'DOI': '10.5194/tc-6-221-2012',
     'article-title': 'Derivation and analysis of a high-resolution estimate of global permafrost zonation',
     'volume': '6',
     'author': 'Gruber',
     'year': '2012',
     'journal-title': 'The Cryosphere'},
    {'issue': 'F2',
     'key': '10.1002/ppp.1772-BIB0023|ppp1772-cit-0023',
     'doi-asserted-by': 'crossref',
     'DOI': '10.1029/2006JF000547',
     'article-title': 'Permafrost in steep bedrock slopes and its temperature-related destabilization following climate change',
     'volume': '112',
     'author': 'Gruber',
     'year': '2007',
     'journal-title': 'Journal of Geophysical Research-Earth Surface'},
    {'issue': '13',
     'key': '10.1002/ppp.1772-BIB0024|ppp1772-cit-0024',
     'doi-asserted-by': 'crossref',
     'DOI': '10.1029/2004GL020051',
     'article-title': 'Permafrost thaw and destabilization of Alpine rock walls in the hot summer of 2003',
     'volume': '31',
     'author': 'Gruber',
     'year': '2004',
     'journal-title': 'Geophysical Research Letters'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0025|ppp1772-cit-0025',
     'doi-asserted-by': 'crossref',
     'first-page': '177',
     'DOI': '10.1111/j.1468-0459.2012.00468.x',
     'article-title': 'Preface: The Mountain Cryosphere - A Holistic View on Processes and their Interactions',
     'volume': '94',
     'author': 'Gruber',
     'year': '2012',
     'journal-title': 'Geografiska Annaler: Series A, Physical Geography'},
    {'key': '10.1002/ppp.1772-BIB0076|ppp1772-cit-0076',
     'author': 'Gruber',
     'year': '2012',
     'article-title': 'Modeling the spatial dynamics of permafrost and seasonally frozen ground at diverse scales',
     'journal-title': 'The Cryosphere'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0026|ppp1772-cit-0026',
     'doi-asserted-by': 'crossref',
     'first-page': '431',
     'DOI': '10.5194/tc-5-431-2011',
     'article-title': 'Scale-dependent measurement and analysis of ground surface temperature variability in alpine terrain',
     'volume': '5',
     'author': 'Gubler',
     'year': '2011',
     'journal-title': 'The Cryosphere'},
    {'issue': '1-2',
     'key': '10.1002/ppp.1772-BIB0027|ppp1772-cit-0027',
     'first-page': '221',
     'article-title': 'Die Basis Temperatur der winterlichen Schneedecke als möglicher Indikator für die Verbreitung von Permafrost',
     'volume': '9',
     'author': 'Haeberli',
     'year': '1973',
     'journal-title': 'Zeitschrift für Gletscherkunde und Glazialgeologie'},
    {'issue': '3',
     'key': '10.1002/ppp.1772-BIB0028|ppp1772-cit-0028',
     'doi-asserted-by': 'crossref',
     'first-page': '189',
     'DOI': '10.1002/ppp.561',
     'article-title': 'Permafrost creep and rock glacier dynamics',
     'volume': '17',
     'author': 'Haeberli',
     'year': '2006',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '200',
     'key': '10.1002/ppp.1772-BIB0029|ppp1772-cit-0029',
     'doi-asserted-by': 'crossref',
     'first-page': '1043',
     'DOI': '10.3189/002214311796406121',
     'article-title': 'Mountain permafrost: development and challenges of a young research field',
     'volume': '57',
     'author': 'Haeberli',
     'year': '2010',
     'journal-title': 'Journal of Glaciology'},
    {'issue': '3-4',
     'key': '10.1002/ppp.1772-BIB0030|ppp1772-cit-0030',
     'doi-asserted-by': 'crossref',
     'first-page': '117',
     'DOI': '10.1016/j.earscirev.2008.12.002',
     'article-title': 'Permafrost and climate in Europe: Monitoring and modelling thermal, geomorphological and geotechnical responses',
     'volume': '92',
     'author': 'Harris',
     'year': '2009',
     'journal-title': 'Earth-Science Reviews'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0031|ppp1772-cit-0031',
     'doi-asserted-by': 'crossref',
     'first-page': '977',
     'DOI': '10.5194/tc-5-977-2011',
     'article-title': 'Temperature variability and offset in steep alpine rock and ice faces',
     'volume': '5',
     'author': 'Hasler',
     'year': '2011',
     'journal-title': 'The Cryosphere'},
    {'key': '10.1002/ppp.1772-BIB0032|ppp1772-cit-0032',
     'author': 'Hasler',
     'volume': '117',
     'year': '2012',
     'article-title': 'Kinematics of steep bedrock permafrost',
     'journal-title': 'Journal of Geophysical Research-Earth Surface',
     'DOI': '10.1029/2011JF001981',
     'doi-asserted-by': 'crossref'},
    {'issue': '3',
     'key': '10.1002/ppp.1772-BIB0033|ppp1772-cit-0033',
     'doi-asserted-by': 'crossref',
     'first-page': '553',
     'DOI': '10.5194/tc-6-553-2012',
     'article-title': 'Modelling borehole temperatures in Southern Norway - insights into permafrost dynamics during the 20th and 21st century',
     'volume': '6',
     'author': 'Hipp',
     'year': '2012',
     'journal-title': 'The Cryosphere'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0034|ppp1772-cit-0034',
     'doi-asserted-by': 'crossref',
     'first-page': '115',
     'DOI': '10.1002/ppp.584',
     'article-title': 'Landscape scale determinants of periglacial features in subarctic Finland: A grid-based modelling approach',
     'volume': '18',
     'author': 'Hjort',
     'year': '2007',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '1919',
     'key': '10.1002/ppp.1772-BIB0035|ppp1772-cit-0035',
     'doi-asserted-by': 'crossref',
     'first-page': '2435',
     'DOI': '10.1098/rsta.2010.0078',
     'article-title': 'Recent and future warm extreme events and high-mountain slope stability',
     'volume': '368',
     'author': 'Huggel',
     'year': '2010',
     'journal-title': 'Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0036|ppp1772-cit-0036',
     'doi-asserted-by': 'crossref',
     'first-page': '77',
     'DOI': '10.1002/esp.2223',
     'article-title': 'Is climate change responsible for changing landslide activity in high mountains?',
     'volume': '37',
     'author': 'Huggel',
     'year': '2012',
     'journal-title': 'Earth Surface Processes and Landforms'},
    {'key': '10.1002/ppp.1772-BIB0037|ppp1772-cit-0037',
     'doi-asserted-by': 'crossref',
     'first-page': 'L17502',
     'DOI': '10.1029/2007GL031002',
     'article-title': 'Recent extreme near-surface permafrost temperatures on Svalbard in relation to future climate scenarios',
     'volume': '34',
     'author': 'Isaksen',
     'year': '2007',
     'journal-title': 'Geophysical Research Letters'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0038|ppp1772-cit-0038',
     'doi-asserted-by': 'crossref',
     'first-page': '361',
     'DOI': '10.1002/ppp.728',
     'article-title': 'Degrading Mountain Permafrost in Southern Norway: Spatial and Temporal Variability of Mean Ground Temperatures, 1999-2009',
     'volume': '22',
     'author': 'Isaksen',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '3',
     'key': '10.1002/ppp.1772-BIB0039|ppp1772-cit-0039',
     'doi-asserted-by': 'crossref',
     'first-page': '613',
     'DOI': '10.5194/tc-6-613-2012',
     'article-title': 'Numerical modeling of permafrost dynamics in Alaska using a high spatial resolution dataset',
     'volume': '6',
     'author': 'Jafarov',
     'year': '2012',
     'journal-title': 'The Cryosphere'},
    {'issue': '1-2',
     'key': '10.1002/ppp.1772-BIB0040|ppp1772-cit-0040',
     'doi-asserted-by': 'crossref',
     'first-page': 'vii',
     'DOI': '10.1016/j.gloplacha.2006.07.008',
     'article-title': 'Climate change impacts on mountain glaciers and permafrost',
     'volume': '56',
     'author': 'Kääb',
     'year': '2007a',
     'journal-title': 'Global and Planetary Change'},
    {'issue': '1-2',
     'key': '10.1002/ppp.1772-BIB0041|ppp1772-cit-0041',
     'doi-asserted-by': 'crossref',
     'first-page': '172',
     'DOI': '10.1016/j.gloplacha.2006.07.005',
     'article-title': 'On the response of rockglacier creep to surface temperature increase',
     'volume': '56',
     'author': 'Kääb',
     'year': '2007b',
     'journal-title': 'Global and Planetary Change'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0042|ppp1772-cit-0042',
     'doi-asserted-by': 'crossref',
     'first-page': '80',
     'DOI': '10.1002/ppp.740',
     'article-title': 'Research Perspectives on Unstable High-alpine Bedrock Permafrost: Measurement, Modelling and Process Understanding',
     'volume': '23',
     'author': 'Krautblatter',
     'year': '2012a',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1772-BIB0043|ppp1772-cit-0043',
     'author': 'Krautblatter',
     'year': '2012b',
     'article-title': 'Why permafrost rocks become unstable: a rock-ice-mechanical model in time and space',
     'journal-title': 'Earth Surface Processes and Landforms'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0044|ppp1772-cit-0044',
     'doi-asserted-by': 'crossref',
     'first-page': '105',
     'DOI': '10.1002/ppp.696',
     'article-title': 'The lasting impacts of the fourth international polar year on permafrost science',
     'volume': '21',
     'author': 'Lewkowicz',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0045|ppp1772-cit-0045',
     'doi-asserted-by': 'crossref',
     'first-page': '153',
     'DOI': '10.1002/ppp.720',
     'article-title': 'Equivalent Elevation: A New Method to Incorporate Variable Surface Lapse Rates into Mountain Permafrost Modelling',
     'volume': '22',
     'author': 'Lewkowicz',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0046|ppp1772-cit-0046',
     'doi-asserted-by': 'crossref',
     'first-page': '320',
     'DOI': '10.1002/ppp.703',
     'article-title': 'Characteristics of Discontinuous Permafrost based on Ground Temperature Measurements and Electrical Resistivity Tomography, Southern Yukon, Canada',
     'volume': '22',
     'author': 'Lewkowicz',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0047|ppp1772-cit-0047',
     'doi-asserted-by': 'crossref',
     'first-page': '195',
     'DOI': '10.1111/j.1468-0459.2012.00462.x',
     'article-title': 'Spatial and Thermal Characteristics of Mountain Permafrost, Northwest Canada',
     'volume': '94A',
     'author': 'Lewkowicz',
     'year': '2012',
     'journal-title': 'Geografiska Annaler: Series A, Physical Geography'},
    {'issue': '3',
     'key': '10.1002/ppp.1772-BIB0048|ppp1772-cit-0048',
     'doi-asserted-by': 'crossref',
     'first-page': '175',
     'DOI': '10.1111/j.1468-0459.2011.00430.x',
     'article-title': 'A regional inventory of rock glaciers and ice-cored moraines in Norway',
     'volume': '93',
     'author': 'Lilleøren',
     'year': '2011',
     'journal-title': 'Geografiska Annaler'},
    {'key': '10.1002/ppp.1772-BIB0049|ppp1772-cit-0049',
     'doi-asserted-by': 'crossref',
     'first-page': '209',
     'DOI': '10.1016/j.gloplacha.2012.05.016',
     'article-title': 'The relative age of mountain permafrost - estimation of Holocene permafrost limits in Norway',
     'volume': '92-93',
     'author': 'Lilleøren',
     'year': '2012',
     'journal-title': 'Global and Planetary Change'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0050|ppp1772-cit-0050',
     'doi-asserted-by': 'crossref',
     'first-page': '369',
     'DOI': '10.1002/ppp.602',
     'article-title': 'Effect of climate change on runoff in a basin with mountain permafrost, northwest China',
     'volume': '18',
     'author': 'Liu',
     'year': '2007',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '187',
     'key': '10.1002/ppp.1772-BIB0051|ppp1772-cit-0051',
     'doi-asserted-by': 'crossref',
     'first-page': '696',
     'DOI': '10.3189/002214308786570881',
     'article-title': 'A sensitivity study of factors influencing warm/thin permafrost in the Swiss Alps',
     'volume': '54',
     'author': 'Luetschg',
     'year': '2008',
     'journal-title': 'Journal of Glaciology'},
    {'issue': '3-4',
     'key': '10.1002/ppp.1772-BIB0052|ppp1772-cit-0052',
     'doi-asserted-by': 'crossref',
     'first-page': '311',
     'DOI': '10.1016/j.gloplacha.2006.07.023',
     'article-title': 'Permafrost warming in the Tien Shan Mountains, Central Asia',
     'volume': '56',
     'author': 'Marchenko',
     'year': '2007',
     'journal-title': 'Global and Planetary Change'},
    {'issue': '3',
     'key': '10.1002/ppp.1772-BIB0053|ppp1772-cit-0053',
     'doi-asserted-by': 'crossref',
     'first-page': '274',
     'DOI': '10.2307/1552484',
     'article-title': 'Snowmelt evolution mapping using an energy balance approach over an alpine terrain',
     'volume': '34',
     'author': 'Mittaz',
     'year': '2002',
     'journal-title': 'Arctic, Antarctic, and Alpine Research'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0054|ppp1772-cit-0054',
     'doi-asserted-by': 'crossref',
     'first-page': '273',
     'DOI': '10.1002/ppp.738',
     'article-title': 'Editorial',
     'volume': '22',
     'author': 'Murton',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0055|ppp1772-cit-0055',
     'doi-asserted-by': 'crossref',
     'first-page': '85',
     'DOI': '10.5194/tc-3-85-2009',
     'article-title': 'Transient thermal effects in Alpine permafrost',
     'volume': '3',
     'author': 'Noetzli',
     'year': '2009',
     'journal-title': 'The Cryosphere'},
    {'issue': 'F2',
     'key': '10.1002/ppp.1772-BIB0056|ppp1772-cit-0056',
     'doi-asserted-by': 'crossref',
     'DOI': '10.1029/2006JF000545',
     'article-title': 'Three-dimensional distribution and evolution of permafrost temperatures in idealized high-mountain topography',
     'volume': '112',
     'author': 'Noetzli',
     'year': '2007',
     'journal-title': 'Journal of Geophysical Research-Earth Surface'},
    {'issue': '1',
     'key': '10.1002/ppp.1772-BIB0057|ppp1772-cit-0057',
     'doi-asserted-by': 'crossref',
     'first-page': '23',
     'DOI': '10.1016/j.coldregions.2009.01.005',
     'article-title': 'Active layer thickness calculation over the Qinghai-Tibet Plateau',
     'volume': '57',
     'author': 'Pang',
     'year': '2009',
     'journal-title': 'Cold Regions Science and Technology'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0058|ppp1772-cit-0058',
     'doi-asserted-by': 'crossref',
     'first-page': '278',
     'DOI': '10.1080/00291950802517890',
     'article-title': 'Statistic-empirical modelling of mountain permafrost distribution in the Abisko region, sub-Arctic northern Sweden',
     'volume': '62',
     'author': 'Ridefelt',
     'year': '2008',
     'journal-title': 'Norsk Geografisk Tidsskrift-Norwegian Journal of Geography'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0059|ppp1772-cit-0059',
     'doi-asserted-by': 'crossref',
     'first-page': '137',
     'DOI': '10.1002/ppp.615',
     'article-title': 'Recent advances in permafrost modelling',
     'volume': '19',
     'author': 'Riseborough',
     'year': '2008',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0060|ppp1772-cit-0060',
     'doi-asserted-by': 'crossref',
     'first-page': '106',
     'DOI': '10.1002/ppp.689',
     'article-title': 'Permafrost Thermal State in the Polar Northern Hemisphere during the International Polar Year 2007-2009: a Synthesis',
     'volume': '21',
     'author': 'Romanovsky',
     'year': '2010a',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0061|ppp1772-cit-0061',
     'doi-asserted-by': 'crossref',
     'first-page': '136',
     'DOI': '10.1002/ppp.683',
     'article-title': 'Thermal state of permafrost in Russia',
     'volume': '22',
     'author': 'Romanovsky',
     'year': '2010b',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '6',
     'key': '10.1002/ppp.1772-BIB0062|ppp1772-cit-0062',
     'doi-asserted-by': 'crossref',
     'first-page': '1323',
     'DOI': '10.5194/tc-6-1323-2012',
     'article-title': 'Simulating snow maps for Norway: description and statistical evaluation of the seNorge snow model',
     'volume': '6',
     'author': 'Saloranta',
     'year': '2012',
     'journal-title': 'The Cryosphere'},
    {'issue': '1-2',
     'key': '10.1002/ppp.1772-BIB0063|ppp1772-cit-0063',
     'doi-asserted-by': 'crossref',
     'first-page': '188',
     'DOI': '10.1016/j.gloplacha.2006.07.006',
     'article-title': 'The application of Regional Climate Model output for the simulation of high-mountain permafrost scenarios',
     'volume': '56',
     'author': 'Salzmann',
     'year': '2007a',
     'journal-title': 'Global and Planetary Change'},
    {'issue': 'F2',
     'key': '10.1002/ppp.1772-BIB0064|ppp1772-cit-0064',
     'doi-asserted-by': 'crossref',
     'DOI': '10.1029/2006JF000527',
     'article-title': 'Ground surface temperature scenarios in complex high-mountain topography based on regional climate model results',
     'volume': '112',
     'author': 'Salzmann',
     'year': '2007b',
     'journal-title': 'Journal of Geophysical Research-Earth Surface'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0065|ppp1772-cit-0065',
     'doi-asserted-by': 'crossref',
     'first-page': '325',
     'DOI': '10.1002/ppp.694',
     'article-title': 'Meltwater Infiltration into the Frozen Active Layer at an Alpine Permafrost Site',
     'volume': '21',
     'author': 'Scherler',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0066|ppp1772-cit-0066',
     'doi-asserted-by': 'crossref',
     'first-page': '117',
     'DOI': '10.1002/ppp.690',
     'article-title': 'Thermal State of Permafrost in North America: A Contribution to the International Polar Year',
     'volume': '21',
     'author': 'Smith',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0067|ppp1772-cit-0067',
     'doi-asserted-by': 'crossref',
     'first-page': '182',
     'DOI': '10.1002/ppp.685',
     'article-title': 'Thermal State of Permafrost and Active-layer Monitoring in the Antarctic: Advances During the International Polar Year 2007-2009',
     'volume': '21',
     'author': 'Vieira',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1772-BIB0068|ppp1772-cit-0068',
     'author': 'Vonder Mühll',
     'first-page': '1869',
     'year': '2008',
     'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
    {'key': '10.1002/ppp.1772-BIB0069|ppp1772-cit-0069',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1016/j.sedgeo.2012.02.005',
     'article-title': 'Glacier-permafrost interactions: Processes, products and glaciological implications',
     'volume': '255',
     'author': 'Waller',
     'year': '2012',
     'journal-title': 'Sedimentary Geology'},
    {'issue': '3',
     'key': '10.1002/ppp.1772-BIB0070|ppp1772-cit-0070',
     'doi-asserted-by': 'crossref',
     'first-page': '741',
     'DOI': '10.5194/tc-5-741-2011',
     'article-title': 'Modeling the thermal dynamics of the active layer at two contrasting permafrost sites on Svalbard and on the Tibetan Plateau',
     'volume': '5',
     'author': 'Weismüller',
     'year': '2011',
     'journal-title': 'The Cryosphere'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0071|ppp1772-cit-0071',
     'doi-asserted-by': 'crossref',
     'first-page': '945',
     'DOI': '10.5194/tc-5-945-2011',
     'article-title': 'Modeling the impact of wintertime rain events on the thermal regime of permafrost',
     'volume': '5',
     'author': 'Westermann',
     'year': '2011',
     'journal-title': 'The Cryosphere'},
    {'issue': '4',
     'key': '10.1002/ppp.1772-BIB0072|ppp1772-cit-0072',
     'doi-asserted-by': 'crossref',
     'first-page': '893',
     'DOI': '10.5194/tc-5-893-2011',
     'article-title': 'Spatio-temporal measurements and analysis of snow depth in a rock face',
     'volume': '5',
     'author': 'Wirz',
     'year': '2011',
     'journal-title': 'The Cryosphere'},
    {'issue': '3',
     'key': '10.1002/ppp.1772-BIB0073|ppp1772-cit-0073',
     'doi-asserted-by': 'crossref',
     'first-page': '607',
     'DOI': '10.5194/tc-6-607-2012',
     'article-title': 'Thermal state of the active layer and permafrost along the Qinghai-Xizang (Tibet) Railway from 2006 to 2010',
     'volume': '6',
     'author': 'Wu',
     'year': '2012',
     'journal-title': 'The Cryosphere'},
    {'issue': 'F2',
     'key': '10.1002/ppp.1772-BIB0074|ppp1772-cit-0074',
     'doi-asserted-by': 'crossref',
     'first-page': 'F02S01',
     'DOI': '10.1029/2007JF000821',
     'article-title': 'Introduction to special section: Permafrost and Seasonally Frozen Ground Under a Changing Climate',
     'volume': '112',
     'author': 'Zhang',
     'year': '2007',
     'journal-title': 'Journal of Geophysical Research'},
    {'issue': '2',
     'key': '10.1002/ppp.1772-BIB0075|ppp1772-cit-0075',
     'doi-asserted-by': 'crossref',
     'first-page': '198',
     'DOI': '10.1002/ppp.688',
     'article-title': 'Thermal State of Permafrost and Active Layer in Central Asia during the International Polar Year',
     'volume': '21',
     'author': 'Zhao',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1772',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2019, 7, 12]],
    'date-time': '2019-07-12T12:23:23Z',
    'timestamp': 1562934203000},
   'score': 15.395377,
   'subtitle': ['Recent Advances in Mountain Permafrost Research'],
   'issued': {'date-parts': [[2013, 4]]},
   'references-count': 76,
   'journal-issue': {'published-print': {'date-parts': [[2013, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.1772',
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
  {'indexed': {'date-parts': [[2020, 3, 30]],
    'date-time': '2020-03-30T00:13:29Z',
    'timestamp': 1585527209833},
   'reference-count': 0,
   'publisher': 'Wiley',
   'issue': '4',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 700,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2013, 10]]},
   'DOI': '10.1002/ppp.1795',
   'type': 'journal-article',
   'created': {'date-parts': [[2013, 12, 3]],
    'date-time': '2013-12-03T08:16:38Z',
    'timestamp': 1386058598000},
   'page': '347-349',
   'source': 'Crossref',
   'is-referenced-by-count': 0,
   'title': ['Report from the International Permafrost Association: High level of permafrost interdisciplinary research activity'],
   'prefix': '10.1002',
   'volume': '24',
   'author': [{'given': 'Hanne H.',
     'family': 'Christiansen',
     'sequence': 'first',
     'affiliation': []}],
   'member': '311',
   'published-online': {'date-parts': [[2013, 12, 3]]},
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1795',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2017, 3, 29]],
    'date-time': '2017-03-29T07:02:13Z',
    'timestamp': 1490770933000},
   'score': 15.395377,
   'subtitle': ['IPA Report'],
   'issued': {'date-parts': [[2013, 10]]},
   'references-count': 0,
   'journal-issue': {'published-print': {'date-parts': [[2013, 10]]},
    'issue': '4'},
   'URL': 'http://dx.doi.org/10.1002/ppp.1795',
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
  {'indexed': {'date-parts': [[2020, 4, 29]],
    'date-time': '2020-04-29T03:40:06Z',
    'timestamp': 1588131606076},
   'reference-count': 23,
   'publisher': 'Wiley',
   'issue': '4',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 3165,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost Periglac. Process.'],
   'published-print': {'date-parts': [[2007, 10]]},
   'DOI': '10.1002/ppp.603',
   'type': 'journal-article',
   'created': {'date-parts': [[2007, 12, 3]],
    'date-time': '2007-12-03T23:38:10Z',
    'timestamp': 1196725090000},
   'page': '385-392',
   'source': 'Crossref',
   'is-referenced-by-count': 3,
   'title': ['Report from the International Permafrost Association: a brief history of the international permafrost conferences (1963–2003)'],
   'prefix': '10.1002',
   'volume': '18',
   'author': [{'given': 'Jerry',
     'family': 'Brown',
     'sequence': 'first',
     'affiliation': []},
    {'given': 'H. Jesse',
     'family': 'Walker',
     'sequence': 'additional',
     'affiliation': []}],
   'member': '311',
   'published-online': {'date-parts': [[2007]]},
   'reference': [{'key': '10.1002/ppp.603-BIB1',
     'author': 'Brown',
     'volume': '33',
     'first-page': '19',
     'year': '1988a',
     'journal-title': 'Geotimes'},
    {'key': '10.1002/ppp.603-BIB2',
     'author': 'Brown',
     'volume': '2',
     'first-page': '90',
     'year': '1988b',
     'journal-title': 'Arctic Research of the United States'},
    {'key': '10.1002/ppp.603-BIB3',
     'author': 'Brown',
     'volume': '6',
     'first-page': '2',
     'year': '1989',
     'journal-title': 'Frozen Ground'},
    {'key': '10.1002/ppp.603-BIB4',
     'author': 'Bulletin of the International Permafrost Association',
     'volume': '14',
     'first-page': '5',
     'year': '1993',
     'journal-title': 'Frozen Ground'},
    {'key': '10.1002/ppp.603-BIB5',
     'author': 'French',
     'volume': '21',
     'first-page': '257',
     'year': '1998a',
     'journal-title': 'Episodes',
     'DOI': '10.18814/epiiugs/1998/v21i4/008',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.603-BIB6',
     'author': 'French',
     'volume': '22',
     'first-page': '3',
     'year': '1998b',
     'journal-title': 'Frozen Ground'},
    {'key': '10.1002/ppp.603-BIB7',
     'author': 'French',
     'volume': '37',
     'first-page': '45',
     'year': '1998',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.603-BIB8',
     'author': 'Haeberli',
     'volume': '27',
     'first-page': '3',
     'year': '2003',
     'journal-title': 'Frozen Ground'},
    {'key': '10.1002/ppp.603-BIB9',
     'author': 'Jahn',
     'volume': '31',
     'first-page': '119',
     'year': '1986',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.603-BIB10',
     'author': 'Kamensky',
     'first-page': '210',
     'year': '1998',
     'unstructured': ', , . 1998. Problems of Geocryology. SB RAS Publishers: Yakutsk; 210 pp.',
     'volume-title': 'Problems of Geocryology'},
    {'key': '10.1002/ppp.603-BIB11',
     'author': 'Muller',
     'year': '1947',
     'unstructured': '1947. Permafrost or Permanently Frozen Ground and Related Engineering Problems. JW Edwards: Ann Arbor, Michigan.',
     'volume-title': 'Permafrost or Permanently Frozen Ground and Related Engineering Problems'},
    {'key': '10.1002/ppp.603-BIB12',
     'author': 'Péwé',
     'volume': '1',
     'first-page': '29',
     'year': '1973a',
     'journal-title': 'Arctic Bulletin'},
    {'key': '10.1002/ppp.603-BIB13',
     'author': 'Péwé',
     'volume': '18',
     'first-page': '23',
     'year': '1973b',
     'journal-title': 'Geotimes'},
    {'key': '10.1002/ppp.603-BIB14',
     'author': 'Péwé',
     'volume': '9',
     'first-page': '253',
     'year': '1973c',
     'journal-title': 'Zeitschrift fur Gletschkunde und Glazialgeologie'},
    {'key': '10.1002/ppp.603-BIB15',
     'author': 'Péwé',
     'volume': '15',
     'first-page': '119',
     'year': '1979',
     'journal-title': 'Zeitschrift fur Gletscherkunde und Glazialgeologie'},
    {'key': '10.1002/ppp.603-BIB16',
     'author': 'Péwé',
     'volume': '18',
     'first-page': '169',
     'year': '1982',
     'journal-title': 'Zeitschrift fur Gletscherkunde und Glazialgeologie'},
    {'key': '10.1002/ppp.603-BIB17',
     'author': 'Péwé',
     'volume': '29',
     'first-page': '10',
     'year': '1984',
     'journal-title': 'Geotimes'},
    {'key': '10.1002/ppp.603-BIB18',
     'author': 'Péwé',
     'volume': '31',
     'first-page': '223',
     'year': '1986',
     'journal-title': 'Biuletyn Peryglacjalny'},
    {'key': '10.1002/ppp.603-BIB19',
     'first-page': '974',
     'volume-title': 'Permafrost Sixth International Conference, Proceedings',
     'volume': '2',
     'author': 'Schmitt',
     'year': '1993',
     'unstructured': '1993. Field trip A-1 from Lanzhou to Lhasa (July 12-22,1993) and Tien Shan field trip, A-2 (July 11-18, 1993). In Permafrost Sixth International Conference, Proceedings, July 5–9, 1993, Beijing, China. South China University of the Technology Press: Wushan Guangzhou; 2: 974–982.'},
    {'key': '10.1002/ppp.603-BIB20',
     'author': 'Snezhko',
     'volume': '10',
     'first-page': '212',
     'year': '1964',
     'journal-title': 'Problemy Severa'},
    {'key': '10.1002/ppp.603-BIB21',
     'author': 'Tsytovich',
     'volume': '258',
     'year': '1963',
     'unstructured': '(ed.). 1963. International Conference on Permafrost (1963: Lafayette, Ind.). Doklady na Mezhdunarodnoi konferentsii po merzlotovedeniiu. Izd-vo Akademii nauk SSSR: Moskva; 258: ill, maps (1 folded).',
     'volume-title': 'Doklady na Mezhdunarodnoi konferentsii po merzlotovedeniiu'},
    {'key': '10.1002/ppp.603-BIB22',
     'author': 'Vyalov',
     'year': '1968',
     'unstructured': ", , , . 1968. Permafrost and construction experience in the USA and Canada (based on data of International Conference on Permafrost in the USA), Moscow. Izdatel'stvo literatury po stroitel'stvy, 94 pp."},
    {'key': '10.1002/ppp.603-BIB23',
     'author': 'Woods',
     'volume': '143',
     'first-page': '1060',
     'year': '1964',
     'journal-title': 'Science',
     'DOI': '10.1126/science.143.3610.1060',
     'doi-asserted-by': 'crossref'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.603',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2020, 4, 29]],
    'date-time': '2020-04-29T03:22:48Z',
    'timestamp': 1588130568000},
   'score': 15.395377,
   'issued': {'date-parts': [[2007]]},
   'references-count': 23,
   'journal-issue': {'published-print': {'date-parts': [[2007, 10]]},
    'issue': '4'},
   'URL': 'http://dx.doi.org/10.1002/ppp.603',
   'relation': {'cites': []},
   'ISSN': ['1045-6740', '1099-1530'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'},
    {'value': '1099-1530', 'type': 'electronic'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 6, 13]],
    'date-time': '2020-06-13T04:43:32Z',
    'timestamp': 1592023412286},
   'reference-count': 62,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 883,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2013, 4]]},
   'DOI': '10.1002/ppp.1777',
   'type': 'journal-article',
   'created': {'date-parts': [[2013, 6, 13]],
    'date-time': '2013-06-13T03:55:38Z',
    'timestamp': 1371095738000},
   'page': '120-130',
   'source': 'Crossref',
   'is-referenced-by-count': 37,
   'title': ['Recent Progress Regarding Permafrost Coasts'],
   'prefix': '10.1002',
   'volume': '24',
   'author': [{'given': 'H.',
     'family': 'Lantuit',
     'sequence': 'first',
     'affiliation': [{'name': 'Alfred Wegener Institute for Polar and Marine Research; Potsdam; Germany'}]},
    {'given': 'P. P.',
     'family': 'Overduin',
     'sequence': 'additional',
     'affiliation': [{'name': 'Alfred Wegener Institute for Polar and Marine Research; Potsdam; Germany'}]},
    {'given': 'S.',
     'family': 'Wetterich',
     'sequence': 'additional',
     'affiliation': [{'name': 'Alfred Wegener Institute for Polar and Marine Research; Potsdam; Germany'}]}],
   'member': '311',
   'published-online': {'date-parts': [[2013, 6, 12]]},
   'reference': [{'key': '10.1002/ppp.1777-BIB0001|ppp1777-cit-0001',
     'doi-asserted-by': 'crossref',
     'first-page': '141',
     'DOI': '10.1080/14786440708563715',
     'article-title': 'Some account of a journey to the frozen sea, and of the discovery of the remains of a mammoth',
     'volume': '29',
     'author': 'Adams',
     'year': '1807',
     'journal-title': 'Philosophical Magazine'},
    {'key': '10.1002/ppp.1777-BIB0002|ppp1777-cit-0002',
     'author': 'Aguirre',
     'first-page': '7',
     'year': '2008',
     'volume-title': 'Proceedings of the Ninth International Conference on Permafrost'},
    {'key': '10.1002/ppp.1777-BIB0003|ppp1777-cit-0003',
     'doi-asserted-by': 'crossref',
     'first-page': '243',
     'DOI': '10.2112/05-0572.1',
     'article-title': 'The A and m coefficients in the Bruun/Dean equilibrium profile equation seen from the Arctic',
     'volume': '24',
     'author': 'Are',
     'year': '2008',
     'journal-title': 'Journal of Coastal Research'},
    {'key': '10.1002/ppp.1777-BIB0004|ppp1777-cit-0004',
     'doi-asserted-by': 'crossref',
     'first-page': '110',
     'DOI': '10.2112/05-0573.1',
     'article-title': 'The influence of cryogenic processes on the erosional Arctic shoreface',
     'volume': '24',
     'author': 'Are',
     'year': '2008',
     'journal-title': 'Journal of Coastal Research'},
    {'key': '10.1002/ppp.1777-BIB0005|ppp1777-cit-0005',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1080/10889378809377343',
     'article-title': 'Thermal abrasion of sea coast',
     'volume': '12',
     'author': 'Are',
     'year': '1988',
     'journal-title': 'Polar Geography and Geology'},
    {'key': '10.1002/ppp.1777-BIB0006|ppp1777-cit-0006',
     'doi-asserted-by': 'crossref',
     'first-page': '1629',
     'DOI': '10.1007/s00300-010-0800-5',
     'article-title': 'Two mechanisms of aquatic and terrestrial habitat change along an Alaskan Arctic coastline',
     'volume': '33',
     'author': 'Arp',
     'year': '2010',
     'journal-title': 'Polar Biology'},
    {'key': '10.1002/ppp.1777-BIB0007|ppp1777-cit-0007',
     'unstructured': 'Brown J Solomon S 2000 Arctic coastal dynamics - report of an international workshop, Woods Hole, MA, November 2-4, 1999',
     'DOI': '10.4095/211796',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0008|ppp1777-cit-0008',
     'first-page': '117',
     'article-title': 'Sea-level rise as a cause of shore erosion',
     'volume': '88',
     'author': 'Bruun',
     'year': '1962',
     'journal-title': 'Journal of the Waterways and Harbours Division'},
    {'key': '10.1002/ppp.1777-BIB0009|ppp1777-cit-0009',
     'author': 'Carter',
     'first-page': '286',
     'year': '2011',
     'volume-title': 'Solutions to Coastal Disasters 2011: Proceedings of the 2011 Solutions to Coastal Disasters Conference',
     'DOI': '10.1061/41185(417)26',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0010|ppp1777-cit-0010',
     'doi-asserted-by': 'crossref',
     'first-page': '1917',
     'DOI': '10.5194/bgd-8-1917-2011',
     'article-title': 'Seasonal and interannual variability of sedimentation and organic matter distribution in the Buor Khaya Gulf- the primary recipient of input from Lena River and coastal erosion in the SE Laptev Sea',
     'volume': '8',
     'author': 'Charkin',
     'year': '2011',
     'journal-title': 'Biogeosciences Discussions'},
    {'key': '10.1002/ppp.1777-BIB0011|ppp1777-cit-0011',
     'author': 'Doody',
     'first-page': '38',
     'year': '2004',
     'volume-title': 'Living with Coastal Erosion in Europe: Sediment and Space for Sustainability: Results from the EUROSION Study'},
    {'key': '10.1002/ppp.1777-BIB0012|ppp1777-cit-0012',
     'doi-asserted-by': 'crossref',
     'first-page': '2368',
     'DOI': '10.2134/jeq2007.0403',
     'article-title': 'Estimating the impact of seawater on the production of soil water-extractable organic carbon during coastal erosion',
     'volume': '37',
     'author': 'Dou',
     'year': '2008',
     'journal-title': 'Journal of Environmental Quality'},
    {'key': '10.1002/ppp.1777-BIB0013|ppp1777-cit-0013',
     'doi-asserted-by': 'crossref',
     'first-page': '328',
     'DOI': '10.1016/j.geoderma.2009.10.020',
     'article-title': 'Spatial variation of tundra soil organic carbon along the coastline of northern Alaska',
     'volume': '154',
     'author': 'Dou',
     'year': '2010',
     'journal-title': 'Geoderma'},
    {'key': '10.1002/ppp.1777-BIB0014|ppp1777-cit-0014',
     'first-page': '178',
     'year': '2011',
     'volume-title': 'State of the Arctic Coast 2010 - Scientific Review and Outlook'},
    {'key': '10.1002/ppp.1777-BIB0015|ppp1777-cit-0015',
     'unstructured': 'Gibbs AE Harden EL Richmond BM Erikson LH 2011 Regional shoreline change and coastal erosion hazards in Arctic Alaska Solutions to Coastal Disasters 2011: Proceedings of the 2011 Solutions to Coastal Disasters Conference 258 272',
     'DOI': '10.1061/41185(417)24',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0016|ppp1777-cit-0016',
     'doi-asserted-by': 'crossref',
     'first-page': '174',
     'DOI': '10.2112/JCOASTRES-D-11-00031.1',
     'article-title': 'Historical and future coastal changes in northwest Alaska',
     'volume': '28',
     'author': 'Gorokhovich',
     'year': '2012',
     'journal-title': 'Journal of Coastal Research'},
    {'key': '10.1002/ppp.1777-BIB0017|ppp1777-cit-0017',
     'author': 'Günther',
     'first-page': '137',
     'year': '2012',
     'volume-title': 'Proceedings of the Tenth International Conference on Permafrost'},
    {'key': '10.1002/ppp.1777-BIB0018|ppp1777-cit-0018',
     'first-page': '507',
     'article-title': 'The influence of coastal morphology on shoreface sediment transport under storm-combined flows, Canadian Beaufort Sea',
     'volume': '17',
     'author': 'Héquette',
     'year': '2001',
     'journal-title': 'Journal of Coastal Research'},
    {'key': '10.1002/ppp.1777-BIB0019|ppp1777-cit-0019',
     'author': 'Hmiznikov',
     'first-page': '122',
     'year': '1937',
     'volume-title': "Severnyj morskoj put'. (Northern Sea Route)"},
    {'key': '10.1002/ppp.1777-BIB0020|ppp1777-cit-0020',
     'doi-asserted-by': 'crossref',
     'first-page': '1103',
     'DOI': '10.1139/T09-058',
     'article-title': 'Arctic coastal retreat through block failure',
     'volume': '46',
     'author': 'Hoque',
     'year': '2009',
     'journal-title': 'Canadian Geotechnical Journal'},
    {'key': '10.1002/ppp.1777-BIB0021|ppp1777-cit-0021',
     'author': 'Johnson',
     'first-page': '489',
     'year': '2003',
     'volume-title': 'Final Proceedings, 8th International Conference on Permafrost'},
    {'key': '10.1002/ppp.1777-BIB0022|ppp1777-cit-0022',
     'first-page': '361',
     'article-title': 'Modern erosion rates and loss of coastal features and sites, Beaufort Sea coastline, Alaska',
     'volume': '61',
     'author': 'Jones',
     'year': '2008',
     'journal-title': 'Arctic'},
    {'key': '10.1002/ppp.1777-BIB0023|ppp1777-cit-0023',
     'author': 'Jones',
     'volume': '36',
     'year': '2009a',
     'article-title': 'Increase in the rate and uniformity of coastline erosion in Arctic Alaska',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2008GL036205',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0024|ppp1777-cit-0024',
     'doi-asserted-by': 'crossref',
     'first-page': '129',
     'DOI': '10.1080/10889370903486449',
     'article-title': 'Erosional history of Cape Halkett and contemporary monitoring of bluff retreat, Beaufort Sea coast, Alaska',
     'volume': '32',
     'author': 'Jones',
     'year': '2009b',
     'journal-title': 'Polar Geography'},
    {'key': '10.1002/ppp.1777-BIB0025|ppp1777-cit-0025',
     'doi-asserted-by': 'crossref',
     'first-page': '69',
     'DOI': '10.1007/s00367-004-0188-8',
     'article-title': 'Classification of the Alaskan Beaufort Sea Coast and estimation of carbon and sediment inputs from coastal erosion',
     'volume': '25',
     'author': 'Jorgenson',
     'year': '2005',
     'journal-title': 'Geo-Marine Letters'},
    {'key': '10.1002/ppp.1777-BIB0026|ppp1777-cit-0026',
     'doi-asserted-by': 'crossref',
     'first-page': '143',
     'DOI': '10.1080/00167223.2010.10669504',
     'article-title': 'Coastal environments around Thule settlements in Northeast Greenland',
     'volume': '110',
     'author': 'Kroon',
     'year': '2010',
     'journal-title': 'Danish Journal of Geography'},
    {'key': '10.1002/ppp.1777-BIB0027|ppp1777-cit-0027',
     'author': 'Kroon',
     'volume': '3',
     'first-page': '2299',
     'year': '2011',
     'volume-title': 'The Proceedings of the Coastal Sediments 2011',
     'DOI': '10.1142/9789814355537_0172',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0028|ppp1777-cit-0028',
     'doi-asserted-by': 'crossref',
     'first-page': '84',
     'DOI': '10.1016/j.geomorph.2006.07.040',
     'article-title': 'Fifty years of coastal erosion and retrogressive thaw slump activity on Herschel Island, southern Beaufort Sea, Yukon Territory, Canada',
     'volume': '95',
     'author': 'Lantuit',
     'year': '2008',
     'journal-title': 'Geomorphology'},
    {'key': '10.1002/ppp.1777-BIB0029|ppp1777-cit-0029',
     'author': 'Lantuit',
     'first-page': '1025',
     'year': '2008',
     'volume-title': 'Ninth International Conference on Permafrost'},
    {'key': '10.1002/ppp.1777-BIB0030|ppp1777-cit-0030',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1016/j.margeo.2008.10.004',
     'article-title': 'Towards a calculation of organic carbon release from erosion of Arctic coasts using non-fractal coastline datasets',
     'volume': '257',
     'author': 'Lantuit',
     'year': '2009',
     'journal-title': 'Marine Geology'},
    {'key': '10.1002/ppp.1777-BIB0031|ppp1777-cit-0031',
     'doi-asserted-by': 'crossref',
     'first-page': '7341',
     'DOI': '10.3402/polar.v30i0.7341',
     'article-title': 'Coastal erosion dynamics on the permafrost-dominated Bykovsky Peninsula, north Siberia, 1951-2006',
     'volume': '30',
     'author': 'Lantuit',
     'year': '2011',
     'journal-title': 'Polar Research'},
    {'key': '10.1002/ppp.1777-BIB0032|ppp1777-cit-0032',
     'doi-asserted-by': 'crossref',
     'first-page': '383',
     'DOI': '10.1007/s12237-010-9362-6',
     'article-title': 'The Arctic Coastal Dynamics Database: A New Classification Scheme and Statistics on Arctic Permafrost Coastlines',
     'volume': '35',
     'author': 'Lantuit',
     'year': '2012a',
     'journal-title': 'Estuaries and Coasts'},
    {'key': '10.1002/ppp.1777-BIB0033|ppp1777-cit-0033',
     'doi-asserted-by': 'crossref',
     'first-page': '39',
     'DOI': '10.1002/ppp.1731',
     'article-title': 'Modern and Late Holocene Retrogressive Thaw Slump Activity on the Yukon Coastal Plain and Herschel Island, Yukon Territory, Canada',
     'volume': '23',
     'author': 'Lantuit',
     'year': '2012b',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1777-BIB0034|ppp1777-cit-0034',
     'author': 'Lantz',
     'volume': '35',
     'year': '2008',
     'article-title': 'Increasing rates of retrogressive thaw slump activity in the Mackenzie Delta region, NWT, Canada',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2007GL032433',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0035|ppp1777-cit-0035',
     'unstructured': 'Leffingwell EK 1919 The Canning River region, northern Alaska 251',
     'DOI': '10.3133/pp109',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0036|ppp1777-cit-0036',
     'doi-asserted-by': 'crossref',
     'first-page': '103',
     'DOI': '10.14430/arctic3536',
     'article-title': 'Notes on the shoreline recession along the coast of the Yukon Territory',
     'volume': '16',
     'author': 'Mackay',
     'year': '1963',
     'journal-title': 'Arctic'},
    {'key': '10.1002/ppp.1777-BIB0037|ppp1777-cit-0037',
     'unstructured': 'Mackay JR 1986 Fifty years (1935-1985) of coastal retreat west of Tuktoyaktuk, District of Mackenzie 727 735',
     'DOI': '10.4095/120445',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0038|ppp1777-cit-0038',
     'doi-asserted-by': 'crossref',
     'first-page': '107',
     'DOI': '10.3137/ao.450204',
     'article-title': 'Past and future forcing of Beaufort Sea coastal change',
     'volume': '45',
     'author': 'Manson',
     'year': '2007',
     'journal-title': 'Atmosphere-Ocean'},
    {'key': '10.1002/ppp.1777-BIB0039|ppp1777-cit-0039',
     'doi-asserted-by': 'crossref',
     'first-page': '583',
     'DOI': '10.1130/G23672A.1',
     'article-title': 'Quantitative remote sensing study indicates doubling of coastal erosion rate in past 50 yr along a segment of the Arctic coast of Alaska',
     'volume': '35',
     'author': 'Mars',
     'year': '2007',
     'journal-title': 'Geology'},
    {'key': '10.1002/ppp.1777-BIB0040|ppp1777-cit-0040',
     'author': 'Mason',
     'first-page': '73',
     'year': '2012',
     'volume-title': 'Pitfalls of Shoreline Stabilization',
     'DOI': '10.1007/978-94-007-4123-2_5',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0041|ppp1777-cit-0041',
     'doi-asserted-by': 'crossref',
     'first-page': '523',
     'DOI': '10.1890/08-2025.1',
     'article-title': 'Sensitivity of the carbon cycle in the Arctic to climate change',
     'volume': '79',
     'author': 'McGuire',
     'year': '2009',
     'journal-title': 'Ecological Monographs'},
    {'issue': 'F2',
     'key': '10.1002/ppp.1777-BIB0042|ppp1777-cit-0042',
     'doi-asserted-by': 'crossref',
     'DOI': '10.1029/2011JF002088',
     'article-title': 'Geoelectric observations of the degradation of nearshore submarine permafrost at Barrow (Alaskan Beaufort Sea)',
     'volume': '117',
     'author': 'Overduin',
     'year': '2012',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1777-BIB0043|ppp1777-cit-0043',
     'author': 'Overeem',
     'volume': '38',
     'year': '2011',
     'article-title': 'Sea ice loss enhances wave action at the Arctic coast',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2011GL048681',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0044|ppp1777-cit-0044',
     'author': 'Ping',
     'volume': '116',
     'year': '2011',
     'article-title': 'Soil carbon and material fluxes across the eroding Alaska Beaufort Sea coastline',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/2010JG001588',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0045|ppp1777-cit-0045',
     'doi-asserted-by': 'crossref',
     'first-page': '450',
     'DOI': '10.1007/s005310000113',
     'article-title': 'Coastal erosion vs. riverine sediment discharge in the Arctic shelf seas',
     'volume': '89',
     'author': 'Rachold',
     'year': '2000',
     'journal-title': 'International Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1777-BIB0046|ppp1777-cit-0046',
     'doi-asserted-by': 'crossref',
     'first-page': '33',
     'DOI': '10.1007/978-3-642-18912-8_2',
     'article-title': 'Modern terrigenous organic carbon input to the Arctic Ocean',
     'volume': '1',
     'author': 'Rachold',
     'year': '2004',
     'journal-title': 'The Organic Carbon Cycle in the Arctic Ocean'},
    {'key': '10.1002/ppp.1777-BIB0047|ppp1777-cit-0047',
     'doi-asserted-by': 'crossref',
     'first-page': '63',
     'DOI': '10.1007/s00367-004-0187-9',
     'article-title': 'Arctic coastal dynamics (ACD): an introduction',
     'volume': '25',
     'author': 'Rachold',
     'year': '2005',
     'journal-title': 'Geo-Marine Letters'},
    {'key': '10.1002/ppp.1777-BIB0048|ppp1777-cit-0048',
     'doi-asserted-by': 'crossref',
     'first-page': '122',
     'DOI': '10.1061/(ASCE)WW.1943-5460.0000106',
     'article-title': 'Process-Based Coastal Erosion Modeling for Drew Point, North Slope, Alaska',
     'volume': '138',
     'author': 'Ravens',
     'year': '2011',
     'journal-title': 'Journal of Waterway, Port, Coastal, and Ocean Engineering'},
    {'key': '10.1002/ppp.1777-BIB0049|ppp1777-cit-0049',
     'unstructured': 'Reimnitz E Graves SM Barnes PW 1985 Beaufort Sea coastal erosion, shoreline evolution, and sediment flux 67',
     'DOI': '10.3133/ofr85380',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1777-BIB0050|ppp1777-cit-0050',
     'doi-asserted-by': 'crossref',
     'first-page': '2407',
     'DOI': '10.5194/bg-8-2407-2011',
     'article-title': 'Carbon transport by the Lena River from its headwaters to the Arctic Ocean, with emphasis on fluvial input of terrestrial particulate organic carbon vs. carbon transport by coastal erosion',
     'volume': '8',
     'author': 'Semiletov',
     'year': '2011',
     'journal-title': 'Biogeosciences'},
    {'key': '10.1002/ppp.1777-BIB0051|ppp1777-cit-0051',
     'doi-asserted-by': 'crossref',
     'first-page': '127',
     'DOI': '10.1007/s00367-004-0194-x',
     'article-title': 'Spatial and temporal variability of shoreline change in the Beaufort-Mackenzie region, northwest territories, Canada',
     'volume': '25',
     'author': 'Solomon',
     'year': '2005',
     'journal-title': 'Geo-Marine Letters'},
    {'key': '10.1002/ppp.1777-BIB0052|ppp1777-cit-0052',
     'doi-asserted-by': 'crossref',
     'first-page': '115',
     'DOI': '10.1146/annurev.fl.27.010195.000555',
     'article-title': 'Of ocean waves and sea ice',
     'volume': '27',
     'author': 'Squire',
     'year': '1995',
     'journal-title': 'Annual Review of Fluid Mechanics'},
    {'key': '10.1002/ppp.1777-BIB0053|ppp1777-cit-0053',
     'doi-asserted-by': 'crossref',
     'first-page': '213',
     'DOI': '10.14430/arctic976',
     'article-title': 'Raised gravel beaches as proxy indicators of past sea-ice and wave conditions, Lowther Island, Canadian Arctic Archipelago',
     'volume': '63',
     'author': 'St Hilaire-Gravel',
     'year': '2010',
     'journal-title': 'Arctic'},
    {'key': '10.1002/ppp.1777-BIB0054|ppp1777-cit-0054',
     'doi-asserted-by': 'crossref',
     'first-page': '421',
     'DOI': '10.2112/JCOASTRES-D-11-00020.1',
     'article-title': 'Multitemporal analysis of a gravel-dominated coastline in the central Canadian Arctic Archipelago',
     'volume': '28',
     'author': 'St Hilaire-Gravel',
     'year': '2012',
     'journal-title': 'Journal of Coastal Research'},
    {'key': '10.1002/ppp.1777-BIB0055|ppp1777-cit-0055',
     'doi-asserted-by': 'crossref',
     'first-page': '79',
     'DOI': '10.1657/1523-0430-41.1.79',
     'article-title': 'Erosion of sediment and organic carbon from the Kara Sea coast',
     'volume': '41',
     'author': 'Streletskaya',
     'year': '2009',
     'journal-title': 'Arctic, Antarctic, and Alpine Research'},
    {'key': '10.1002/ppp.1777-BIB0056|ppp1777-cit-0056',
     'doi-asserted-by': 'crossref',
     'first-page': '239',
     'DOI': '10.2478/v10183-011-0017-5',
     'article-title': 'Schmidt hammer tests across a recently deglacierized rocky coastal zone in Spitsbergen - is there a “coastal amplification” of rock weathering in polar climates?',
     'volume': '32',
     'author': 'Strzelecki',
     'year': '2011a',
     'journal-title': 'Polish Polar Research'},
    {'key': '10.1002/ppp.1777-BIB0057|ppp1777-cit-0057',
     'doi-asserted-by': 'crossref',
     'first-page': '101',
     'DOI': '10.2478/v10117-011-0030-0',
     'article-title': 'Cold shores in warming times-current state and future challenges in High Arctic coastal geomorphological studies',
     'volume': '30',
     'author': 'Strzelecki',
     'year': '2011b',
     'journal-title': 'Quaestiones Geographicae'},
    {'key': '10.1002/ppp.1777-BIB0058|ppp1777-cit-0058',
     'author': 'Tweedie',
     'first-page': '425',
     'year': '2012',
     'volume-title': 'Proceedings of the Tenth International Conference on Permafrost'},
    {'key': '10.1002/ppp.1777-BIB0059|ppp1777-cit-0059',
     'doi-asserted-by': 'crossref',
     'first-page': '110',
     'DOI': '10.1007/s00367-004-0192-z',
     'article-title': 'Coastal Dynamics at the Barents and Kara Sea key sites',
     'volume': '25',
     'author': 'Vasiliev',
     'year': '2005',
     'journal-title': 'Geo-Marine Letters'},
    {'key': '10.1002/ppp.1777-BIB0060|ppp1777-cit-0060',
     'doi-asserted-by': 'crossref',
     'first-page': '137',
     'DOI': '10.1038/nature11392',
     'article-title': 'Activation of old carbon by erosion of coastal and subsea permafrost in Arctic Siberia',
     'volume': '489',
     'author': 'Vonk',
     'year': '2012',
     'journal-title': 'Nature'},
    {'key': '10.1002/ppp.1777-BIB0061|ppp1777-cit-0061',
     'author': 'Walker',
     'first-page': '49',
     'year': '2005',
     'volume-title': 'Encyclopedia of Coastal Science'},
    {'key': '10.1002/ppp.1777-BIB0062|ppp1777-cit-0062',
     'doi-asserted-by': 'crossref',
     'first-page': '474',
     'DOI': '10.1657/1938-4246-43.3.474',
     'article-title': 'Thermal erosion of a permafrost coastline: Improving process-based models using time-lapse photography',
     'volume': '43',
     'author': 'Wobus',
     'year': '2011',
     'journal-title': 'Arctic, Antarctic, and Alpine Research'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1777',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2019, 7, 15]],
    'date-time': '2019-07-15T08:16:37Z',
    'timestamp': 1563178597000},
   'score': 15.395377,
   'subtitle': ['Erosion of Permafrost Coasts'],
   'issued': {'date-parts': [[2013, 4]]},
   'references-count': 62,
   'journal-issue': {'published-print': {'date-parts': [[2013, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.1777',
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 7, 17]],
    'date-time': '2020-07-17T15:11:25Z',
    'timestamp': 1594998685121},
   'reference-count': 43,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 883,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2013, 4]]},
   'DOI': '10.1002/ppp.1774',
   'type': 'journal-article',
   'created': {'date-parts': [[2013, 4, 26]],
    'date-time': '2013-04-26T02:22:23Z',
    'timestamp': 1366942943000},
   'page': '131-137',
   'source': 'Crossref',
   'is-referenced-by-count': 33,
   'title': ['New Concepts in Geophysical Surveying and Data Interpretation for Permafrost Terrain'],
   'prefix': '10.1002',
   'volume': '24',
   'author': [{'given': 'Christian',
     'family': 'Hauck',
     'sequence': 'first',
     'affiliation': [{'name': 'Department of Geosciences; University of Fribourg; Fribourg; Switzerland'}]}],
   'member': '311',
   'published-online': {'date-parts': [[2013, 4, 25]]},
   'reference': [{'key': '10.1002/ppp.1774-BIB0001|ppp1774-cit-0001',
     'doi-asserted-by': 'crossref',
     'first-page': '479',
     'DOI': '10.1016/j.jhydrol.2009.05.011',
     'article-title': 'Estimating 3D variation in active-layer thickness beneath arctic streams using ground-penetrating radar',
     'volume': '373',
     'author': 'Brosten',
     'year': '2009',
     'journal-title': 'Journal of Hydrology'},
    {'key': '10.1002/ppp.1774-BIB0002|ppp1774-cit-0002',
     'doi-asserted-by': 'crossref',
     'first-page': 'E193',
     'DOI': '10.1190/1.2762224',
     'article-title': 'Cross-property relations between electrical conductivity and the seismic velocity of rocks',
     'volume': '72',
     'author': 'Carcione',
     'year': '2007',
     'journal-title': 'Geophysics'},
    {'key': '10.1002/ppp.1774-BIB0003|ppp1774-cit-0003',
     'author': 'Day-Lewis',
     'volume': '110',
     'year': '2005',
     'article-title': 'Applying petrophysical models to radar traveltime and electrical resistivity tomograms: resolution-dependent limitations',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/2004JB003569',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1774-BIB0004|ppp1774-cit-0004',
     'doi-asserted-by': 'crossref',
     'first-page': 'F02S90',
     'DOI': '10.1029/2006JF000585',
     'article-title': 'Geophysical mapping of ground ice using a combination of capacitive coupled resistivity and ground-penetrating radar, Northwest Territories, Canada',
     'volume': '113',
     'author': 'De Pascale',
     'year': '2008',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1774-BIB0005|ppp1774-cit-0005',
     'doi-asserted-by': 'crossref',
     'first-page': '1163',
     'DOI': '10.5194/tc-6-1163-2012',
     'article-title': 'P-wave velocity changes in freezing hard low-porosity rocks: a laboratory-based time-average model',
     'volume': '6',
     'author': 'Draebing',
     'year': '2012',
     'journal-title': 'The Cryosphere'},
    {'key': '10.1002/ppp.1774-BIB0006|ppp1774-cit-0006',
     'unstructured': 'Fortier R Savard C 2010 Engineering geophysical investigation of permafrost conditions underneath airfield embankments in northern Quebec (Canada)'},
    {'key': '10.1002/ppp.1774-BIB0007|ppp1774-cit-0007',
     'doi-asserted-by': 'crossref',
     'first-page': '367',
     'DOI': '10.1139/E08-004',
     'article-title': 'Internal structure and conditions of permafrost mounds at Umiujaq in Nunavik, Canada, inferred from field investigation and electrical resistivity tomography',
     'volume': '45',
     'author': 'Fortier',
     'year': '2008',
     'journal-title': 'Canadian Journal of Earth Sciences'},
    {'key': '10.1002/ppp.1774-BIB0008|ppp1774-cit-0008',
     'doi-asserted-by': 'crossref',
     'first-page': '720',
     'DOI': '10.1139/t10-101',
     'article-title': 'Impacts of permafrost degradation on a road embankment at Umiujaq in Nunavik (Quebec). Canada',
     'volume': '48',
     'author': 'Fortier',
     'year': '2011',
     'journal-title': 'Canadian Geotechnical Journal'},
    {'key': '10.1002/ppp.1774-BIB0009|ppp1774-cit-0009',
     'doi-asserted-by': 'crossref',
     'first-page': '2016',
     'DOI': '10.1029/2002GL014995',
     'article-title': 'Frozen ground monitoring using DC resistivity tomography',
     'volume': '29',
     'author': 'Hauck',
     'year': '2002',
     'journal-title': 'Geophysical Research Letters'},
    {'key': '10.1002/ppp.1774-BIB0010|ppp1774-cit-0010',
     'author': 'Hauck',
     'first-page': '240',
     'year': '2008',
     'volume-title': 'Applied Geophysics in Periglacial Environments',
     'DOI': '10.1017/CBO9780511535628',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1774-BIB0011|ppp1774-cit-0011',
     'doi-asserted-by': 'crossref',
     'first-page': '453',
     'DOI': '10.5194/tc-5-453-2011',
     'article-title': 'A new model for estimating subsurface ice content based on combined electrical and seismic data sets',
     'volume': '5',
     'author': 'Hauck',
     'year': '2011',
     'journal-title': 'The Cryosphere'},
    {'key': '10.1002/ppp.1774-BIB0012|ppp1774-cit-0012',
     'doi-asserted-by': 'crossref',
     'first-page': '351',
     'DOI': '10.1002/ppp.601',
     'article-title': 'Internal structure and ice content of Reichenkar rock glacier (Stubai Alps, Austria) assessed by geophysical investigations',
     'volume': '18',
     'author': 'Hausmann',
     'year': '2007',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1774-BIB0013|ppp1774-cit-0013',
     'doi-asserted-by': 'crossref',
     'first-page': '243',
     'DOI': '10.5194/tc-4-243-2010',
     'article-title': 'Time-lapse refraction seismic tomography for the detection of ground ice degradation',
     'volume': '4',
     'author': 'Hilbich',
     'year': '2010',
     'journal-title': 'The Cryosphere'},
    {'key': '10.1002/ppp.1774-BIB0014|ppp1774-cit-0014',
     'doi-asserted-by': 'crossref',
     'first-page': 'F01S90',
     'DOI': '10.1029/2007JF000799',
     'article-title': 'Monitoring mountain permafrost evolution using electrical resistivity tomography: A 7-year study of seasonal, annual, and long-term variations at Schilthorn, Swiss Alps',
     'volume': '113',
     'author': 'Hilbich',
     'year': '2008',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1774-BIB0015|ppp1774-cit-0015',
     'doi-asserted-by': 'crossref',
     'first-page': '269',
     'DOI': '10.1002/ppp.652',
     'article-title': 'Applicability of electrical resistivity tomography monitoring to coarse blocky and ice-rich permafrost landforms',
     'volume': '20',
     'author': 'Hilbich',
     'year': '2009',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1774-BIB0016|ppp1774-cit-0016',
     'doi-asserted-by': 'crossref',
     'first-page': '306',
     'DOI': '10.1002/ppp.732',
     'article-title': 'Automated time-lapse ERT for improved process analysis and monitoring of frozen ground',
     'volume': '22',
     'author': 'Hilbich',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1774-BIB0017|ppp1774-cit-0017',
     'doi-asserted-by': 'crossref',
     'first-page': '361',
     'DOI': '10.1002/ppp.728',
     'article-title': 'Degrading Mountain Permafrost in Southern Norway: Spatial and Temporal Variability of Mean Ground Temperatures, 1999-2009',
     'volume': '22',
     'author': 'Isaksen',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1774-BIB0018|ppp1774-cit-0018',
     'author': 'Kneisel',
     'first-page': '959',
     'year': '2008',
     'volume-title': 'Proceedings of the 9th International Conference on Permafrost, Fairbanks, Alaska'},
    {'key': '10.1002/ppp.1774-BIB0019|ppp1774-cit-0019',
     'doi-asserted-by': 'crossref',
     'first-page': '157',
     'DOI': '10.1002/ppp.616',
     'article-title': 'Advances in geophysical methods for permafrost investigations',
     'volume': '19',
     'author': 'Kneisel',
     'year': '2008',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1774-BIB0020|ppp1774-cit-0020',
     'author': 'Krautblatter',
     'volume': '115',
     'year': '2010',
     'article-title': 'Temperature-calibrated imaging of seasonal changes in permafrost rock walls by quantitative electrical resistivity tomography (Zugspitze, German/Austrian Alps)',
     'journal-title': 'Journal of Geophysical Research Earth Surface'},
    {'key': '10.1002/ppp.1774-BIB0021|ppp1774-cit-0021',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.2113/JEEG12.1.1',
     'article-title': 'Introduction to this special issue of JEEG; the geophysics of glacial and frozen materials',
     'volume': '12',
     'author': 'Kulessa',
     'year': '2007',
     'journal-title': 'Journal of Environmental and Engineering Geophysics'},
    {'key': '10.1002/ppp.1774-BIB0022|ppp1774-cit-0022',
     'first-page': '2967',
     'article-title': 'Internal structure and hydrological functions of an alpine proglacial moraine',
     'volume': '25',
     'author': 'Langston',
     'year': '2011',
     'journal-title': 'Hydrological Processes'},
    {'key': '10.1002/ppp.1774-BIB0023|ppp1774-cit-0023',
     'doi-asserted-by': 'crossref',
     'first-page': 'B165',
     'DOI': '10.1190/geo2011-0095.1',
     'article-title': 'Imaging groundwater beneath a rugged proglacial moraine',
     'volume': '76',
     'author': 'Lehmann-Horn',
     'year': '2011',
     'journal-title': 'Geophysics'},
    {'key': '10.1002/ppp.1774-BIB0024|ppp1774-cit-0024',
     'doi-asserted-by': 'crossref',
     'first-page': '320',
     'DOI': '10.1002/ppp.703',
     'article-title': 'Characteristics of discontinuous permafrost based on ground temperature measurements and electrical resistivity tomography, southern Yukon, Canada',
     'volume': '22',
     'author': 'Lewkowicz',
     'year': '2011',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1774-BIB0026|ppp1774-cit-0026',
     'doi-asserted-by': 'crossref',
     'first-page': '75A177',
     'DOI': '10.1190/1.3484194',
     'article-title': 'Recent advances in optimized geophysical survey design',
     'volume': '75',
     'author': 'Maurer',
     'year': '2010',
     'journal-title': 'Geophysics'},
    {'key': '10.1002/ppp.1774-BIB0027|ppp1774-cit-0027',
     'author': 'Milanovskyi',
     'first-page': '1221',
     'year': '2008',
     'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, Fairbanks, Alaska'},
    {'key': '10.1002/ppp.1774-BIB0028|ppp1774-cit-0028',
     'author': 'Minsley',
     'volume': '39',
     'year': '2012',
     'article-title': 'Airborne electromagnetic imaging of discontinuous permafrost',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2011GL050079',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1774-BIB0029|ppp1774-cit-0029',
     'doi-asserted-by': 'crossref',
     'first-page': '403',
     'DOI': '10.1190/1.1444545',
     'article-title': 'Estimating depth of investigation in DC resistivity and IP surveys',
     'volume': '64',
     'author': 'Oldenburg',
     'year': '1999',
     'journal-title': 'Geophysics'},
    {'key': '10.1002/ppp.1774-BIB0030|ppp1774-cit-0030',
     'author': 'Oldenburg',
     'first-page': '89',
     'year': '2005',
     'volume-title': 'Near-surface Geophysics',
     'DOI': '10.1190/1.9781560801719.ch5',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1774-BIB0031|ppp1774-cit-0031',
     'author': 'Overduin',
     'volume': '117',
     'year': '2012',
     'article-title': 'Geoelectric observations of the degradation of nearshore submarine permafrost at Barrow (Alaskan Beaufort Sea)',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/2011JF002088',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1774-BIB0032|ppp1774-cit-0032',
     'author': 'Parameswaran',
     'first-page': '1363',
     'year': '2008',
     'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, Fairbanks, Alaska'},
    {'key': '10.1002/ppp.1774-BIB0033|ppp1774-cit-0033',
     'doi-asserted-by': 'crossref',
     'first-page': 'B187',
     'DOI': '10.1190/geo2010-0353.1',
     'article-title': 'Imaging permafrost velocity structure using high resolution 3D seismic tomography',
     'volume': '76',
     'author': 'Ramachandran',
     'year': '2011',
     'journal-title': 'Geophysics'},
    {'key': '10.1002/ppp.1774-BIB0034|ppp1774-cit-0034',
     'doi-asserted-by': 'crossref',
     'first-page': '117',
     'DOI': '10.3997/1873-0604.2011029',
     'article-title': 'Permafrost mapping using quasi-3D resistivity imaging, Murtèl, Swiss Alps',
     'volume': '10',
     'author': 'Rödder',
     'year': '2012',
     'journal-title': 'Near Surface Geophysics'},
    {'key': '10.1002/ppp.1774-BIB0035|ppp1774-cit-0035',
     'author': 'Scapozza',
     'first-page': '1583',
     'year': '2008',
     'volume-title': 'Proceedings of the 9th International Conference on Permafrost, Fairbanks, Alaska'},
    {'key': '10.1002/ppp.1774-BIB0036|ppp1774-cit-0036',
     'doi-asserted-by': 'crossref',
     'first-page': '208',
     'DOI': '10.1016/j.geomorph.2011.05.010',
     'article-title': 'Internal structure and permafrost distribution in two alpine periglacial talus slopes, Valais, Swiss Alps',
     'volume': '132',
     'author': 'Scapozza',
     'year': '2011',
     'journal-title': 'Geomorphology'},
    {'key': '10.1002/ppp.1774-BIB0037|ppp1774-cit-0037',
     'doi-asserted-by': 'crossref',
     'first-page': '325',
     'DOI': '10.1002/ppp.694',
     'article-title': 'Meltwater infiltration into the frozen active layer at an Alpine permafrost site',
     'volume': '21',
     'author': 'Scherler',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1774-BIB0038|ppp1774-cit-0038',
     'doi-asserted-by': 'crossref',
     'first-page': '327',
     'DOI': '10.3997/1873-0604.2008008',
     'article-title': 'The use of GPR to detect active layer in young periglacial terrain of Livingston Island, Maritime Antarctica',
     'volume': '6',
     'author': 'Schwamborn',
     'year': '2008',
     'journal-title': 'Near Surface Geophysics'},
    {'key': '10.1002/ppp.1774-BIB0039|ppp1774-cit-0039',
     'author': 'Scott',
     'first-page': '355',
     'year': '1990',
     'volume-title': 'Geotechnical and Environmental Geophysics',
     'DOI': '10.1190/1.9781560802785.ch13',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1774-BIB0040|ppp1774-cit-0040',
     'author': 'Sedov',
     'first-page': '1607',
     'year': '2008',
     'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, Fairbanks, Alaska'},
    {'key': '10.1002/ppp.1774-BIB0041|ppp1774-cit-0041',
     'doi-asserted-by': 'crossref',
     'first-page': '475',
     'DOI': '10.5194/tc-4-475-2010',
     'article-title': 'Monitoring of active layer dynamics at a permafrost site on Svalbard using multi-channel ground-penetrating radar',
     'volume': '4',
     'author': 'Westermann',
     'year': '2010',
     'journal-title': 'The Cryosphere'},
    {'key': '10.1002/ppp.1774-BIB0042|ppp1774-cit-0042',
     'first-page': '77',
     'article-title': 'Long-term time-lapse geoelectrical monitoring',
     'volume': '29',
     'author': 'Wilkinson',
     'year': '2011',
     'journal-title': 'First Break'},
    {'key': '10.1002/ppp.1774-BIB0043|ppp1774-cit-0043',
     'doi-asserted-by': 'crossref',
     'first-page': '428',
     'DOI': '10.1111/j.1365-246X.2012.05372.x',
     'article-title': 'Practical aspects of applied optimized survey design for electrical resistivity tomography',
     'volume': '189',
     'author': 'Wilkinson',
     'year': '2012',
     'journal-title': 'Geophysical Journal International'},
    {'key': '10.1002/ppp.1774-BIB0044|ppp1774-cit-0044',
     'doi-asserted-by': 'crossref',
     'first-page': '269',
     'DOI': '10.5194/tc-4-269-2010',
     'article-title': 'Multi-channel ground-penetrating radar to explore spatial variations in thaw depth and moisture content in the active layer of a permafrost site',
     'volume': '4',
     'author': 'Wollschläger',
     'year': '2010',
     'journal-title': 'The Cryosphere'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1774',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'}],
   'deposited': {'date-parts': [[2019, 7, 13]],
    'date-time': '2019-07-13T01:20:05Z',
    'timestamp': 1562980805000},
   'score': 15.395377,
   'subtitle': ['Geophysical Surveying in Permafrost Terrain'],
   'issued': {'date-parts': [[2013, 4]]},
   'references-count': 43,
   'journal-issue': {'published-print': {'date-parts': [[2013, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.1774',
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}],
   'subject': ['Earth-Surface Processes']},
  {'indexed': {'date-parts': [[2020, 7, 9]],
    'date-time': '2020-07-09T10:27:04Z',
    'timestamp': 1594290424175},
   'reference-count': 45,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 1248,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost and Periglac. Process.'],
   'published-print': {'date-parts': [[2012, 4]]},
   'DOI': '10.1002/ppp.1738',
   'type': 'journal-article',
   'created': {'date-parts': [[2012, 5, 2]],
    'date-time': '2012-05-02T23:35:44Z',
    'timestamp': 1336001744000},
   'page': '138-151',
   'source': 'Crossref',
   'is-referenced-by-count': 27,
   'title': ['Active Layer Characteristics At Ten Borehole Sites In Alpine Permafrost Terrain, Switzerland'],
   'prefix': '10.1002',
   'volume': '23',
   'author': [{'given': 'Evelyn',
     'family': 'Zenklusen Mutter',
     'sequence': 'first',
     'affiliation': [{'name': 'WSL Institute for Snow and Avalanche Research SLF; Davos Dorf; Switzerland'}]},
    {'given': 'Marcia',
     'family': 'Phillips',
     'sequence': 'additional',
     'affiliation': [{'name': 'WSL Institute for Snow and Avalanche Research SLF; Davos Dorf; Switzerland'}]}],
   'member': '311',
   'published-online': {'date-parts': [[2012, 5, 2]]},
   'reference': [{'key': '10.1002/ppp.1738-BIB1738-bib-0001|ppp1738-cit-0001',
     'doi-asserted-by': 'crossref',
     'first-page': '716',
     'DOI': '10.1109/TAC.1974.1100705',
     'article-title': 'A new look at the statistical model identification',
     'volume': '19',
     'author': 'Akaike',
     'year': '1973',
     'journal-title': 'IEEE Transactions on Automatic Control'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0002|ppp1738-cit-0002',
     'doi-asserted-by': 'crossref',
     'first-page': '279',
     'DOI': '10.1002/ppp.626',
     'article-title': 'Thawing permafrost and thicker active layers in sub-arctic Sweden',
     'volume': '19',
     'author': 'Åkerman',
     'year': '2008',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0003|ppp1738-cit-0003',
     'doi-asserted-by': 'crossref',
     'first-page': '217',
     'DOI': '10.1016/S0304-3800(02)00016-9',
     'article-title': 'Variability of seasonal thaw depth in permafrost regions: a stochastic modeling approach',
     'volume': '153',
     'author': 'Anisimov',
     'year': '2002',
     'journal-title': 'Ecological Modelling'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0004|ppp1738-cit-0004',
     'unstructured': 'Arenson LU Hauck C Hilbich C Seward L Yamamoto Y Springman SM 2010 Sub-surface heterogeneities in the Murtèl-Corvatsch rock glacier, Switzerland th 1494 1500'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0005|ppp1738-cit-0005',
     'doi-asserted-by': 'crossref',
     'first-page': '327',
     'DOI': '10.1016/S0921-8181(01)00098-4',
     'article-title': 'On the relationship between ground temperature histories and meteorological records: a report on the Pomquet station',
     'volume': '29',
     'author': 'Beltrami',
     'year': '2001',
     'journal-title': 'Global and Planetary Change'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0006|ppp1738-cit-0006',
     'doi-asserted-by': 'crossref',
     'first-page': '97',
     'DOI': '10.1002/ppp.679',
     'article-title': 'Short Communication: Practical Recommendations for Planning, Constructing and Maintaining Infrastructure in Mountain Permafrost',
     'volume': '21',
     'author': 'Bommer',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '3',
     'key': '10.1002/ppp.1738-BIB1738-bib-0007|ppp1738-cit-0007',
     'doi-asserted-by': 'crossref',
     'first-page': '166',
     'DOI': '10.1080/10889370009377698',
     'article-title': 'The circumpolar active layer monitoring (CALM) program: Research designs and initial results',
     'volume': '24',
     'author': 'Brown',
     'year': '2000',
     'journal-title': 'Polar Geography'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0008|ppp1738-cit-0008',
     'doi-asserted-by': 'crossref',
     'first-page': '411',
     'DOI': '10.1002/(SICI)1099-1530(199810/12)9:4<411::AID-PPP292>3.0.CO;2-6',
     'article-title': 'The Active Layer: Two Contrasting Definitions',
     'volume': '9',
     'author': 'Burn',
     'year': '1998',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0009|ppp1738-cit-0009',
     'doi-asserted-by': 'crossref',
     'first-page': '155',
     'DOI': '10.1002/ppp.489',
     'article-title': 'Meteorological Control on Interannual Spatial and Temporal Variations in Snow Cover and GroundThawing in Two Northeast Greenlandic Circumpolar-Active-Layer-Monitoring (CALM) Sites',
     'volume': '15',
     'author': 'Christiansen',
     'year': '2004',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0010|ppp1738-cit-0010',
     'doi-asserted-by': 'crossref',
     'first-page': 'D05101',
     'DOI': '10.1029/2003JD004245',
     'article-title': 'Interdecadal changes in seasonal freeze and thaw depths in Russia',
     'volume': '109',
     'author': 'Frauenfeld',
     'year': '2004',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0011|ppp1738-cit-0011',
     'doi-asserted-by': 'crossref',
     'first-page': 'F02S18',
     'DOI': '10.1029/2006JF000547',
     'article-title': 'Permafrost in steep bedrock slopes and its temperature-related destabilization following climate change',
     'volume': '112',
     'author': 'Gruber',
     'year': '2007',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0012|ppp1738-cit-0012',
     'author': 'Gruber',
     'first-page': '33',
     'year': '2009',
     'volume-title': 'Permafrost Soils',
     'DOI': '10.1007/978-3-540-69371-0_3',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0013|ppp1738-cit-0013',
     'author': 'Gruber',
     'volume': '1',
     'first-page': '557',
     'year': '2008',
     'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, University of Alaska Fairbanks, 29 June-3 July'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0014|ppp1738-cit-0014',
     'doi-asserted-by': 'crossref',
     'first-page': 'L13504',
     'DOI': '10.1029/2004GL020051',
     'article-title': 'Permafrost thaw and destabilization of Alpine rock walls in the hot summer of 2003',
     'volume': '31',
     'author': 'Gruber',
     'year': '2004',
     'journal-title': 'Geophysical Research Letters'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0015|ppp1738-cit-0015',
     'doi-asserted-by': 'crossref',
     'first-page': '84',
     'DOI': '10.1080/00291950510020664',
     'article-title': 'Installation of a shallow borehole network and monitoring of the ground thermal regime of a high alpine discontinuous permafrost environment, Eastern Swiss Alps',
     'volume': '59',
     'author': 'Hanson',
     'year': '2005',
     'journal-title': 'Norsk Geografisk Tidsskrift-Norwegian Journal of Geography'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0016|ppp1738-cit-0016',
     'author': 'Harlan',
     'first-page': '103',
     'year': '1978',
     'volume-title': 'Geotechnical Engineering for Cold Regions'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0017|ppp1738-cit-0017',
     'doi-asserted-by': 'crossref',
     'first-page': '107',
     'DOI': '10.1002/(SICI)1099-1530(199804/06)9:2<107::AID-PPP277>3.0.CO;2-G',
     'article-title': 'Thermal Regimes Beneath Coarse Blocky Materials',
     'volume': '9',
     'author': 'Harris',
     'year': '1998',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': 'D2',
     'key': '10.1002/ppp.1738-BIB1738-bib-0018|ppp1738-cit-0018',
     'doi-asserted-by': 'crossref',
     'first-page': '8168',
     'DOI': '10.1029/2001JD000927',
     'article-title': 'Spatial and temporal patterns of active layer thickness at Circumpolar Active Layer Monitoring (CALM) sites in northern Alaska, 1995-2000',
     'volume': '108',
     'author': 'Hinkel',
     'year': '2003',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0019|ppp1738-cit-0019',
     'doi-asserted-by': 'crossref',
     'first-page': '293',
     'DOI': '10.1016/S0921-8181(01)00096-0',
     'article-title': 'Patterns of soil temperature and moisture in the active layer and upper permafrost at Barrow, Alaska: 1993-1999',
     'volume': '29',
     'author': 'Hinkel',
     'year': '2001',
     'journal-title': 'Global and Planetary Change'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0020|ppp1738-cit-0020',
     'author': 'Hoelzle',
     'volume': '1',
     'first-page': '419',
     'year': '2003',
     'volume-title': 'Proceedings of the Eighth International Conference on Permafrost, 21-25 July, Zurich, Switzerland'},
    {'issue': '11',
     'key': '10.1002/ppp.1738-BIB1738-bib-0021|ppp1738-cit-0021',
     'doi-asserted-by': 'crossref',
     'first-page': '1170',
     'DOI': '10.1007/s11430-006-2003-z',
     'article-title': 'Thermal regimes and degradation modes of permafrost along the Qinghai-Tibet Highway',
     'volume': '49',
     'author': 'Jin',
     'year': '2006',
     'journal-title': 'Science in China Series D: Earth Sciences'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0022|ppp1738-cit-0022',
     'doi-asserted-by': 'crossref',
     'first-page': '275',
     'DOI': '10.1016/S0921-8181(01)00095-9',
     'article-title': 'Non-conductive heat transfer associated with frozen soils',
     'volume': '29',
     'author': 'Kane',
     'year': '2001',
     'journal-title': 'Global and Planetary Change'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0023|ppp1738-cit-0023',
     'author': 'Keller',
     'volume': '1',
     'first-page': '332',
     'year': '1993',
     'volume-title': 'Proceedings of the Sixth International Conference on Permafrost, 5-9 July, Beijing, China'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0024|ppp1738-cit-0024',
     'doi-asserted-by': 'crossref',
     'first-page': '283',
     'DOI': '10.1002/ppp.500',
     'article-title': 'Temperatures in Two Boreholes at Flüela Pass, Eastern Swiss Alps: the Effect of Snow Redistribution on Permafrost Distribution Patterns in High Mountain Areas',
     'volume': '15',
     'author': 'Luetschg',
     'year': '2004',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '187',
     'key': '10.1002/ppp.1738-BIB1738-bib-0025|ppp1738-cit-0025',
     'doi-asserted-by': 'crossref',
     'first-page': '696',
     'DOI': '10.3189/002214308786570881',
     'article-title': 'A sensitivity study of factors influencing warm/thin permafrost in the Swiss Alps',
     'volume': '54',
     'author': 'Luetschg',
     'year': '2008',
     'journal-title': 'Journal of Glaciology'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0026|ppp1738-cit-0026',
     'author': 'Lunardini',
     'volume': '1',
     'first-page': '40',
     'year': '1978',
     'volume-title': 'Proceedings of the Third International Conference on Permafrost, 10-13 July, Edmonton, Alberta, Canada'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0027|ppp1738-cit-0027',
     'doi-asserted-by': 'crossref',
     'first-page': '123',
     'DOI': '10.1002/ppp.484',
     'article-title': 'Active-layer Spatial and Temporal Variability at European Russian Circumpolar-Active-Layer-Monitoring (CALM) sites',
     'volume': '15',
     'author': 'Mazhitova',
     'year': '2004',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'issue': '2',
     'key': '10.1002/ppp.1738-BIB1738-bib-0028|ppp1738-cit-0028',
     'doi-asserted-by': 'crossref',
     'first-page': '179',
     'DOI': '10.2307/1552606',
     'article-title': 'Variability of Active-Layer Thickness at Multiple Spatial Scales, North-Central Alaska, USA',
     'volume': '31',
     'author': 'Nelson',
     'year': '1999',
     'journal-title': 'Arctic, Antarctic, and Alpine Research'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0029|ppp1738-cit-0029',
     'author': 'Oht',
     'volume': '2',
     'first-page': '845',
     'year': '2003',
     'volume-title': 'Proceedings of the Eighth International Conference on Permafrost, 21-25 July, Zurich, Switzerland'},
    {'issue': '3',
     'key': '10.1002/ppp.1738-BIB1738-bib-0030|ppp1738-cit-0030',
     'doi-asserted-by': 'crossref',
     'first-page': '274',
     'DOI': '10.2307/1552106',
     'article-title': 'The Response of Near-Surface Permafrost to Seasonal Regime Transitions in Tundra Terrain',
     'volume': '28',
     'author': 'Outcalt',
     'year': '1996',
     'journal-title': 'Arctic and Alpine Research'},
    {'issue': '7',
     'key': '10.1002/ppp.1738-BIB1738-bib-0031|ppp1738-cit-0031',
     'first-page': '1509',
     'article-title': 'The Zero-Curtain Effect: Heat and Mass Transfer Across an Isothermal Region in Freezing Soil',
     'volume': '26',
     'author': 'Outcalt',
     'year': '1990',
     'journal-title': 'Water Resources Research'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0032|ppp1738-cit-0032',
     'author': 'PERMOS',
     'first-page': '13',
     'year': '2007',
     'volume-title': 'Glaciological Report Permafrost No. 4/5 of the Cryospheric Commission of the Swiss Academy of Sciences and Department of Geography, University of Zurich'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0033|ppp1738-cit-0033',
     'author': 'PERMOS',
     'first-page': '19',
     'year': '2010',
     'volume-title': 'Glaciological Report Permafrost No. 8/9 of the Cryospheric Commission of the Swiss Academy of Sciences'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0034|ppp1738-cit-0034',
     'author': 'Phillips',
     'volume': '2',
     'first-page': '1417',
     'year': '2008',
     'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, University of Alaska Fairbanks, 29 June-3 July'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0035|ppp1738-cit-0035',
     'doi-asserted-by': 'crossref',
     'first-page': '32',
     'DOI': '10.1016/j.coldregions.2006.08.014',
     'article-title': 'Monitoring and reconstruction of a chairlift midway station in creeping permafrost terrain, Grächen, Swiss Alps',
     'volume': '47',
     'author': 'Phillips',
     'year': '2007',
     'journal-title': 'Cold Regions Science and Technology'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0036|ppp1738-cit-0036',
     'doi-asserted-by': 'crossref',
     'first-page': '1',
     'DOI': '10.1002/ppp.638',
     'article-title': 'Rapid Degradation of Ground Ice in a Ventilated Talus Slope: Flüela Pass, Swiss Alps',
     'volume': '20',
     'author': 'Phillips',
     'year': '2009',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0037|ppp1738-cit-0037',
     'author': 'Riseborough',
     'volume': '2',
     'first-page': '1487',
     'year': '2008',
     'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, University of Alaska Fairbanks, 29 June-3 July'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0038|ppp1738-cit-0038',
     'doi-asserted-by': 'crossref',
     'first-page': '177',
     'DOI': '10.1080/00291950510020574',
     'article-title': 'First results of investigations on hydrothermal processes within the active layer above alpine permafrost in steep terrain',
     'volume': '59',
     'author': 'Rist',
     'year': '2005',
     'journal-title': 'Norsk Geografisk Tidsskrift-Norwegian Journal of Geography'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0039|ppp1738-cit-0039',
     'doi-asserted-by': 'crossref',
     'first-page': '325',
     'DOI': '10.1002/ppp.694',
     'article-title': 'Meltwater Infiltration into the Frozen Active Layer at an Alpine Permafrost Site',
     'volume': '21',
     'author': 'Scherler',
     'year': '2010',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0040|ppp1738-cit-0040',
     'doi-asserted-by': 'crossref',
     'first-page': '5',
     'DOI': '10.1002/ppp.518',
     'article-title': 'The Transient Layer: Implications for Geocryology and Climate-Change Science',
     'volume': '16',
     'author': 'Shur',
     'year': '2005',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0041|ppp1738-cit-0041',
     'doi-asserted-by': 'crossref',
     'first-page': '19',
     'DOI': '10.1002/ppp.511',
     'article-title': 'Recent Trends from Canadian Permafrost Thermal Monitoring Network Sites',
     'volume': '16',
     'author': 'Smith',
     'year': '2005',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0042|ppp1738-cit-0042',
     'doi-asserted-by': 'crossref',
     'first-page': '201',
     'DOI': '10.1002/ppp.651',
     'article-title': 'Active-Layer Characteristics and Summer Climatic Indices, Mackenzie Valley, Northwest Territories, Canada',
     'volume': '20',
     'author': 'Smith',
     'year': '2009',
     'journal-title': 'Permafrost and Periglacial Processes'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0043|ppp1738-cit-0043',
     'author': 'Watanabe',
     'volume': '2',
     'first-page': '1211',
     'year': '2003',
     'volume-title': 'Proceedings of the Eighth International Conference on Permafrost, 21-25 July, Zurich, Switzerland'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0044|ppp1738-cit-0044',
     'doi-asserted-by': 'crossref',
     'first-page': 'F04009',
     'DOI': '10.1029/2009JF001648',
     'article-title': 'Analysis of ground temperature trends in Alpine permafrost using generalized least squares',
     'volume': '115',
     'author': 'Zenklusen Mutter',
     'year': '2010',
     'journal-title': 'Journal of Geophysical Research'},
    {'key': '10.1002/ppp.1738-BIB1738-bib-0045|ppp1738-cit-0045',
     'doi-asserted-by': 'crossref',
     'first-page': 'RG4002',
     'DOI': '10.1029/2004RG000157',
     'article-title': 'Influence of the seasonal snow cover on the ground thermal regime: an overview',
     'volume': '43',
     'author': 'Zhang',
     'year': '2005',
     'journal-title': 'Reviews of Geophysics'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1738',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'},
    {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.1738',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2018, 8, 5]],
    'date-time': '2018-08-05T12:26:13Z',
    'timestamp': 1533471973000},
   'score': 15.395377,
   'subtitle': ['Active Layer Development in Alpine Permafrost Terrain'],
   'issued': {'date-parts': [[2012, 4]]},
   'references-count': 45,
   'journal-issue': {'published-print': {'date-parts': [[2012, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.1738',
   'relation': {'cites': []},
   'ISSN': ['1045-6740'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
  {'indexed': {'date-parts': [[2020, 2, 20]],
    'date-time': '2020-02-20T08:43:27Z',
    'timestamp': 1582188207166},
   'reference-count': 184,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 2800,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost Periglac. Process.'],
   'published-print': {'date-parts': [[2008, 4]]},
   'DOI': '10.1002/ppp.619',
   'type': 'journal-article',
   'created': {'date-parts': [[2008, 5, 28]],
    'date-time': '2008-05-28T00:34:59Z',
    'timestamp': 1211934899000},
   'page': '107-136',
   'source': 'Crossref',
   'is-referenced-by-count': 77,
   'title': ['Remote sensing of permafrost-related problems and hazards'],
   'prefix': '10.1002',
   'volume': '19',
   'author': [{'given': 'Andreas',
     'family': 'Kääb',
     'sequence': 'first',
     'affiliation': []}],
   'member': '311',
   'published-online': {'date-parts': [[2008]]},
   'reference': [{'key': '10.1002/ppp.619-BIB1',
     'author': 'Alasset',
     'year': '2007',
     'unstructured': ', . 2007. InSAR monitoring of a landslide in a permafrost environment: constraints and results. Canadian Institute of Geomatics/International Society of Photogrammetry and Remote Sensing Conference on Geomatics for Disaster and Risk Management. 11pp.'},
    {'key': '10.1002/ppp.619-BIB2',
     'author': 'Applegarth',
     'volume': '82',
     'first-page': '388',
     'year': '2006',
     'journal-title': 'Geomorphology',
     'DOI': '10.1016/j.geomorph.2006.06.002',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB3',
     'author': 'Baltsavias',
     'volume': '17',
     'first-page': '243',
     'year': '2001',
     'journal-title': 'Photogrammetric Record',
     'DOI': '10.1111/0031-868X.00182',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB4',
     'first-page': '55',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': '1',
     'author': 'Bauer',
     'year': '2003',
     'unstructured': ', . 2003. Terrestrial laser scanning for rock glacier monitoring. In Eighth International Conference on Permafrost. Balkema: Lisse; 1, 55–60.'},
    {'key': '10.1002/ppp.619-BIB5',
     'author': 'Berthier',
     'volume': '31',
     'first-page': 'l17401',
     'year': '2004',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2004GL020706',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB6',
     'author': 'Berthier',
     'volume': '95',
     'first-page': '14',
     'year': '2005',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2004.11.005',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB7',
     'author': 'Berthier',
     'volume': '33',
     'first-page': 'l08502',
     'year': '2006',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2006GL025862',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB8',
     'first-page': '101',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': 'vol. 1',
     'author': 'Brown',
     'year': '2003',
     'unstructured': ', , . 2003. Long-term rates of coastal erosion and carbon input, Elson Lagoon, Barrow, Alaska. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 1, 101–106.'},
    {'key': '10.1002/ppp.619-BIB9',
     'author': 'Burger',
     'volume': '31',
     'first-page': '93',
     'year': '1999',
     'journal-title': 'Geomorphology',
     'DOI': '10.1016/S0169-555X(99)00074-4',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB10',
     'author': 'Burn',
     'volume': '37',
     'first-page': '967',
     'year': '2000',
     'journal-title': 'Canadian Journal of Earth Sciences',
     'DOI': '10.1139/e00-017',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB11',
     'author': 'Casson',
     'volume': '68',
     'first-page': '123',
     'year': '2003',
     'journal-title': 'Engineering Geology',
     'DOI': '10.1016/S0013-7952(02)00201-6',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB12',
     'author': 'Chen',
     'volume': '88',
     'first-page': '160',
     'year': '2006',
     'journal-title': 'Engineering Geology',
     'DOI': '10.1016/j.enggeo.2006.09.008',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB13',
     'author': 'Chiarle',
     'volume': '56',
     'first-page': '123',
     'year': '2007',
     'journal-title': 'Global and Planetary Change',
     'DOI': '10.1016/j.gloplacha.2006.07.003',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB14',
     'author': 'Christiansen',
     'volume': '32',
     'first-page': '102',
     'year': '2001',
     'journal-title': 'Annals of Glaciology',
     'DOI': '10.3189/172756401781819355',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB15',
     'author': 'Clague',
     'volume': '19',
     'first-page': '1763',
     'year': '2000',
     'journal-title': 'Quaternary Science Reviews',
     'DOI': '10.1016/S0277-3791(00)00090-1',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB16',
     'author': 'Colesanti',
     'volume': '68',
     'first-page': '3',
     'year': '2003',
     'journal-title': 'Engineering Geology',
     'DOI': '10.1016/S0013-7952(02)00195-3',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB17',
     'author': 'Corsini',
     'volume': '27',
     'first-page': '2351',
     'year': '2006',
     'journal-title': 'International Journal of Remote Sensing',
     'DOI': '10.1080/01431160600554405',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB18',
     'author': 'Coulibaly',
     'volume': '31',
     'first-page': '439',
     'year': '2005',
     'journal-title': 'Canadian Journal of Remote Sensing',
     'DOI': '10.5589/m05-028',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB19',
     'author': 'Couture',
     'year': '2006',
     'unstructured': '. 2006. Regional landslide mapping in a permafrost environment: landslide inventory database and case studies in the Mackenzie Valley, Northwest Territories Geophysical Research Abstract, European Geosciences Union 8, abstract 02982.'},
    {'key': '10.1002/ppp.619-BIB20',
     'author': 'Crosetto',
     'volume': '57',
     'first-page': '213',
     'year': '2002',
     'journal-title': 'ISPRS Journal of Photogrammetry and Remote Sensing',
     'DOI': '10.1016/S0924-2716(02)00107-7',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB21',
     'author': 'Crowley',
     'volume': '87',
     'first-page': '345',
     'year': '2003',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2003.08.003',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB22',
     'author': 'Cuartero',
     'volume': '43',
     'first-page': '404',
     'year': '2005',
     'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
     'DOI': '10.1109/TGRS.2004.841356',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB23',
     'author': 'Curiel',
     'volume': '56',
     'first-page': '261',
     'year': '2005',
     'journal-title': 'Acta Astronautica',
     'DOI': '10.1016/j.actaastro.2004.09.026',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB24',
     'author': 'Cutter',
     'volume': '59',
     'first-page': '153',
     'year': '2006',
     'journal-title': 'Journal of the British Interplanetary Society'},
    {'key': '10.1002/ppp.619-BIB25',
     'author': 'Davies',
     'volume': '101',
     'first-page': '427',
     'year': '2006a',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2005.08.007',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB26',
     'author': 'Davies',
     'volume': '59',
     'first-page': '158',
     'year': '2006b',
     'journal-title': 'Journal of the British Interplanetary Society'},
    {'key': '10.1002/ppp.619-BIB27',
     'author': 'Dean',
     'volume': '54',
     'first-page': '363',
     'year': '1988',
     'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
    {'key': '10.1002/ppp.619-BIB28',
     'author': 'Dehls',
     'year': '2002',
     'unstructured': ', . 2002. Ground deformation monitoring in the Ranafjord area of Norway by means of the permanent scatterers technique. IEEE Geoscience and Remote Sensing Symposium, 2002. 1, 203–207.'},
    {'key': '10.1002/ppp.619-BIB29',
     'author': 'Delacourt',
     'volume': '31',
     'first-page': 'l15619',
     'year': '2004',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2004GL020193',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB30',
     'author': 'Delacourt',
     'volume': '178',
     'first-page': '89',
     'year': '2007',
     'journal-title': 'Bulletin de la Societe Geologique de France',
     'DOI': '10.2113/gssgfbull.178.2.89',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB31',
     'author': 'Doggett',
     'volume': '101',
     'first-page': '447',
     'year': '2006',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2005.11.014',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB32',
     'author': 'Dozier',
     'volume': '32',
     'first-page': '465',
     'year': '2004',
     'journal-title': 'Annual Review of Earth and Planetary Sciences',
     'DOI': '10.1146/annurev.earth.32.101802.120404',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB33',
     'author': 'Dramis',
     'volume': '6',
     'first-page': '73',
     'year': '1995',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.3430060108',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB34',
     'author': 'Duguay',
     'year': '1995',
     'unstructured': '. 1995. Assessment of SPOT panchromatic imagery in the detection and identification of permafrost features, Fosheim Peninsula, Ellesmere Island, N.W.T. Seventeenth Canadian Symposium on Remote Sensing. Canadian Aeronautics and Space Institute, vol. 17, 8–14.'},
    {'key': '10.1002/ppp.619-BIB35',
     'author': 'Duguay',
     'first-page': '163',
     'year': '2005',
     'unstructured': '(eds). 2005. Remote Sensing in Northern Hydrology: Measuring Environmental Change. Geophysical Monograph. American Geophysical Union: Washington; 163.',
     'volume-title': 'Remote Sensing in Northern Hydrology: Measuring Environmental Change',
     'DOI': '10.1029/GM163',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB36',
     'doi-asserted-by': 'crossref',
     'first-page': '91',
     'DOI': '10.1029/163GM06',
     'volume-title': 'Remote Sensing in Northern Hydrology: Measuring Environmental Change',
     'volume': 'vol. 163',
     'author': 'Duguay',
     'year': '2005',
     'unstructured': ', , . 2005. Satellite remote sensing of permafrost and seasonally frozen ground. In Remote Sensing in Northern Hydrology: Measuring Environmental Change, (eds). Geophysical Monograph. American Geophysical Union: Washington; vol. 163, 91–118.'},
    {'key': '10.1002/ppp.619-BIB37',
     'author': 'Eldhuset',
     'volume': '24',
     'first-page': '1415',
     'year': '2003',
     'journal-title': 'International Journal of Remote Sensing',
     'DOI': '10.1080/01431160210153039',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB38',
     'author': 'Engeset',
     'volume': '36',
     'first-page': '1879',
     'year': '1998',
     'journal-title': 'IEEE Transactions on Geosciences and Remote Sensing',
     'DOI': '10.1109/36.729359',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB39',
     'author': 'Etzelmüller',
     'volume': '4',
     'first-page': '129',
     'year': '2000',
     'journal-title': 'Transactions in GIS',
     'DOI': '10.1111/1467-9671.00043',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB40',
     'author': 'Etzelmüller',
     'volume': '12',
     'first-page': '79',
     'year': '2001',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.384',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB41',
     'author': 'Fischer',
     'volume': '6',
     'first-page': '761',
     'year': '2006',
     'journal-title': 'Natural Hazards and Earth System Sciences',
     'DOI': '10.5194/nhess-6-761-2006',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB42',
     'author': 'Floricioiu',
     'volume': '39',
     'first-page': '2634',
     'year': '2001',
     'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
     'DOI': '10.1109/36.974998',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB43',
     'author': 'Ford',
     'volume': '57',
     'first-page': '389',
     'year': '2004',
     'journal-title': 'Arctic',
     'DOI': '10.14430/arctic516',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB44',
     'author': 'Foriero',
     'volume': '35',
     'first-page': '560',
     'year': '1998',
     'journal-title': 'Canadian Geotechnical Journal',
     'DOI': '10.1139/t98-024',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB45',
     'author': 'Frauenfelder',
     'volume': '49',
     'first-page': '145',
     'year': '2005',
     'journal-title': 'Zeitschrift für Geomorphologie'},
    {'key': '10.1002/ppp.619-BIB46',
     'author': 'French',
     'volume': '17',
     'first-page': '3037',
     'year': '1996',
     'journal-title': 'International Journal of Remote Sensing',
     'DOI': '10.1080/01431169608949126',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB47',
     'author': 'Frohn',
     'volume': '97',
     'first-page': '116',
     'year': '2005',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2005.04.022',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB48',
     'author': 'Geist',
     'year': '2003',
     'unstructured': ', . 2003. Airborne laser scanning technology and its potential for applications in glaciology. ISPRS Workshop on 3-D Reconstruction from Airborne Laserscanner and INSAR Data.'},
    {'key': '10.1002/ppp.619-BIB49',
     'author': 'Glenn',
     'volume': '73',
     'first-page': '131',
     'year': '2006',
     'journal-title': 'Geomorphology',
     'DOI': '10.1016/j.geomorph.2005.07.006',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB50',
     'author': 'Granberg',
     'volume': '20',
     'first-page': '245',
     'year': '1994',
     'journal-title': 'Canadian Journal of Remote Sensing'},
    {'key': '10.1002/ppp.619-BIB51',
     'author': 'Grippa',
     'volume': '34',
     'year': '2007',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2007GL030165',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB52',
     'author': 'Grosse',
     'volume': '16',
     'first-page': '163',
     'year': '2005',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.509',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB53',
     'first-page': '23',
     'volume-title': 'Greenhouse-impact on Cold-climate Ecosystems and Landscapes',
     'volume': '22',
     'author': 'Haeberli',
     'year': '1992a',
     'unstructured': '1992a. Possible effects of climatic change on the evolution of Alpine permafrost. In Greenhouse-impact on Cold-climate Ecosystems and Landscapes, (eds). Catena Supplement 22: 23–35.'},
    {'key': '10.1002/ppp.619-BIB54',
     'author': 'Haeberli',
     'volume': '3',
     'first-page': '111',
     'year': '1992b',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.3430030208',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB55',
     'doi-asserted-by': 'crossref',
     'first-page': '167',
     'DOI': '10.1079/9780851995984.0167',
     'volume-title': 'Environmental Change and Geomorphic Hazards in Forests',
     'volume': 'vol 9',
     'author': 'Haeberli',
     'year': '2002',
     'unstructured': '. 2002. Natural hazards in forests: glacier and permafrost effects as related to climate change. In: (ed.), Environmental Change and Geomorphic Hazards in Forests. IUFRO Research Series. CABI Publishing: Wallingford/New York; vol 9, 167–202.'},
    {'key': '10.1002/ppp.619-BIB56',
     'author': 'Haeberli',
     'first-page': '303',
     'year': '1990',
     'unstructured': ', , . 1990. Investigation of 1987 debris flows in the Swiss Alps: general concept and geophysical soundings. In Hydrology in Mountainous Regions II, Artificial Reservoirs, Water and Slopes, IAHS Publication No. 194. IAHS: Wallingford; 303–310.',
     'volume-title': 'Hydrology in Mountainous Regions II, Artificial Reservoirs, Water and Slopes'},
    {'key': '10.1002/ppp.619-BIB57',
     'author': 'Haeberli',
     'volume': '47',
     'first-page': '111',
     'year': '2001',
     'journal-title': 'Journal of Glaciology',
     'DOI': '10.3189/172756501781832575',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB58',
     'author': 'Haeberli',
     'volume': '47',
     'first-page': '111',
     'year': '2005',
     'journal-title': 'Journal of Glaciology',
     'DOI': '10.3189/172756501781832575',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB59',
     'author': 'Harris',
     'first-page': '215',
     'year': '2005',
     'unstructured': '2005. Climate change, mountain permafrost degradation and geotechnical hazard. In: (eds.), Global Change and Mountain Regions (A State of Knowledge Overview). Advances in Global Change Research. Springer: Dordrecht; 215–224.',
     'volume-title': 'Global Change and Mountain Regions (A State of Knowledge Overview)',
     'DOI': '10.1007/1-4020-3508-X_22',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB60',
     'author': 'Harris',
     'volume': '18',
     'first-page': '105',
     'year': '2007',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.573',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB61',
     'author': 'Harris',
     'volume': '32',
     'first-page': '341',
     'year': '2006',
     'journal-title': 'Canadian Journal of Remote Sensing',
     'DOI': '10.5589/m06-029',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB62',
     'author': 'Hauber',
     'year': '2000',
     'unstructured': ', , , , . 2000. Digital and automated high resolution stereo mapping of the Sonnblick glacier (Austria) with HRSC-A. EARSeL-SIG-Workshop Land Ice and Snow, 246–254.'},
    {'key': '10.1002/ppp.619-BIB63',
     'author': 'Hilley',
     'volume': '304',
     'first-page': '1952',
     'year': '2004',
     'journal-title': 'Science',
     'DOI': '10.1126/science.1098821',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB64',
     'author': 'Hinkel',
     'volume': '16',
     'first-page': '327',
     'year': '2005',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.532',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB65',
     'author': 'Hinkel',
     'volume': '112',
     'first-page': 'f02s16',
     'year': '2007',
     'journal-title': 'Journal of Geophysical Research-Earth Surface',
     'DOI': '10.1029/2006JF000584',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB66',
     'first-page': '465',
     'volume-title': 'Seventh International Conference on Permafrost',
     'volume': '57',
     'author': 'Hoelzle',
     'year': '1998',
     'unstructured': ", , . 1998. Surface movement and internal deformation of ice-rock mixtures within rock glaciers in the Upper Engadin, Switzerland. In Seventh International Conference on Permafrost, Centre d'études nordiques de Université Laval, Collection Nordicana 57, Quebec, Canada; 465–472."},
    {'key': '10.1002/ppp.619-BIB67',
     'author': 'Huggel',
     'volume': '39',
     'first-page': '316',
     'year': '2002',
     'journal-title': 'Canadian Geotechnical Journal',
     'DOI': '10.1139/t01-099',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB68',
     'author': 'Huggel',
     'volume': '5',
     'first-page': '173',
     'year': '2005',
     'journal-title': 'Natural Hazards and Earth System Sciences',
     'DOI': '10.5194/nhess-5-173-2005',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB69',
     'author': 'Ip',
     'volume': '101',
     'first-page': '463',
     'year': '2006',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2005.12.018',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB70',
     'author': 'Janeras',
     'year': '2004',
     'unstructured': ', , , , , , . 2004. LIDAR applications to rock fall hazard assessment in Vall de Núria. 4th ICA Mountain Cartography Workshop. Institut Cartografic de Catalunya. vol. 8.'},
    {'key': '10.1002/ppp.619-BIB71',
     'first-page': '489',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': 'vol.1',
     'author': 'Johnson',
     'year': '2003',
     'unstructured': ', , . 2003. Erosion progression and adaptation strategy in a northern coastal community. In Eighth International Conference on Permafrost. Balkema: vol.1, 489–494.'},
    {'key': '10.1002/ppp.619-BIB72',
     'author': 'Jorgenson',
     'volume': '33',
     'first-page': 'l02503',
     'year': '2006',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2005GL024960',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB73',
     'author': 'Joughin',
     'volume': '36',
     'first-page': '25',
     'year': '1999',
     'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
     'DOI': '10.1109/36.655315',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB74',
     'author': 'JTC1',
     'year': '2004',
     'unstructured': 'JTC1. 2004. ISSMGE, ISRM and IAEG Joint Technical Committee on Landslides and Engineered Slopes (JTC1): ISSMGE TC32 - Technical Committee on Risk Assessment and Management Glossary of Risk Assessment Terms – Version 1, July 2004.'},
    {'key': '10.1002/ppp.619-BIB75',
     'author': 'Kääb',
     'volume': '57',
     'first-page': '39',
     'year': '2002',
     'journal-title': 'ISPRS Journal of Photogrammetry and Remote Sensing',
     'DOI': '10.1016/S0924-2716(02)00114-4',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB76',
     'author': 'Kääb',
     'volume': '94',
     'first-page': '463',
     'year': '2005a',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2004.11.003',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB77',
     'author': 'Kääb',
     'year': '2005b',
     'unstructured': '2005b. Remote Sensing of Mountain Glaciers and Permafrost Creep, Schriftenreihe Physische Geographie. Glaziologie und Geomorphodynamik. 48. University of Zurich, Zurich.'},
    {'key': '10.1002/ppp.619-BIB78',
     'author': 'Kääb',
     'volume': '33',
     'first-page': '385',
     'year': '2001',
     'journal-title': 'Arctic, Antarctic, and Alpine Research',
     'DOI': '10.1080/15230430.2001.12003445',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB79',
     'author': 'Kääb',
     'volume': '16',
     'first-page': '187',
     'year': '2005',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.507',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB80',
     'author': 'Kääb',
     'volume': '11',
     'first-page': '315',
     'year': '2000',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/1099-1530(200012)11:4<315::AID-PPP365>3.0.CO;2-J',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB81',
     'author': 'Kääb',
     'volume': '8',
     'first-page': '409',
     'year': '1997',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/(SICI)1099-1530(199710/12)8:4<409::AID-PPP267>3.0.CO;2-C',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB82',
     'author': 'Kääb',
     'volume': '84117',
     'first-page': '121',
     'year': '2003',
     'journal-title': 'EOS Transactions, American Geophysical Union'},
    {'key': '10.1002/ppp.619-BIB83',
     'author': 'Kääb',
     'volume': '5',
     'first-page': '527',
     'year': '2005a',
     'journal-title': 'Natural Hazards and Earth System Sciences',
     'DOI': '10.5194/nhess-5-527-2005',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB84',
     'author': 'Kääb',
     'first-page': '225',
     'year': '2005b',
     'unstructured': ', . 2005b. Glacier and permafrost hazards in high mountains. In: (eds), Global Change and Mountain Regions (A State of Knowledge Overview). Advances in Global Change Research. Springer: Dordrecht; 225–234.',
     'volume-title': 'Global Change and Mountain Regions (A State of Knowledge Overview)',
     'DOI': '10.1007/1-4020-3508-X_23',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB85',
     'author': 'Kääb',
     'volume': '56',
     'first-page': '172',
     'year': '2007',
     'journal-title': 'Global and Planetary Change',
     'DOI': '10.1016/j.gloplacha.2006.07.005',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB86',
     'author': 'Kane',
     'volume': '27',
     'first-page': '25',
     'year': '1996',
     'journal-title': 'Nordic Hydrology',
     'DOI': '10.2166/nh.1996.0017',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB87',
     'author': 'Kaufmann',
     'volume': '37',
     'first-page': '119',
     'year': '2002',
     'journal-title': 'Grazer Schriften der Geographie und Raumforschung'},
    {'key': '10.1002/ppp.619-BIB88',
     'first-page': '525',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': 'vol. 1',
     'author': 'Kaufmann',
     'year': '2003',
     'unstructured': '. 2003. Quantitative analysis of rock glacier creep by means of digital photogrammetry using multi-temporal aerial photographs: two case studies in the Austrian Alps. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 1, 525–530.'},
    {'key': '10.1002/ppp.619-BIB89',
     'author': 'Kaufmann',
     'year': '2004',
     'unstructured': '. 2004. Documentation of the retreat of a small debris-covered cirque glacier (Goessnitzkees, Austrian Alps) by means of terrestrial photogrammetry. 4th ICA Mountain Cartography Workshop. Institut Cartografic de Catalunya. vol. 8, 65–76.'},
    {'key': '10.1002/ppp.619-BIB90',
     'author': 'Kennett',
     'volume': '24',
     'first-page': '293',
     'year': '1997',
     'journal-title': 'Annals of Glaciology',
     'DOI': '10.1017/S0260305500012337',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB91',
     'first-page': '537',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': 'vol. 1',
     'author': 'Kenyi',
     'year': '2003',
     'unstructured': '. 2003. Measuring rock glacier surface deformation using SAR interferometry. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 1, 537–541.'},
    {'key': '10.1002/ppp.619-BIB92',
     'author': 'Kerle',
     'volume': '26',
     'first-page': '140',
     'year': '2002',
     'journal-title': 'Disasters',
     'DOI': '10.1111/1467-7717.00197',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB93',
     'first-page': '543',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': 'vol. 1',
     'author': 'Kershaw',
     'year': '2003',
     'unstructured': '2003. Permafrost landform degradation over more than half a century, Macmillan/Caribou Pass region, NWT/Yukon, Canada. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 1, 543–548.'},
    {'key': '10.1002/ppp.619-BIB94',
     'author': 'Kim',
     'year': '1996',
     'unstructured': '. 1996. Passive microwave freeze/thaw classification for wet tundra regions. IEEE Geoscience and Remote Sensing Symposium, 1996. vol. 4, 2267–2269.'},
    {'key': '10.1002/ppp.619-BIB95',
     'author': 'Kimura',
     'volume': '66',
     'first-page': '337',
     'year': '2000',
     'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
    {'key': '10.1002/ppp.619-BIB96',
     'author': 'Kneisel',
     'volume': '18',
     'first-page': '259',
     'year': '2007',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.593',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB97',
     'author': 'Komarov',
     'year': '2002',
     'unstructured': ', . 2002. SAR polarimetry for permafrost active layer freeze/thaw processes. IEEE Geoscience and Remote Sensing Symposium, 2002. vol. 5, 2654–2656.'},
    {'key': '10.1002/ppp.619-BIB98',
     'author': 'König',
     'volume': '39',
     'first-page': '1',
     'year': '2001',
     'journal-title': 'Reviews of Geophysics',
     'DOI': '10.1029/1999RG000076',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB99',
     'author': 'Koopmans',
     'volume': '48',
     'first-page': '28',
     'year': '1993',
     'journal-title': 'ISPRS Journal of Photogrammetry and Remote Sensing',
     'DOI': '10.1016/0924-2716(93)90053-P',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB100',
     'author': 'Lantuit',
     'volume': '5',
     'first-page': '413',
     'year': '2005',
     'journal-title': 'Natural Hazards and Earth System Sciences',
     'DOI': '10.5194/nhess-5-413-2005',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB101',
     'first-page': '667',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': '2',
     'author': 'Lerjen',
     'year': '2003',
     'unstructured': ', , . 2003. Local distribution pattern of discontinuous mountain permafrost. A. process study at Flüela Pass, Swiss Alps. In Eighth International Conference on Permafrost. Balkema: Lisse; 2, 667–672.'},
    {'key': '10.1002/ppp.619-BIB102',
     'author': 'Leverington',
     'volume': '8',
     'first-page': '207',
     'year': '1997',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/(SICI)1099-1530(199732)8:2<205::AID-PPP252>3.0.CO;2-5',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB103',
     'author': 'Lewkowicz',
     'volume': '25',
     'first-page': '34',
     'year': '1999',
     'journal-title': 'Canadian Journal of Remote Sensing',
     'DOI': '10.1080/07038992.1999.10855261',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB104',
     'author': 'Lewkowicz',
     'volume': '69',
     'first-page': '275',
     'year': '2005a',
     'journal-title': 'Geomorphology',
     'DOI': '10.1016/j.geomorph.2005.01.011',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB105',
     'author': 'Lewkowicz',
     'volume': '16',
     'first-page': '115',
     'year': '2005b',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.522',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB106',
     'author': 'Li',
     'volume': '67',
     'first-page': '1283',
     'year': '2001',
     'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
    {'key': '10.1002/ppp.619-BIB107',
     'author': 'Lougeay',
     'first-page': '487',
     'year': '1974',
     'unstructured': '1974. Detection of buried glacial and ground ice with thermal infrared remote sensing. In: (Eds.), Advanced Concepts and Techniques in the Study of Snow and Ice Resources. National Academy of Sciences: Washington, DC; 487–494.',
     'volume-title': 'Advanced Concepts and Techniques in the Study of Snow and Ice Resources'},
    {'key': '10.1002/ppp.619-BIB108',
     'author': 'Lougeay',
     'volume': '48',
     'first-page': '269',
     'year': '1982',
     'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
    {'key': '10.1002/ppp.619-BIB109',
     'author': 'Lutz',
     'year': '2003',
     'unstructured': ', . 2003. Investigations of airborne laser scanning signal intensity on glacial surfaces - utilizing comprehensive laser geometry modelling and orthophoto surface modelling (A case study: Svartisheibreen, Norway). ISPRS Workshop on 3-D Reconstruction from Airborne Laserscanner and INSAR Data.'},
    {'key': '10.1002/ppp.619-BIB110',
     'author': 'Luzi',
     'volume': '27',
     'first-page': '2331',
     'year': '2006',
     'journal-title': 'International Journal of Remote Sensing',
     'DOI': '10.1080/01431160600554975',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB111',
     'author': 'Lyle',
     'year': '2006',
     'unstructured': '. 2006. Influence of degrading permafrost on landslide processes: Little Salmon Lake, Yukon Territory, Canada. ECI Conference on Geohazards, paper 4.'},
    {'key': '10.1002/ppp.619-BIB112',
     'author': 'Mantovani',
     'volume': '15',
     'first-page': '213',
     'year': '1996',
     'journal-title': 'Geomorphology',
     'DOI': '10.1016/0169-555X(95)00071-C',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB113',
     'author': 'Mars',
     'volume': '35',
     'first-page': '583',
     'year': '2007',
     'journal-title': 'Geology',
     'DOI': '10.1130/G23672A.1',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB114',
     'author': 'McKillop',
     'volume': '56',
     'first-page': '153',
     'year': '2007',
     'journal-title': 'Global and Planetary Change',
     'DOI': '10.1016/j.gloplacha.2006.07.004',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB115',
     'author': 'McMichael',
     'volume': '18',
     'first-page': '2371',
     'year': '1997',
     'journal-title': 'International Journal of Remote Sensing',
     'DOI': '10.1080/014311697217666',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB116',
     'author': 'Metternicht',
     'volume': '98',
     'first-page': '284',
     'year': '2005',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2005.08.004',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB117',
     'author': 'Mironov',
     'year': '2005',
     'unstructured': ', , . 2005. Freeze-thaw processes radar remote sensing modeling and image processing. IEEE Geoscience and Remote Sensing Symposium, 2005. vol. 1, 608–611.'},
    {'key': '10.1002/ppp.619-BIB118',
     'author': 'Moorman',
     'year': '1998',
     'unstructured': '. 1998. Detecting ground ice melt with interferometric synthetic aperture radar. 20th Canadian Symposium on Remote Sensing. Calgary, Alberta, 10–13 May, 1998.'},
    {'key': '10.1002/ppp.619-BIB119',
     'author': 'Nagler',
     'year': '2002',
     'unstructured': ', . 2002. Feasibility of DInSAR for mapping complex motion fields of Alpine ice- and rock-glaciers. In Third International Symposium on Retrieval of Bio- and Geophysical Parameters from SAR Data for Land Application. ESA - SP. vol. 475, 377–382.'},
    {'key': '10.1002/ppp.619-BIB120',
     'author': 'Nelson',
     'volume': '410',
     'first-page': '889',
     'year': '2001',
     'journal-title': 'Nature',
     'DOI': '10.1038/35073746',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB121',
     'author': 'Nelson',
     'volume': '26',
     'first-page': '203',
     'year': '2002',
     'journal-title': 'Natural Hazards',
     'DOI': '10.1023/A:1015612918401',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB122',
     'author': 'Noetzli',
     'volume': '10',
     'first-page': '161',
     'year': '2006',
     'journal-title': 'Computational Geosciences',
     'DOI': '10.1007/s10596-005-9017-z',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB123',
     'author': 'Noferini',
     'volume': '4',
     'first-page': '659',
     'year': '2007',
     'journal-title': 'IEEE Geoscience and Remote Sensing Letters',
     'DOI': '10.1109/LGRS.2007.905118',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB124',
     'first-page': '833',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': 'vol. 2',
     'author': 'Nolan',
     'year': '2003',
     'unstructured': '. 2003. Evaluation of a new DEM of the Putuligayuk watershed for Arctic hydrologic applications. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 2, 833–838.'},
    {'key': '10.1002/ppp.619-BIB125',
     'author': 'Ødegård',
     'volume': '14',
     'first-page': '359',
     'year': '2004',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.467',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB126',
     'author': 'Ødegård',
     'volume': '53',
     'first-page': '226',
     'year': '1999',
     'journal-title': 'Norwegian Journal of Geography'},
    {'key': '10.1002/ppp.619-BIB127',
     'author': 'Ostir',
     'volume': '24',
     'first-page': '3983',
     'year': '2003',
     'journal-title': 'International Journal of Remote Sensing',
     'DOI': '10.1080/0143116031000103826',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB128',
     'author': 'Otto',
     'volume': '31',
     'first-page': '179',
     'year': '2007',
     'journal-title': 'Progress in Physical Geography',
     'DOI': '10.1177/0309133307076479',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB129',
     'author': 'Peddle',
     'volume': '44',
     'first-page': '67',
     'year': '1993',
     'journal-title': 'Remote Sensing and Environment',
     'DOI': '10.1016/0034-4257(93)90103-5',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB130',
     'author': 'Pilgrim',
     'volume': '33',
     'first-page': '291',
     'year': '1996',
     'journal-title': 'Survey Review',
     'DOI': '10.1179/sre.1996.33.259.291',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB131',
     'author': 'Pitkänen',
     'first-page': '769',
     'year': '2004',
     'journal-title': 'ISPRS International Archives of Photogrammetry, Remote Sensing and Spatial Information Sciences'},
    {'key': '10.1002/ppp.619-BIB132',
     'author': 'Quincey',
     'volume': '29',
     'first-page': '475',
     'year': '2005',
     'journal-title': 'Progress in Physical Geography',
     'DOI': '10.1191/0309133305pp456ra',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB133',
     'author': 'Quincey',
     'volume': '56',
     'first-page': '137',
     'year': '2007',
     'journal-title': 'Global and Planetary Change',
     'DOI': '10.1016/j.gloplacha.2006.07.013',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB134',
     'author': 'Rabatel',
     'year': '2007',
     'unstructured': ', , . 2007. Recent rock falls and rock avalanches in high-alpine rock walls affected by permafrost. A. case study in the Mont Blanc massif (2005–2006) Geophysical Research Abstract, European Geosciences Union 9, abstract 07130.'},
    {'key': '10.1002/ppp.619-BIB135',
     'author': 'Ranson',
     'year': '2004',
     'unstructured': ', , . 2004. Landcover attributes from ICESat GLAS data in central Siberia. IEEE Geoscience and Remote Sensing Symposium, 2004. vol. 2, 753–756.'},
    {'key': '10.1002/ppp.619-BIB136',
     'author': 'Ranzi',
     'year': '2004',
     'unstructured': ', , . 2004. Use of multispectral ASTER images for mapping debris-covered glaciers within the GLIMS project. IEEE International Geoscience and Remote Sensing Symposium. vol. 2, 1144–1147.'},
    {'key': '10.1002/ppp.619-BIB137',
     'author': 'Renouard',
     'volume': '4',
     'first-page': '103',
     'year': '1995',
     'journal-title': 'EARSeL Advances in Remote Sensing –– Topography from Space'},
    {'key': '10.1002/ppp.619-BIB138',
     'first-page': '187',
     'volume-title': 'Debris Covered Glaciers',
     'volume': '264',
     'author': 'Richardson',
     'year': '2000',
     'unstructured': '. 2000. Degradation of ice-cored moraine dams: implications for hazard development. In Debris Covered Glaciers, IAHS Publication 264. IAHS: Wallingford; 187–197.'},
    {'key': '10.1002/ppp.619-BIB139',
     'author': 'Rignot',
     'volume': '49',
     'first-page': '131',
     'year': '1994',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/0034-4257(94)90049-3',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB140',
     'author': 'Roer',
     'volume': '49',
     'first-page': '73',
     'year': '2005',
     'journal-title': 'Zeitschrift für Geomorphologie'},
    {'key': '10.1002/ppp.619-BIB141',
     'author': 'Rosser',
     'volume': '38',
     'first-page': '363',
     'year': '2005',
     'journal-title': 'Quarterly Journal of Engineering Geology and Hydrogeology',
     'DOI': '10.1144/1470-9236/05-008',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB142',
     'author': 'Rott',
     'volume': '14',
     'first-page': '217',
     'year': '1994',
     'journal-title': 'Advances in Space Research',
     'DOI': '10.1016/0273-1177(94)90218-6',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB143',
     'author': 'Rott',
     'year': '1999',
     'unstructured': '. 1999. Analysis of mass movement in alpine terrain by means of SAR interferometry. IEEE Geoscience and Remote Sensing Symposium, 1999; 1933–1936.'},
    {'key': '10.1002/ppp.619-BIB144',
     'author': 'Salisbury',
     'volume': '99',
     'first-page': '24235',
     'year': '1994',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/94JB00579',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB145',
     'author': 'Salzmann',
     'volume': '58',
     'first-page': '74',
     'year': '2004',
     'journal-title': 'Norwegian Journal of Geography'},
    {'key': '10.1002/ppp.619-BIB146',
     'author': 'Sauber',
     'volume': '32',
     'first-page': 'l23s01',
     'year': '2005',
     'journal-title': 'Geophysical Research Letters',
     'DOI': '10.1029/2005GL023943',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB147',
     'author': 'Schowengerdt',
     'year': '1997',
     'unstructured': '1997. Remote Sensing. Models and Methods for Image Processing — Second Edition. Academic Press: San Diego and Chestnut Hill.',
     'volume-title': 'Remote Sensing. Models and Methods for Image Processing — Second Edition'},
    {'key': '10.1002/ppp.619-BIB148',
     'author': 'Shengbo',
     'year': '2004',
     'unstructured': '2004. Permafrost classification on the Tibet Plateau based on surface emissivity retrieval from Terra-MODIS data. IEEE Geoscience and Remote Sensing Symposium, 2004. vol. 4, 2699–2702.'},
    {'key': '10.1002/ppp.619-BIB149',
     'author': 'Singhroy',
     'volume': '21',
     'first-page': '465',
     'year': '1998',
     'journal-title': 'Advances in Space Research',
     'DOI': '10.1016/S0273-1177(97)00882-X',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB150',
     'author': 'Singhroy',
     'year': '2007',
     'unstructured': ', , . 2007. InSAR monitoring of landslides on permafrost terrain in Canada. IEEE International Geoscience and Remote Sensing Symposium, 2007; 2451–2454.'},
    {'key': '10.1002/ppp.619-BIB151',
     'first-page': '1057',
     'volume-title': 'Eighth International Conference on Permafrost',
     'volume': '2',
     'author': 'Sjogren',
     'year': '2003',
     'unstructured': ', . 2003. The importance of temporal scale when mapping landscape change in permafrost environments using Interferometric Synthetic Aperture Radar. In Eighth International Conference on Permafrost. Balkema: Lisse; 2, 1057–1062.'},
    {'key': '10.1002/ppp.619-BIB152',
     'author': 'Smith',
     'volume': '308',
     'first-page': '1429',
     'year': '2005',
     'journal-title': 'Science',
     'DOI': '10.1126/science.1108142',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB153',
     'author': 'Stebler',
     'volume': '2',
     'first-page': '357',
     'year': '2005',
     'journal-title': 'IEEE Geoscience and Remote Sensing Letters',
     'DOI': '10.1109/LGRS.2005.851739',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB154',
     'author': 'Stockdon',
     'volume': '18',
     'first-page': '502',
     'year': '2002',
     'journal-title': 'Journal of Coastal Research'},
    {'key': '10.1002/ppp.619-BIB155',
     'author': 'Stow',
     'volume': '89',
     'first-page': '281',
     'year': '2004',
     'journal-title': 'Remote Sensing of Environment',
     'DOI': '10.1016/j.rse.2003.10.018',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB156',
     'author': 'Strom',
     'volume': '3',
     'first-page': '125',
     'year': '2006',
     'journal-title': 'Landslides',
     'DOI': '10.1007/s10346-005-0027-7',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB157',
     'author': 'Strozzi',
     'volume': '67',
     'first-page': '1261',
     'year': '2001',
     'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
    {'key': '10.1002/ppp.619-BIB158',
     'author': 'Strozzi',
     'volume': '25',
     'first-page': '2919',
     'year': '2004',
     'journal-title': 'International Journal of Remote Sensing',
     'DOI': '10.1080/0143116042000192330',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB159',
     'author': 'Swanson',
     'volume': '28',
     'first-page': '217',
     'year': '1996',
     'journal-title': 'Arctic and Alpine Research',
     'DOI': '10.2307/1551763',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB160',
     'author': 'Tait',
     'volume': '79',
     'first-page': '61',
     'year': '2005',
     'journal-title': 'Engineering Geology',
     'DOI': '10.1016/j.enggeo.2004.10.010',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB161',
     'author': 'Tinti',
     'volume': '24',
     'first-page': '157',
     'year': '1999',
     'journal-title': 'Physics and Chemistry of the Earth, Part A-Solid Earth and Geodesy',
     'DOI': '10.1016/S1464-1895(99)00012-5',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB162',
     'author': 'Tobias',
     'volume': '46',
     'first-page': '101',
     'year': '2000',
     'journal-title': 'Acta Astronautica',
     'DOI': '10.1016/S0094-5765(99)00200-3',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB163',
     'author': 'Toutin',
     'volume': '40',
     'first-page': '2241',
     'year': '2002',
     'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
     'DOI': '10.1109/TGRS.2002.802878',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB164',
     'author': 'Toutin',
     'volume': '41',
     'first-page': '2102',
     'year': '2002',
     'journal-title': 'Optical Engineering',
     'DOI': '10.1117/1.1496111',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB165',
     'author': 'Tralli',
     'volume': '59',
     'first-page': '185',
     'year': '2005',
     'journal-title': 'ISPRS Journal of Photogrammetry and Remote Sensing',
     'DOI': '10.1016/j.isprsjprs.2005.02.002',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB166',
     'author': 'Ufimtsev',
     'volume': '18',
     'first-page': '167',
     'year': '1998',
     'journal-title': 'Natural Hazards',
     'DOI': '10.1023/A:1008052217740',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB167',
     'author': 'Vachon',
     'year': '1996',
     'unstructured': ', , , , . 1996. Airborne and Spaceborne SAR Interferometry: Application to the Athabasca Glacier Area. IEEE Geoscience and Remote Sensing Symposium 1996. 2255–2257.'},
    {'key': '10.1002/ppp.619-BIB168',
     'author': 'van Asselen',
     'volume': '78',
     'first-page': '309',
     'year': '2006',
     'journal-title': 'Geomorphology',
     'DOI': '10.1016/j.geomorph.2006.01.037',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB169',
     'author': 'Vonder Mühll',
     'volume': '12',
     'first-page': '27',
     'year': '2001',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.382',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB170',
     'author': 'Walder',
     'volume': '108',
     'first-page': '2236',
     'year': '2003',
     'journal-title': 'Journal of Geophysical Research',
     'DOI': '10.1029/2001JB000707',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB171',
     'author': 'Wang',
     'year': '1999',
     'unstructured': '. 1999. Detection of winter frost heaving of the active layer of arctic permafrost using SAR differential interferometry. IEEE Geoscience and Remote Sensing Symposium. 1946–1948.'},
    {'key': '10.1002/ppp.619-BIB172',
     'author': 'Wangensteen',
     'volume': '80',
     'first-page': '59',
     'year': '2006',
     'journal-title': 'Geomorphology',
     'DOI': '10.1016/j.geomorph.2006.01.034',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB173',
     'author': 'Wangensteen',
     'volume': '26',
     'first-page': '14',
     'year': '2007',
     'journal-title': 'Polar Research',
     'DOI': '10.1111/j.1751-8369.2007.00002.x',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB174',
     'author': 'Watanabe',
     'volume': '15',
     'first-page': '293',
     'year': '1995',
     'journal-title': 'Mountain Research and Development',
     'DOI': '10.2307/3673805',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB175',
     'author': 'Wegmann',
     'volume': '9',
     'first-page': '23',
     'year': '1998',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/(SICI)1099-1530(199801/03)9:1<23::AID-PPP274>3.0.CO;2-Y',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB176',
     'author': 'Wei',
     'volume': '3',
     'first-page': '260',
     'year': '2006',
     'journal-title': 'Landslides',
     'DOI': '10.1007/s10346-006-0045-0',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB177',
     'author': 'Wessels',
     'volume': '34',
     'first-page': '399',
     'year': '2002',
     'journal-title': 'Annals of Glaciology',
     'DOI': '10.3189/172756402781817545',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB178',
     'author': 'Weydahl',
     'volume': '39',
     'first-page': '2029',
     'year': '2001',
     'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
     'DOI': '10.1109/36.951093',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB179',
     'author': 'Whitworth',
     'volume': '38',
     'first-page': '285',
     'year': '2005',
     'journal-title': 'Quarterly Journal of Engineering Geology and Hydrogeology',
     'DOI': '10.1144/1470-9236/04-057',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB180',
     'author': 'Yoshikawa',
     'volume': '14',
     'first-page': '151',
     'year': '2003',
     'journal-title': 'Permafrost and Periglacial Processes',
     'DOI': '10.1002/ppp.451',
     'doi-asserted-by': 'crossref'},
    {'key': '10.1002/ppp.619-BIB181',
     'author': 'Zhen',
     'year': '2000',
     'unstructured': '. 2000. Permafrost mapping in the Tibet plateau using polarimetric SAR. IEEE Geoscience and Remote Sensing Symposium. vol. 5, 2024–2026.'},
    {'key': '10.1002/ppp.619-BIB182',
     'author': 'Zhen',
     'year': '2003',
     'unstructured': ', , . 2003. Frozen ground deformation monitoring using SAR interferometry. IEEE Geoscience and Remote Sensing Symposium. vol. 4, 2933–2935.'},
    {'key': '10.1002/ppp.619-BIB183',
     'author': 'Zhijun',
     'year': '1999',
     'unstructured': '. 1999. Detection of winter frost heaving of the active layer of Arctic permafrost using SAR differential interferograms. IEEE Geoscience and Remote Sensing Symposium. vol. 4, 1946–1948.'},
    {'key': '10.1002/ppp.619-BIB184',
     'author': 'Zimmermann',
     'volume': '22',
     'first-page': '59',
     'year': '1992',
     'journal-title': 'Catena Supplement'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.619',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'},
    {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.619',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2019, 2, 11]],
    'date-time': '2019-02-11T17:03:18Z',
    'timestamp': 1549904598000},
   'score': 15.334935,
   'issued': {'date-parts': [[2008]]},
   'references-count': 184,
   'journal-issue': {'published-print': {'date-parts': [[2008, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.619',
   'relation': {'cites': []},
   'ISSN': ['1045-6740', '1099-1530'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'},
    {'value': '1099-1530', 'type': 'electronic'}]},
  {'indexed': {'date-parts': [[2020, 1, 3]],
    'date-time': '2020-01-03T01:23:14Z',
    'timestamp': 1578014594847},
   'reference-count': 21,
   'publisher': 'Wiley',
   'issue': '2',
   'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
     'start': {'date-parts': [[2015, 9, 1]],
      'date-time': '2015-09-01T00:00:00Z',
      'timestamp': 1441065600000},
     'delay-in-days': 8188,
     'content-version': 'tdm'}],
   'content-domain': {'domain': [], 'crossmark-restriction': False},
   'short-container-title': ['Permafrost Periglac. Process.'],
   'published-print': {'date-parts': [[1993, 4]]},
   'DOI': '10.1002/ppp.3430040203',
   'type': 'journal-article',
   'created': {'date-parts': [[2007, 2, 5]],
    'date-time': '2007-02-05T19:46:53Z',
    'timestamp': 1170704813000},
   'page': '99-111',
   'source': 'Crossref',
   'is-referenced-by-count': 27,
   'title': ['Climate and permafrost'],
   'prefix': '10.1002',
   'volume': '4',
   'author': [{'given': 'M. K.',
     'family': 'Gavrilova',
     'sequence': 'first',
     'affiliation': []}],
   'member': '311',
   'reference': [{'key': '10.1002/ppp.3430040203-BIB1',
     'author': 'Anisimov',
     'volume': '1',
     'first-page': '79',
     'year': '1989',
     'journal-title': 'Meteoroliia i gidrologiia'},
    {'key': '10.1002/ppp.3430040203-BIB2',
     'author': 'Balobaev',
     'first-page': '184',
     'year': '1983',
     'unstructured': 'and (1983). Changes in the permafrost zone caused by climatic changes and human activity. In Problemy geokriologii (in Russian). Nauka, Moscow, pp. 184–194.',
     'volume-title': 'Problemy geokriologii (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB3',
     'author': 'Budyko',
     'volume': '10',
     'first-page': '5',
     'year': '1988',
     'journal-title': 'Meteorologiia i klimatologiia'},
    {'key': '10.1002/ppp.3430040203-BIB4',
     'author': 'Gavrilova',
     'first-page': '120',
     'year': '1973',
     'unstructured': '(1973) Climate of Central Yakutia (in Russian). Yakutknogoizdat, Yakutsk, 120 pp.',
     'volume-title': 'Climate of Central Yakutia (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB5',
     'author': 'Gavrilova',
     'first-page': '12',
     'year': '1974',
     'unstructured': "(1974) Climatic factors in the formation and dynamics of permafrost. In Geokriologicheskiie usloviia Mongol'skoi Narodnoi Respubliki (in Russian). Nauka, Moscow, pp. 12–29.",
     'volume-title': "Geokriologicheskiie usloviia Mongol'skoi Narodnoi Respubliki (in Russian)"},
    {'key': '10.1002/ppp.3430040203-BIB6',
     'author': 'Gavrilova',
     'first-page': '40',
     'year': '1977',
     'unstructured': "(1977). Microclimatologists in the BAM area. In Chelovek i stikhiia' 78 (in Russian). Gidrometeoizdat, Leningrad, pp. 40–41.",
     'volume-title': "Chelovek i stikhiia' 78 (in Russian)"},
    {'key': '10.1002/ppp.3430040203-BIB7',
     'author': 'Gavrilova',
     'first-page': '214',
     'year': '1978',
     'unstructured': '(1978). Climate and Perennial Freezing of Rocks (in Russian). Nauka, Novosibirsk, 214 pp.',
     'volume-title': 'Climate and Perennial Freezing of Rocks (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB8',
     'author': 'Gavrilova',
     'first-page': '113',
     'year': '1981',
     'unstructured': '(1981). Present Climate and Permafrost on the Continents (in Russian). Nauka, Novosibirsk, 113 pp.',
     'volume-title': 'Present Climate and Permafrost on the Continents (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB9',
     'author': 'Gavrilova',
     'volume': '7',
     'first-page': '114',
     'year': '1984',
     'journal-title': 'Meteorologiia i klimatologiia'},
    {'key': '10.1002/ppp.3430040203-BIB10',
     'author': 'Gavrilova',
     'first-page': '146',
     'year': '1987',
     'unstructured': '(1987). Analysis of changes in natural-climatic conditions in Yakutia to the beginning of the next century. In Prirodnye usloviia osvaevaemykh reginov Sibiri (in Russian). Permafrost Institute SB AS, Yakutsk, pp. 146–159.',
     'volume-title': 'Prirodnye usloviia osvaevaemykh reginov Sibiri (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB11',
     'author': 'Gavrilova',
     'year': '1988a',
     'unstructured': '(1988a). Permafrost-climatic characteristics of different classes. In Permafrost 5th International Conference Proceedings, 2–5 August 1988, Trondheim, Norway. Tapir. Vol. 1, pp. 78–83.'},
    {'key': '10.1002/ppp.3430040203-BIB12',
     'author': 'Gavrilova',
     'first-page': '77',
     'year': '1988b',
     'unstructured': "(1988b). When did the cooling start in Yakutia? In Chelovek i stikhiia' 89 (in Russian). Gidrometeoizdat, Leningrad, pp. 77–78.",
     'volume-title': "Chelovek i stikhiia' 89 (in Russian)"},
    {'key': '10.1002/ppp.3430040203-BIB13',
     'author': 'Goltsberg',
     'first-page': '184',
     'year': '1972',
     'unstructured': '(ed.) (1972) World Agroclimatic Atlas (in Russian). Glavnoye upravlenie geodezii i kartografii, Gidrometeoizdat, Moscow-Leningrad, 184 pp.',
     'volume-title': 'World Agroclimatic Atlas (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB14',
     'author': 'Katasonov',
     'first-page': '88',
     'year': '1985',
     'unstructured': '(1985). Cryolithology and absolute dating of permafrost in Yakutia. In Metody rekonstruktsii paleoklimatov (in Russian). Nauka, Moscow, pp. 88–91.',
     'volume-title': 'Metody rekonstruktsii paleoklimatov (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB15',
     'author': 'Lungersgauzen',
     'volume': '108',
     'first-page': '707',
     'year': '1956',
     'journal-title': 'Dokl. AS USSR'},
    {'key': '10.1002/ppp.3430040203-BIB16',
     'author': 'Nauka',
     'first-page': '292',
     'year': '1974',
     'unstructured': '(1974). General Geocryology (in Russian). Nauka, Novosibirsk, 292 pp.',
     'volume-title': 'General Geocryology (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB17',
     'author': 'Priesnitz',
     'year': '1978',
     'unstructured': 'and (1978). An approach to the ecology of permafrost in Central Iceland. In Proceedings of the 3rd International Conference on Permafrost, 10–13 July 1978, Edmonton, Alberta, Canada. NRC, Ottawa. Vol. 1, pp. 473–479.'},
    {'key': '10.1002/ppp.3430040203-BIB18',
     'author': 'Rubinstein',
     'first-page': '268',
     'year': '1966',
     'unstructured': 'and (1966). Present Climatic Changes (in Russian). Gidrometeoizdat, Leningrad, 268 pp.',
     'volume-title': 'Present Climatic Changes (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB19',
     'author': 'Sinitsyn',
     'first-page': '248',
     'year': '1980',
     'unstructured': '(1980). Introduction to Palaeoclimatic Studies (in Russian). 2nd edn, Nedra, Leningrad, 248 pp.',
     'volume-title': 'Introduction to Palaeoclimatic Studies (in Russian)'},
    {'key': '10.1002/ppp.3430040203-BIB20',
     'author': 'Tarling',
     'first-page': '16',
     'year': '1980',
     'unstructured': '(1980). Geology and geophysics of glaciations. In Ismenenie klimata (Russian translation from English). Gidrometeoizdat, Leningrad, pp. 16–44.',
     'volume-title': 'Ismenenie klimata'},
    {'key': '10.1002/ppp.3430040203-BIB21',
     'author': 'Velichko',
     'first-page': '256',
     'year': '1973',
     'unstructured': '(1973). Natural Processes in the Pleistocene (in Russian). Nauka, Moscow, 256 pp.',
     'volume-title': 'Natural Processes in the Pleistocene (in Russian)'}],
   'container-title': ['Permafrost and Periglacial Processes'],
   'language': 'en',
   'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.3430040203',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'text-mining'},
    {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.3430040203',
     'content-type': 'unspecified',
     'content-version': 'vor',
     'intended-application': 'similarity-checking'}],
   'deposited': {'date-parts': [[2018, 8, 4]],
    'date-time': '2018-08-04T20:55:53Z',
    'timestamp': 1533416153000},
   'score': 15.334935,
   'issued': {'date-parts': [[1993, 4]]},
   'references-count': 21,
   'journal-issue': {'published-print': {'date-parts': [[1993, 4]]},
    'issue': '2'},
   'URL': 'http://dx.doi.org/10.1002/ppp.3430040203',
   'relation': {'cites': []},
   'ISSN': ['1045-6740', '1099-1530'],
   'issn-type': [{'value': '1045-6740', 'type': 'print'},
    {'value': '1099-1530', 'type': 'electronic'}]}],
 'items-per-page': 20,
 'query': {'start-index': 0, 'search-terms': 'permafrost'}}

This dictionary is nested, meaning that we can have keys that lead to values which are more dictionaries. It seems like the message contains most of the information we’re interested in. Below, take a look at the keys of the message component of the permafrost dictionary.

list(permafrost['message'].keys()) # keys of the permafrost message dictionary
['facets', 'total-results', 'items', 'items-per-page', 'query']

Just as we did before, we can inspect what information is contained for different keys of the dictionary. Let’s focus on total results first.

# This tells us the total number of results from our query
permafrost['message']['total-results']
8218
permafrost['message']['items-per-page'] # tells us how many items per page 
20
permafrost['message']['query'] # details about our query
{'start-index': 0, 'search-terms': 'permafrost'}
permafrost['message']['items'] # the items of our query
[{'indexed': {'date-parts': [[2020, 4, 15]],
   'date-time': '2020-04-15T02:44:23Z',
   'timestamp': 1586918663309},
  'reference-count': 18,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 1911,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost Periglac. Process.'],
  'DOI': '10.1002/ppp.695',
  'type': 'journal-article',
  'created': {'date-parts': [[2010, 6, 8]],
   'date-time': '2010-06-08T11:53:41Z',
   'timestamp': 1275998021000},
  'page': '215-218',
  'source': 'Crossref',
  'is-referenced-by-count': 5,
  'title': ['Report from the international permafrost association: the IPY permafrost legacy'],
  'prefix': '10.1002',
  'volume': '21',
  'author': [{'given': 'Jerry',
    'family': 'Brown',
    'sequence': 'first',
    'affiliation': []}],
  'member': '311',
  'published-online': {'date-parts': [[2010, 6, 8]]},
  'reference': [{'key': '10.1002/ppp.695-BIB1|cit1',
    'doi-asserted-by': 'crossref',
    'first-page': '463',
    'DOI': '10.1111/j.1467-8306.1983.tb01853.x',
    'article-title': 'Geographical aspects of the First International Polar Year',
    'volume': '73',
    'author': 'Barr',
    'year': '1983',
    'journal-title': 'Annals of the Association of American Geographers'},
   {'key': '10.1002/ppp.695-BIB2|cit2',
    'doi-asserted-by': 'crossref',
    'first-page': '417',
    'DOI': '10.1002/ppp.668',
    'article-title': 'Report from the International Permafrost Association: the Permafrost Young Researchers Network (PYRN)',
    'volume': '20',
    'author': 'Bonnaventure',
    'year': '2009',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.695-BIB3|cit3',
    'unstructured': 'Brown J 2004 The Thermal State of Permafrost: An IPA Contribution to the International Polar Year and Year of Planet Earth Frozen Ground The News Bulletin of the IPA 3 5'},
   {'key': '10.1002/ppp.695-BIB4|cit4',
    'doi-asserted-by': 'crossref',
    'first-page': '255',
    'DOI': '10.1002/ppp.618',
    'article-title': 'Report from the International Permafrost Association: State of Permafrost in the First Decade of the 21st Century',
    'volume': '19',
    'author': 'Brown',
    'year': '2008',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.695-BIB5|cit5',
    'doi-asserted-by': 'crossref',
    'first-page': '393',
    'DOI': '10.1002/ppp.632',
    'article-title': 'Report from the International Permafrost Association: Ninth International Conference on Permafrost and IPA Council Meetings',
    'volume': '19',
    'author': 'Brown',
    'year': '2008a',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.695-BIB6|cit6',
    'author': 'Brown',
    'first-page': '199',
    'year': '2008b',
    'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
   {'key': '10.1002/ppp.695-BIB7|cit7',
    'doi-asserted-by': 'crossref',
    'first-page': '209',
    'DOI': '10.1002/ppp.590',
    'article-title': 'Report from the International Permafrost Association: Education and outreach for the International Polar Year',
    'volume': '18',
    'author': 'Christiansen',
    'year': '2007',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.695-BIB8|cit8',
    'doi-asserted-by': 'crossref',
    'first-page': '27',
    'DOI': '10.5194/essdd-3-27-2010',
    'article-title': 'NORPERM, the Norwegian Permafrost Database - a TSP NORWAY IPY legacy',
    'volume': '3',
    'author': 'Juliussen',
    'year': '2010',
    'journal-title': 'Earth System Science Data Discussions'},
   {'key': '10.1002/ppp.695-BIB9|cit9',
    'year': '2008',
    'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
   {'key': '10.1002/ppp.695-BIB10|cit10',
    'doi-asserted-by': 'crossref',
    'first-page': '229',
    'DOI': '10.1002/ppp.648',
    'article-title': 'Report from the International Permafrost Association: Carbon pools in permafrost regions',
    'volume': '20',
    'author': 'Kuhry',
    'year': '2009',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.695-BIB11|cit11',
    'unstructured': 'Overduin PP Couture N 2007 The 6 th ACD Workshop, 22-26 October 2006, University of Groningen, Netherlands Reports on Polar and Marine Research 100'},
   {'key': '10.1002/ppp.695-BIB12|cit12',
    'unstructured': 'Parsons MA Smith S Christiansen H 2007 Building the IPA-IPY Data Legacy: An Editorial Frozen Ground'},
   {'key': '10.1002/ppp.695-BIB13|cit13',
    'author': 'Ray',
    'first-page': '695pp',
    'year': '1885',
    'volume-title': 'Report of the International Polar Expedition to Point Barrow, Alaska'},
   {'key': '10.1002/ppp.695-BIB14|cit14',
    'author': 'Romanovsky',
    'first-page': '181',
    'year': '2007',
    'volume-title': 'Global Outlook for Ice and Snow'},
   {'key': '10.1002/ppp.695-BIB15|cit15',
    'doi-asserted-by': 'crossref',
    'first-page': 'GB2023',
    'DOI': '10.1029/2008GB003327',
    'article-title': 'Soil organic carbon pools in the northern circumpolar permafrost region',
    'volume': '23',
    'author': 'Tarnocai',
    'year': '2009',
    'journal-title': 'Global Geochemical Cycles'},
   {'key': '10.1002/ppp.695-BIB16|cit16',
    'author': 'Vonder Muhll',
    'first-page': '1869',
    'year': '2008',
    'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
   {'key': '10.1002/ppp.695-BIB17|cit17',
    'author': 'Wood',
    'first-page': '1957',
    'year': '2008',
    'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
   {'key': '10.1002/ppp.695-BIB18|cit18',
    'first-page': '14',
    'article-title': 'Circumpolar permafrost monitoring program',
    'volume': '27',
    'author': 'Yoshikawa',
    'year': '2008',
    'journal-title': 'Earth Scientist'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.695',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'},
   {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.695',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2019, 3, 1]],
   'date-time': '2019-03-01T04:55:09Z',
   'timestamp': 1551416109000},
  'score': 16.389135,
  'issued': {'date-parts': [[2010, 6, 8]]},
  'references-count': 18,
  'journal-issue': {'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.695',
  'relation': {'cites': []},
  'ISSN': ['1045-6740', '1099-1530'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'},
   {'value': '1099-1530', 'type': 'electronic'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 6, 9]],
   'date-time': '2020-06-09T16:12:27Z',
   'timestamp': 1591719147608},
  'publisher-location': 'Cham',
  'reference-count': 308,
  'publisher': 'Springer International Publishing',
  'isbn-type': [{'value': '9783030313784', 'type': 'print'},
   {'value': '9783030313791', 'type': 'electronic'}],
  'license': [{'URL': 'http://www.springer.com/tdm',
    'start': {'date-parts': [[2020, 1, 1]],
     'date-time': '2020-01-01T00:00:00Z',
     'timestamp': 1577836800000},
    'delay-in-days': 0,
    'content-version': 'tdm'}],
  'content-domain': {'domain': ['link.springer.com'],
   'crossmark-restriction': False},
  'published-print': {'date-parts': [[2020]]},
  'DOI': '10.1007/978-3-030-31379-1_5',
  'type': 'book-chapter',
  'created': {'date-parts': [[2020, 1, 1]],
   'date-time': '2020-01-01T12:02:46Z',
   'timestamp': 1577880166000},
  'page': '275-366',
  'update-policy': 'http://dx.doi.org/10.1007/springer_crossmark_policy',
  'source': 'Crossref',
  'is-referenced-by-count': 0,
  'title': ['Permafrost in Transition'],
  'prefix': '10.1007',
  'author': [{'given': 'J.',
    'family': 'van Huissteden',
    'sequence': 'first',
    'affiliation': []}],
  'member': '297',
  'published-online': {'date-parts': [[2020, 1, 2]]},
  'reference': [{'issue': '12',
    'key': '5_CR1',
    'doi-asserted-by': 'crossref',
    'first-page': '4570',
    'DOI': '10.1111/gcb.13069',
    'volume': '21',
    'author': 'BW Abbott',
    'year': '2015',
    'unstructured': 'Abbott BW, Jones JB (2015) Permafrost collapse alters soil carbon stocks, respiration, CH4, and N2O in upland tundra. Glob Chang Biol 21(12):4570–4587',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '2',
    'key': '5_CR2',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2011GB004237',
    'volume': '26',
    'author': 'A Abnizova',
    'year': '2012',
    'unstructured': 'Abnizova A, Siemens J, Langer M, Boike J (2012) Small ponds with major impact: the relevance of ponds and lakes in permafrost landscapes to carbon dioxide emissions. Glob Biogeochem Cycles 26(2):GB2041. \nhttps://doi.org/10.1029/2011GB004237',
    'journal-title': 'Glob Biogeochem Cycles'},
   {'issue': '1–4',
    'key': '5_CR3',
    'doi-asserted-by': 'publisher',
    'first-page': '183',
    'DOI': '10.1016/j.palaeo.2004.02.024',
    'volume': '209',
    'author': 'L Agafonov',
    'year': '2004',
    'unstructured': 'Agafonov L, Strunk H, Nuber T (2004) Thermokarst dynamics in Western Siberia: insights from dendrochronological research. Palaeogeogr Palaeoclimatol Palaeoecol 209(1–4):183–196',
    'journal-title': 'Palaeogeogr Palaeoclimatol Palaeoecol'},
   {'issue': '3',
    'key': '5_CR4',
    'doi-asserted-by': 'publisher',
    'first-page': '279',
    'DOI': '10.1002/ppp.626',
    'volume': '19',
    'author': 'HJ Åkerman',
    'year': '2008',
    'unstructured': 'Åkerman HJ, Johansson M (2008) Thawing permafrost and thicker active layers in sub-arctic Sweden. Permafr Periglac Process 19(3):279–292',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '15',
    'key': '5_CR5',
    'doi-asserted-by': 'crossref',
    'first-page': '2422',
    'DOI': '10.1002/hyp.8019',
    'volume': '25',
    'author': 'CD Arp',
    'year': '2011',
    'unstructured': 'Arp CD, Jones BM, Urban FE, Grosse G (2011) Hydrogeomorphic processes of thermokarst lakes with grounded-ice and floating-ice regimes on the Arctic coastal plain, Alaska. Hydrol Process 25(15):2422–2438',
    'journal-title': 'Hydrol Process'},
   {'issue': '16',
    'key': '5_CR6',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2012GL052518',
    'volume': '39',
    'author': 'CD Arp',
    'year': '2012',
    'unstructured': 'Arp CD, Jones BM, Lu Z, Whitman MS (2012) Shifting balance of thermokarst lake ice regimes across the Arctic coastal plain of northern Alaska. Geophys Res Lett 39(16):L16503. \nhttps://doi.org/10.1029/2012GL052518',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '12',
    'key': '5_CR7',
    'doi-asserted-by': 'publisher',
    'first-page': '6358',
    'DOI': '10.1002/2016GL068506',
    'volume': '43',
    'author': 'CD Arp',
    'year': '2016',
    'unstructured': 'Arp CD, Jones BM, Grosse G, Bondurant AC, Romanovsky VE, Hinkel KM, Parsekian AD (2016) Threshold sensitivity of shallow Arctic lakes and sublake permafrost to changing winter climate. Geophys Res Lett 43(12):6358–6365',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '11',
    'key': '5_CR8',
    'doi-asserted-by': 'publisher',
    'first-page': '3341',
    'DOI': '10.5194/bg-8-3341-2011',
    'volume': '8',
    'author': 'S Audry',
    'year': '2011',
    'unstructured': 'Audry S, Pokrovsky O, Shirokova L, Kirpotin S, Dupré B (2011) Organic matter mineralization and trace element post-depositional redistribution in Western Siberia thermokarst lake sediments. Biogeosciences 8(11):3341–3358',
    'journal-title': 'Biogeosciences'},
   {'issue': '7',
    'key': '5_CR9',
    'doi-asserted-by': 'publisher',
    'first-page': '444',
    'DOI': '10.1038/ngeo1160',
    'volume': '4',
    'author': 'CA Avis',
    'year': '2011',
    'unstructured': 'Avis CA, Weaver AJ, Meissner KJ (2011) Reduction in areal extent of high-latitude wetlands in response to permafrost thaw. Nat Geosci 4(7):444',
    'journal-title': 'Nat Geosci'},
   {'issue': '9',
    'key': '5_CR10',
    'doi-asserted-by': 'publisher',
    'first-page': '598',
    'DOI': '10.1038/ngeo618',
    'volume': '2',
    'author': 'TJ Battin',
    'year': '2009',
    'unstructured': 'Battin TJ, Luyssaert S, Kaplan LA, Aufdenkampe AK, Richter A, Tranvik LJ (2009) The boundless carbon cycle. Nat Geosci 2(9):598',
    'journal-title': 'Nat Geosci'},
   {'issue': '5',
    'key': '5_CR11',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2003GL019251',
    'volume': '31',
    'author': 'R Benner',
    'year': '2004',
    'unstructured': 'Benner R, Benitez-Nelson B, Kaiser K, Amon RM (2004) Export of young terrigenous dissolved organic carbon from rivers to the Arctic Ocean. Geophys Res Lett 31(5):L05305. \nhttps://doi.org/10.1029/2003GL019251',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '22',
    'key': '5_CR12',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2009GL039225',
    'volume': '36',
    'author': 'V Bense',
    'year': '2009',
    'unstructured': 'Bense V, Ferguson G, Kooi H (2009) Evolution of shallow groundwater flow systems in areas of degrading permafrost. Geophys Res Lett 36(22):L22041. \nhttps://doi.org/10.1029/2009GL039225',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '21',
    'key': '5_CR13',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2004GL021277',
    'volume': '31',
    'author': 'Svetlana Berezovskaya',
    'year': '2004',
    'unstructured': 'Berezovskaya S, Yang D, Kane DL (2004) Compatibility analysis of precipitation and runoff trends over the large Siberian watersheds. Geophys Res Lett 31(21):L21502. \nhttps://doi.org/10.1029/2004GL021277',
    'journal-title': 'Geophysical Research Letters'},
   {'issue': '7501',
    'key': '5_CR14',
    'doi-asserted-by': 'publisher',
    'first-page': '479',
    'DOI': '10.1038/nature13259',
    'volume': '509',
    'author': 'R Bintanja',
    'year': '2014',
    'unstructured': 'Bintanja R, Selten F (2014) Future increases in Arctic precipitation linked to local evaporation and sea-ice retreat. Nature 509(7501):479–483',
    'journal-title': 'Nature'},
   {'issue': '3',
    'key': '5_CR15',
    'doi-asserted-by': 'publisher',
    'first-page': '160',
    'DOI': '10.1002/ppp.1769',
    'volume': '24',
    'author': 'BK Biskaborn',
    'year': '2013',
    'unstructured': 'Biskaborn BK, Herzschuh U, Bolshiyanov DY, Schwamborn G, Diekmann B (2013) Thermokarst processes and depositional events in a tundra lake, northeastern Siberia. Permafr Periglac Process 24(3):160–174',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '1',
    'key': '5_CR16',
    'doi-asserted-by': 'publisher',
    'first-page': '264',
    'DOI': '10.1038/s41467-018-08240-4',
    'volume': '10',
    'author': 'BK Biskaborn',
    'year': '2019',
    'unstructured': 'Biskaborn BK, Smith SL, Noetzli J, Matthes H, Vieira G, Streletskiy DA, Schoeneich P, Romanovsky VE, Lewkowicz AG, Abramov A (2019) Permafrost is warming at a global scale. Nat Commun 10(1):264',
    'journal-title': 'Nat Commun'},
   {'issue': '4',
    'key': '5_CR17',
    'doi-asserted-by': 'publisher',
    'first-page': '1296',
    'DOI': '10.1111/j.1365-2486.2009.02110.x',
    'volume': '16',
    'author': 'D Blok',
    'year': '2010',
    'unstructured': 'Blok D, Heijmans MM, Schaepman-Strub G, Kononov A, Maximov T, Berendse F (2010) Shrub expansion may reduce summer permafrost thaw in Siberian tundra. Glob Chang Biol 16(4):1296–1305',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '7',
    'key': '5_CR18',
    'doi-asserted-by': 'publisher',
    'first-page': '1055',
    'DOI': '10.1007/s10021-011-9463-5',
    'volume': '14',
    'author': 'D Blok',
    'year': '2011',
    'unstructured': 'Blok D, Heijmans MMPD, Schaepman-Strub G, van Ruijven J, Parmentier FJW, Maximov TC, Berendse F (2011) The cooling capacity of mosses: controls on water and energy fluxes in a Siberian tundra site. Ecosystems 14(7):1055–1065. \nhttps://doi.org/10.1007/s10021-011-9463-5',
    'journal-title': 'Ecosystems'},
   {'key': '5_CR19',
    'unstructured': 'Boike J, Wille C, Abnizova A (2008) Climatology and summer energy and water balance of polygonal tundra in the Lena River Delta, Siberia. J Geophys Res 113(G3). \nhttps://doi.org/10.1029/2007jg000540',
    'DOI': '10.1029/2007jg000540',
    'doi-asserted-by': 'publisher'},
   {'issue': '20',
    'key': '5_CR20',
    'doi-asserted-by': 'publisher',
    'first-page': '5941',
    'DOI': '10.5194/bg-12-5941-2015',
    'volume': '12',
    'author': 'J Boike',
    'year': '2015',
    'unstructured': 'Boike J, Georgi C, Kirilin G, Muster S, Abramova K, Fedorova I, Chetverova A, Grigoriev M, Bornemann N, Langer M (2015) Thermal processes of thermokarst lakes in the continuous permafrost zone of northern Siberia\xa0– observations and modeling (Lena River Delta, Siberia). Biogeosciences 12(20):5941–5965. \nhttps://doi.org/10.5194/bg-12-5941-2015',
    'journal-title': 'Biogeosciences'},
   {'key': '5_CR21',
    'doi-asserted-by': 'publisher',
    'first-page': '116',
    'DOI': '10.1016/j.gloplacha.2016.01.001',
    'volume': '139',
    'author': 'J Boike',
    'year': '2016',
    'unstructured': 'Boike J, Grau T, Heim B, Günther F, Langer M, Muster S, Gouttevin I, Lange S (2016) Satellite-derived changes in the permafrost landscape of central Yakutia, 2000–2011: wetting, drying, and fires. Glob Planet Chang 139:116–127',
    'journal-title': 'Glob Planet Chang'},
   {'issue': '1',
    'key': '5_CR22',
    'doi-asserted-by': 'publisher',
    'first-page': '1',
    'DOI': '10.5194/tc-11-1-2017',
    'volume': '11',
    'author': 'AF Borge',
    'year': '2017',
    'unstructured': 'Borge AF, Westermann S, Solheim I, Etzelmüller B (2017) Strong degradation of palsas and peat plateaus in northern Norway during the last 60 years. Cryosphere 11(1):1–16. \nhttps://doi.org/10.5194/tc-11-1-2017',
    'journal-title': 'Cryosphere'},
   {'issue': '7',
    'key': '5_CR23',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2010WR010131',
    'volume': '47',
    'author': 'É Boucher',
    'year': '2011',
    'unstructured': 'Boucher É, Ouarda TB, Bégin Y, Nicault A (2011) Spring flood reconstruction from continuous and discrete tree ring series. Water Resour Res 47(7):W07516. \nhttps://doi.org/10.1029/2010WR010131',
    'journal-title': 'Water Resour Res'},
   {'issue': '2',
    'key': '5_CR24',
    'doi-asserted-by': 'publisher',
    'first-page': '276',
    'DOI': '10.1175/2009JHM1084.1',
    'volume': '11',
    'author': 'LC Bowling',
    'year': '2010',
    'unstructured': 'Bowling LC, Lettenmaier DP (2010) Modeling the effects of lakes and wetlands on the water balance of Arctic environments. J Hydrometeorol 11(2):276–295',
    'journal-title': 'J Hydrometeorol'},
   {'issue': '10',
    'key': '5_CR25',
    'doi-asserted-by': 'publisher',
    'first-page': '1635',
    'DOI': '10.1139/F09-108',
    'volume': '66',
    'author': 'J Breton',
    'year': '2009',
    'unstructured': 'Breton J, Vallieres C, Laurion I (2009) Limnological properties of permafrost thaw ponds in northeastern Canada. Can J Fish Aquat Sci 66(10):1635–1648',
    'journal-title': 'Can J Fish Aquat Sci'},
   {'issue': '3',
    'key': '5_CR26',
    'doi-asserted-by': 'publisher',
    'first-page': '621',
    'DOI': '10.1002/2015JG003131',
    'volume': '121',
    'author': 'A Bring',
    'year': '2016',
    'unstructured': 'Bring A, Fedorova I, Dibike Y, Hinzman L, Mård J, Mernild S, Prowse T, Semenova O, Stuefer SL, Woo MK (2016) Arctic terrestrial hydrology: a synthesis of processes, regional effects, and research challenges. J Geophys Res Biogeo 121(3):621–649',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '1',
    'key': '5_CR27',
    'doi-asserted-by': 'publisher',
    'first-page': '81',
    'DOI': '10.1002/ppp.473',
    'volume': '15',
    'author': 'A Brouchkov',
    'year': '2004',
    'unstructured': 'Brouchkov A, Fukuda M, Fedorov A, Konstantinov P, Iwahana G (2004) Thermokarst as a short-term permafrost disturbance, Central Yakutia. Permafr Periglac Process 15(1):81–87. \nhttps://doi.org/10.1002/ppp.473',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '3',
    'key': '5_CR28',
    'doi-asserted-by': 'publisher',
    'first-page': '166',
    'DOI': '10.1080/10889370009377698',
    'volume': '24',
    'author': 'J Brown',
    'year': '2000',
    'unstructured': 'Brown J, Hinkel KM, Nelson F (2000) The circumpolar active layer monitoring (CALM) program: research designs and initial results. Polar Geogr 24(3):166–258',
    'journal-title': 'Polar Geogr'},
   {'issue': 'D22',
    'key': '5_CR29',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2012JD018344',
    'volume': '117',
    'author': 'W Brutsaert',
    'year': '2012',
    'unstructured': 'Brutsaert W, Hiyama T (2012) The determination of permafrost thawing trends from long-term streamflow measurements with an application in eastern Siberia. J Geophys Res Atmos 117(D22):D22110. \nhttps://doi.org/10.1029/2012JD018344',
    'journal-title': 'J Geophys Res Atmos'},
   {'key': '5_CR30',
    'author': 'O Bulygina',
    'volume': '6',
    'year': '2011',
    'unstructured': 'Bulygina O, Groisman PY, Razuvaev VN, Korshunova NN (2011) Changes in snow cover characteristics over Northern Eurasia since 1966. Environ Res Lett 6:04520. \nhttps://doi.org/10.1088/1748-9326/6/4/045204',
    'journal-title': 'Environ Res Lett',
    'DOI': '10.1088/1748-9326/6/4/045204',
    'doi-asserted-by': 'publisher'},
   {'issue': '7',
    'key': '5_CR31',
    'doi-asserted-by': 'publisher',
    'first-page': '912',
    'DOI': '10.1139/e17-076',
    'volume': '34',
    'author': 'C Burn',
    'year': '1997',
    'unstructured': 'Burn C (1997) Cryostratigraphy, paleogeography, and climate change during the early Holocene warm interval, western Arctic coast, Canada. Can J Earth Sci 34(7):912–925',
    'journal-title': 'Can J Earth Sci'},
   {'issue': '7',
    'key': '5_CR32',
    'doi-asserted-by': 'publisher',
    'first-page': '967',
    'DOI': '10.1139/e00-017',
    'volume': '37',
    'author': 'C Burn',
    'year': '2000',
    'unstructured': 'Burn C (2000) The thermal regime of a retrogressive thaw slump near Mayo, Yukon territory. Can J Earth Sci 37(7):967–981',
    'journal-title': 'Can J Earth Sci'},
   {'key': '5_CR33',
    'unstructured': 'Burn C, Friele P (1989) Geomorphology, vegetation succession, soil characteristics and permafrost in retrogressive thaw slumps near Mayo. Yukon Territory Arctic:31–40',
    'DOI': '10.14430/arctic1637',
    'doi-asserted-by': 'crossref'},
   {'key': '5_CR34',
    'unstructured': 'Burn CR, Nelson FE (2006) Comment on “A projection of severe near-surface permafrost degradation during the 21st century” by David M. Lawrence and Andrew G. Slater. Geophysical Research Letters 33 (21). \nhttps://doi.org/10.1029/2006GL027077',
    'DOI': '10.1029/2006GL027077',
    'doi-asserted-by': 'publisher'},
   {'key': '5_CR35',
    'doi-asserted-by': 'publisher',
    'first-page': '34',
    'DOI': '10.1007/s13280-011-0223-8',
    'volume': '41',
    'author': 'J Carstensen',
    'year': '2012',
    'unstructured': 'Carstensen J, Weydmann A (2012) Tipping points in the Arctic: eyeballing or statistical significance? Ambio 41:34–43. \nhttps://doi.org/10.1007/s13280-011-0223-8',
    'journal-title': 'Ambio'},
   {'issue': '5',
    'key': '5_CR36',
    'doi-asserted-by': 'publisher',
    'first-page': '1493',
    'DOI': '10.5194/gmd-8-1493-2015',
    'volume': '8',
    'author': 'S Chadburn',
    'year': '2015',
    'unstructured': 'Chadburn S, Burke E, Essery R, Boike J, Langer M, Heikenfeld M, Cox P, Friedlingstein P (2015) An improved representation of physical permafrost dynamics in the JULES land-surface model. Geosci Model Dev 8(5):1493–1508',
    'journal-title': 'Geosci Model Dev'},
   {'key': '5_CR37',
    'doi-asserted-by': 'publisher',
    'first-page': '21035',
    'DOI': '10.1029/95JD02145',
    'volume': 'D10',
    'author': 'TR Christensen',
    'year': '1995',
    'unstructured': 'Christensen TR, Jonasson S, Callaghan TV, Havström M (1995) Spatial variation in high latitude methane flux-a transect across tundra environments in Siberia and the European Arctic. J Geophys Res Oceans D10:21035–21045',
    'journal-title': 'J Geophys Res Oceans'},
   {'key': '5_CR38',
    'unstructured': 'Christensen TR, Ekberg A, Ström L, Mastepanov M, Panikov N, Öquist M, Svensson BH, Nykänen H, Martikainen PJ, Oskarsson H (2003) Factors controlling large scale variations in methane emissions from wetlands. Geophys Res Lett 30(7). \nhttps://doi.org/10.1029/2002gl016848',
    'DOI': '10.1029/2002gl016848',
    'doi-asserted-by': 'publisher'},
   {'issue': '9',
    'key': '5_CR39',
    'doi-asserted-by': 'publisher',
    'first-page': '627',
    'DOI': '10.1038/ngeo2234',
    'volume': '7',
    'author': 'J Cohen',
    'year': '2014',
    'unstructured': 'Cohen J, Screen JA, Furtado JC, Barlow M, Whittleston D, Coumou D, Francis J, Dethloff K, Entekhabi D, Overland J (2014) Recent Arctic amplification and extreme mid-latitude weather. Nat Geosci 7(9):627',
    'journal-title': 'Nat Geosci'},
   {'issue': '14',
    'key': '5_CR40',
    'doi-asserted-by': 'publisher',
    'first-page': '4163',
    'DOI': '10.1002/hyp.10206',
    'volume': '28',
    'author': 'RF Connon',
    'year': '2014',
    'unstructured': 'Connon RF, Quinton WL, Craig JR, Hayashi M (2014) Changing hydrologic connectivity due to permafrost thaw in the lower Liard River valley, NWT, Canada. Hydrol Process 28(14):4163–4178',
    'journal-title': 'Hydrol Process'},
   {'issue': '2',
    'key': '5_CR41',
    'doi-asserted-by': 'publisher',
    'first-page': '281',
    'DOI': '10.1002/2017JF004469',
    'volume': '123',
    'author': 'R Connon',
    'year': '2018',
    'unstructured': 'Connon R, Devoie É, Hayashi M, Veness T, Quinton W (2018) The influence of shallow taliks on permafrost thaw and active layer dynamics in subarctic Canada. J Geophys Res Earth 123(2):281–297',
    'journal-title': 'J Geophys Res Earth'},
   {'issue': '0',
    'key': '5_CR42',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1111/j.1365-2486.2005.01023.x',
    'volume': '0',
    'author': 'C Corradi',
    'year': '2005',
    'unstructured': 'Corradi C, Kolle O, Walter K, Zimov SA, Schulze ED (2005) Carbon dioxide and methane exchange of a north-east Siberian tussock tundra. Glob Chang Biol 0(0):051115033519001. \nhttps://doi.org/10.1111/j.1365-2486.2005.01023.x',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '9',
    'key': '5_CR43',
    'doi-asserted-by': 'publisher',
    'first-page': '3429',
    'DOI': '10.1073/pnas.1214104110',
    'volume': '110',
    'author': 'RM Cory',
    'year': '2013',
    'unstructured': 'Cory RM, Crump BC, Dobkowski JA, Kling GW (2013) Surface exposure to sunlight stimulates CO2 release from permafrost soil carbon in the Arctic. Proc Natl Acad Sci 110(9):3429–3434',
    'journal-title': 'Proc Natl Acad Sci'},
   {'issue': '14',
    'key': '5_CR44',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2007GL030212',
    'volume': '34',
    'author': 'F Costard',
    'year': '2007',
    'unstructured': 'Costard F, Gautier E, Brunstein D, Hammadi J, Fedorov A, Yang D, Dupeyrat L (2007) Impact of the global warming on the fluvial thermal erosion over the Lena River in Central Siberia. Geophys Res Lett 34(14):L14501. \nhttps://doi.org/10.1029/2007GL030212',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '1',
    'key': '5_CR45',
    'doi-asserted-by': 'publisher',
    'first-page': '19704',
    'DOI': '10.3402/polar.v32i0.19704',
    'volume': '32',
    'author': 'BAFK Denfeld',
    'year': '2013',
    'unstructured': 'Denfeld BAFK, Sobczak WV, Mann PJ, Holmes RM (2013) Summer CO2 evasion from streams and rivers in the Kolyma River basin, North-East Siberia. Polar Res 32(1):19704',
    'journal-title': 'Polar Res'},
   {'key': '5_CR46',
    'author': 'F Dentener',
    'year': '2006',
    'unstructured': 'Dentener F (2006) Global maps of atmospheric nitrogen deposition, 1860, 1993, and 2050. ORNL DAAC, Oak Ridge. \nhttps://doi.org/10.3334/ORNLDAAC/830',
    'volume-title': 'Global maps of atmospheric nitrogen deposition, 1860, 1993, and 2050',
    'DOI': '10.3334/ORNLDAAC/830',
    'doi-asserted-by': 'publisher'},
   {'issue': '7255',
    'key': '5_CR47',
    'doi-asserted-by': 'publisher',
    'first-page': '616',
    'DOI': '10.1038/nature08216',
    'volume': '460',
    'author': 'E Dorrepaal',
    'year': '2009',
    'unstructured': 'Dorrepaal E, Toet S, van Logtestijn RS, Swart E, van de Weg MJ, Callaghan TV, Aerts R (2009) Carbon respiration from subsurface peat accelerated by climate warming in the subarctic. Nature 460(7255):616',
    'journal-title': 'Nature'},
   {'issue': '45',
    'key': '5_CR48',
    'doi-asserted-by': 'publisher',
    'first-page': '13946',
    'DOI': '10.1073/pnas.1511705112',
    'volume': '112',
    'author': 'TW Drake',
    'year': '2015',
    'unstructured': 'Drake TW, Wickland KP, Spencer RG, McKnight DM, Striegl RG (2015) Ancient low–molecular-weight organic acids in permafrost fuel rapid carbon dioxide production upon thaw. Proc Natl Acad Sci 112(45):13946–13951',
    'journal-title': 'Proc Natl Acad Sci'},
   {'issue': '12',
    'key': '5_CR49',
    'doi-asserted-by': 'publisher',
    'first-page': '2336',
    'DOI': '10.1111/j.1365-2486.2006.01259.x',
    'volume': '12',
    'author': 'K Dutta',
    'year': '2006',
    'unstructured': 'Dutta K, Schuur E, Neff J, Zimov S (2006) Potential carbon release from permafrost soils of northeastern Siberia. Glob Chang Biol 12(12):2336–2351',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '5',
    'key': '5_CR50',
    'doi-asserted-by': 'publisher',
    'first-page': '332',
    'DOI': '10.1038/ngeo803',
    'volume': '3',
    'author': 'B Elberling',
    'year': '2010',
    'unstructured': 'Elberling B, Christiansen HH, Hansen BU (2010) High nitrous oxide production from thawing permafrost. Nat Geosci 3(5):332',
    'journal-title': 'Nat Geosci'},
   {'issue': '10',
    'key': '5_CR51',
    'doi-asserted-by': 'publisher',
    'first-page': '890',
    'DOI': '10.1038/nclimate1955',
    'volume': '3',
    'author': 'B Elberling',
    'year': '2013',
    'unstructured': 'Elberling B, Michelsen A, Schädel C, Schuur EA, Christiansen HH, Berg L, Tamstorf MP, Sigsgaard C (2013) Long-term CO2 production following permafrost thaw. Nat Clim Chang 3(10):890',
    'journal-title': 'Nat Clim Chang'},
   {'issue': '2',
    'key': '5_CR52',
    'doi-asserted-by': 'publisher',
    'first-page': '164',
    'DOI': '10.1111/j.1461-0248.2011.01716.x',
    'volume': '15',
    'author': 'SC Elmendorf',
    'year': '2012',
    'unstructured': 'Elmendorf SC, Henry GH, Hollister RD, Björk RG, Bjorkman AD, Callaghan TV, Collier LS, Cooper EJ, Cornelissen JH, Day TA (2012) Global assessment of experimental climate warming on tundra vegetation: heterogeneity over space and time. Ecol Lett 15(2):164–175',
    'journal-title': 'Ecol Lett'},
   {'issue': '5',
    'key': '5_CR53',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2006WR005139',
    'volume': '43',
    'author': 'CA Emmerton',
    'year': '2007',
    'unstructured': 'Emmerton CA, Lesack LF, Marsh P (2007) Lake abundance, potential water storage, and habitat distribution in the Mackenzie River Delta, western Canadian Arctic. Water Resour Res 43(5):W05419. \nhttps://doi.org/10.1029/2006WR005139',
    'journal-title': 'Water Resour Res'},
   {'issue': 'S1',
    'key': '5_CR54',
    'doi-asserted-by': 'publisher',
    'first-page': '84',
    'DOI': '10.1046/j.1365-2486.2000.06015.x',
    'volume': '6',
    'author': 'W Eugster',
    'year': '2000',
    'unstructured': 'Eugster W, Rouse WR, Pielke RA Sr, Mcfadden JP, Baldocchi DD, Kittel TG, Chapin FS, Liston GE, Vidale PL, Vaganov E (2000) Land–atmosphere energy exchange in Arctic tundra and boreal forest: available data and feedbacks to climate. Glob Chang Biol 6(S1):84–115',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '2',
    'key': '5_CR55',
    'doi-asserted-by': 'publisher',
    'first-page': '146',
    'DOI': '10.1016/j.gnr.2009.06.010',
    'volume': '30',
    'author': 'AN Fedorov',
    'year': '2009',
    'unstructured': 'Fedorov AN, Konstantinov PY (2009) Response of permafrost landscapes of central Yakutia to current changes of climate, and anthropogenic impacts. Geogr Nat Resour 30(2):146–150',
    'journal-title': 'Geogr Nat Resour'},
   {'issue': '2',
    'key': '5_CR56',
    'doi-asserted-by': 'publisher',
    'first-page': '188',
    'DOI': '10.1002/eco.1378',
    'volume': '7',
    'author': 'A Fedorov',
    'year': '2014',
    'unstructured': 'Fedorov A, Gavriliev P, Konstantinov P, Hiyama T, Iijima Y, Iwahana G (2014) Estimating the water balance of a thermokarst lake in the middle of the Lena River basin, eastern Siberia. Ecohydrology 7(2):188–196',
    'journal-title': 'Ecohydrology'},
   {'issue': '1',
    'key': '5_CR57',
    'doi-asserted-by': 'publisher',
    'first-page': '7',
    'DOI': '10.1080/00207233.2012.619879',
    'volume': '69',
    'author': 'A Fedotov',
    'year': '2012',
    'unstructured': 'Fedotov A, Phedorin M, Suvorov A, Melgunov M, Khodzher T (2012) Permafrost thawing inferred from Arctic lake sediment of the Taimyr peninsula, East Siberia, Russia. Int J Environ Stud 69(1):7–19',
    'journal-title': 'Int J Environ Stud'},
   {'issue': '35',
    'key': '5_CR58',
    'doi-asserted-by': 'publisher',
    'first-page': '14168',
    'DOI': '10.1073/pnas.1307031110',
    'volume': '110',
    'author': 'X Feng',
    'year': '2013',
    'unstructured': 'Feng X, Vonk JE, Van Dongen BE, Gustafsson Ö, Semiletov IP, Dudarev OV, Wang Z, Montluçon DB, Wacker L, Eglinton TI (2013) Differential mobilization of terrestrial carbon pools in Eurasian Arctic river basins. Proc Natl Acad Sci 110(35):14168–14173',
    'journal-title': 'Proc Natl Acad Sci'},
   {'issue': '9',
    'key': '5_CR59',
    'doi-asserted-by': 'publisher',
    'first-page': '3127',
    'DOI': '10.1111/gcb.13248',
    'volume': '22',
    'author': 'JP Fisher',
    'year': '2016',
    'unstructured': 'Fisher JP, Estop-Aragonés C, Thierry A, Charman DJ, Wolfe SA, Hartley IP, Murton JB, Williams M, Phoenix GK (2016) The influence of vegetation and soil characteristics on active-layer thickness of permafrost soils in boreal forest. Glob Chang Biol 22(9):3127–3140',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '3',
    'key': '5_CR60',
    'doi-asserted-by': 'publisher',
    'first-page': '229',
    'DOI': '10.1002/ppp.595',
    'volume': '18',
    'author': 'D Fortier',
    'year': '2007',
    'unstructured': 'Fortier D, Allard M, Shur Y (2007) Observation of rapid drainage system development by thermal erosion of ice wedges on Bylot Island, Canadian Arctic archipelago. Permafr Periglac Process 18(3):229–243',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '8',
    'key': '5_CR61',
    'doi-asserted-by': 'publisher',
    'first-page': '2861',
    'DOI': '10.1111/gcb.12916',
    'volume': '21',
    'author': 'D Frank',
    'year': '2015',
    'unstructured': 'Frank D, Reichstein M, Bahn M, Thonicke K, Frank D, Mahecha MD, Smith P, Van der Velde M, Vicca S, Babst F (2015) Effects of climate extremes on the terrestrial carbon cycle: concepts, processes and potential future impacts. Glob Chang Biol 21(8):2861–2880',
    'journal-title': 'Glob Chang Biol'},
   {'key': '5_CR62',
    'unstructured': 'French HM (2018) The periglacial environment. Wiley, Oxford, 515 p'},
   {'issue': '3–4',
    'key': '5_CR63',
    'doi-asserted-by': 'publisher',
    'first-page': '190',
    'DOI': '10.1016/j.earscirev.2010.04.002',
    'volume': '101',
    'author': 'H French',
    'year': '2010',
    'unstructured': 'French H, Shur Y (2010) The principles of cryostratigraphy. Earth Sci Rev 101(3–4):190–206',
    'journal-title': 'Earth Sci Rev'},
   {'issue': '1',
    'key': '5_CR64',
    'doi-asserted-by': 'publisher',
    'first-page': '169',
    'DOI': '10.1002/hyp.7196',
    'volume': '23',
    'author': 'KE Frey',
    'year': '2009',
    'unstructured': 'Frey KE, McClelland JW (2009) Impacts of permafrost degradation on arctic river biogeochemistry. Hydrol Process 23(1):169–182',
    'journal-title': 'Hydrol Process'},
   {'issue': '9',
    'key': '5_CR65',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2004GL022025',
    'volume': '32',
    'author': 'KE Frey',
    'year': '2005',
    'unstructured': 'Frey KE, Smith LC (2005) Amplified carbon release from vast west Siberian peatlands by 2100. Geophys Res Lett 32(9):L09401. \nhttps://doi.org/10.1029/2004GL022025',
    'journal-title': 'Geophys Res Lett'},
   {'issue': 'G4',
    'key': '5_CR66',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2006JG000369',
    'volume': '112',
    'author': 'Karen E. Frey',
    'year': '2007',
    'unstructured': 'Frey KE, McClelland JW, Holmes RM, Smith LC (2007a) Impacts of climate warming and permafrost thaw on the riverine transport of nitrogen and phosphorus to the Kara Sea. J Geophys Res Biogeosci 112(G4):G04S58. \nhttps://doi.org/10.1029/2006JG000369',
    'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
   {'issue': '3',
    'key': '5_CR67',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2006WR004902',
    'volume': '43',
    'author': 'KE Frey',
    'year': '2007',
    'unstructured': 'Frey KE, Siegel DI, Smith LC (2007b) Geochemistry of west Siberian streams and their potential response to permafrost degradation. Water Resour Res 43(3):W03406. \nhttps://doi.org/10.1029/2006WR004902',
    'journal-title': 'Water Resour Res'},
   {'issue': '5896',
    'key': '5_CR68',
    'doi-asserted-by': 'publisher',
    'first-page': '1648',
    'DOI': '10.1126/science.1157525',
    'volume': '321',
    'author': 'DG Froese',
    'year': '2008',
    'unstructured': 'Froese DG, Westgate JA, Reyes AV, Enkin RJ, Preece SJ (2008) Ancient permafrost and a future, warmer Arctic. Science 321(5896):1648–1648',
    'journal-title': 'Science'},
   {'issue': '6',
    'key': '5_CR69',
    'doi-asserted-by': 'publisher',
    'first-page': '2975',
    'DOI': '10.5194/tc-11-2975-2017',
    'volume': '11',
    'author': 'M Göckede',
    'year': '2017',
    'unstructured': 'Göckede M, Kittler F, Kwon MJ, Burjack I, Heimann M, Kolle O, Zimov N, Zimov S (2017) Shifted energy fluxes, increased Bowen ratios, and reduced thaw depths linked with drainage-induced changes in permafrost ecosystem structure. Cryosphere 11(6):2975–2996',
    'journal-title': 'Cryosphere'},
   {'issue': '4',
    'key': '5_CR70',
    'doi-asserted-by': 'publisher',
    'first-page': '29',
    'DOI': '10.1029/2009EO040001',
    'volume': '90',
    'author': 'MN Gooseff',
    'year': '2009',
    'unstructured': 'Gooseff MN, Balser A, Bowden WB, Jones JB (2009) Effects of hillslope thermokarst in northern Alaska. EOS Trans Am Geophys Union 90(4):29–30',
    'journal-title': 'EOS Trans Am Geophys Union'},
   {'issue': '3–4',
    'key': '5_CR71',
    'doi-asserted-by': 'publisher',
    'first-page': '371',
    'DOI': '10.1016/j.gloplacha.2006.07.029',
    'volume': '56',
    'author': 'PY Groisman',
    'year': '2007',
    'unstructured': 'Groisman PY, Sherstyukov BG, Razuvaev VN, Knight RW, Enloe JG, Stroumentova NS, Whitfield PH, Førland E, Hannsen-Bauer I, Tuomenvirta H (2007) Potential forest fire danger over northern Eurasia: changes during the 20th century. Glob Planet Chang 56(3–4):371–386',
    'journal-title': 'Glob Planet Chang'},
   {'key': '5_CR72',
    'unstructured': 'Grosse G, Romanovsky V, Walter K, Morgenstern A, Lantuit H, Zimov S (2008) Distribution of thermokarst lakes and ponds at three yedoma sites in Siberia. In: 9th international conference on permafrost, Fairbanks, 2008. Proceedings 9th international conference on Permafrost, pp 551–556'},
   {'key': '5_CR73',
    'unstructured': 'Grosse G, Harden J, Turetsky M, McGuire AD, Camill P, Tarnocai C, Frolking S, Schuur EAG, Jorgenson T, Marchenko S, Romanovsky V, Wickland KP, French N, Waldrop M, Bourgeau-Chavez L, Striegl RG (2011) Vulnerability of high-latitude soil organic carbon in North America to disturbance. J Geophys Res 116. \nhttps://doi.org/10.1029/2010jg001507',
    'DOI': '10.1029/2010jg001507',
    'doi-asserted-by': 'publisher'},
   {'key': '5_CR74',
    'author': 'G. Grosse',
    'first-page': '325',
    'year': '2013',
    'unstructured': 'Grosse G, Jones B, Arp C (2013) Thermokarst lakes, drainage, and drained basins. In: Shroder J, Giardino R, Harbor J (eds) Glacial and periglacial geomorphology, Treatise on geomorphology, vol 8, pp 325–353. \nhttps://doi.org/10.1016/b978-0-12-374739-6.00216-5',
    'volume-title': 'Treatise on Geomorphology',
    'DOI': '10.1016/B978-0-12-374739-6.00216-5',
    'doi-asserted-by': 'publisher'},
   {'issue': '2',
    'key': '5_CR75',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2005GB002593',
    'volume': '20',
    'author': 'L Guo',
    'year': '2006',
    'unstructured': 'Guo L, Macdonald RW (2006) Source and transport of terrigenous organic matter in the upper Yukon River: evidence from isotope (δ13C, δ14C, and δ15N) composition of dissolved, colloidal, and particulate phases. Glob Biogeochem Cycles 20(2):GB2011. \nhttps://doi.org/10.1029/2005GB002593',
    'journal-title': 'Glob Biogeochem Cycles'},
   {'issue': '13',
    'key': '5_CR76',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2007GL030689',
    'volume': '34',
    'author': 'L Guo',
    'year': '2007',
    'unstructured': 'Guo L, Ping CL, Macdonald RW (2007) Mobilization pathways of organic carbon from permafrost to arctic rivers in a changing climate. Geophys Res Lett 34(13):L13603. \nhttps://doi.org/10.1029/2007GL030689',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '6',
    'key': '5_CR77',
    'doi-asserted-by': 'publisher',
    'first-page': '1737',
    'DOI': '10.5194/bg-8-1737-2011',
    'volume': '8',
    'author': 'Ö Gustafsson',
    'year': '2011',
    'unstructured': 'Gustafsson Ö, van Dongen BE, Vonk JE, Dudarev OV, Semiletov IP (2011) Widespread release of old carbon across the Siberian Arctic echoed by its large rivers. Biogeosciences 8(6):1737–1743. \nhttps://doi.org/10.5194/bg-8-1737-2011',
    'journal-title': 'Biogeosciences'},
   {'key': '5_CR78',
    'author': 'Ramon F. Hanssen',
    'year': '2001',
    'unstructured': 'Hanssen RF (2001) Radar interferometry: data interpretation and error analysis, vol 2. Springer, Dordrecht, 308 p',
    'series-title': 'Remote Sensing and Digital Image Processing',
    'volume-title': 'Radar Interferometry',
    'DOI': '10.1007/0-306-47633-9',
    'doi-asserted-by': 'publisher'},
   {'issue': '10',
    'key': '5_CR79',
    'doi-asserted-by': 'publisher',
    'first-page': '1040',
    'DOI': '10.1111/j.1461-0248.2009.01355.x',
    'volume': '12',
    'author': 'MA Harsch',
    'year': '2009',
    'unstructured': 'Harsch MA, Hulme PE, McGlone MS, Duncan RP (2009) Are treelines advancing? A global meta-analysis of treeline response to climate warming. Ecol Lett 12(10):1040–1049',
    'journal-title': 'Ecol Lett'},
   {'issue': '2',
    'key': '5_CR80',
    'doi-asserted-by': 'publisher',
    'first-page': '649',
    'DOI': '10.1111/gcb.12058',
    'volume': '19',
    'author': 'CE Hicks Pries',
    'year': '2013',
    'unstructured': 'Hicks Pries CE, Schuur EA, Crummer KG (2013a) Thawing permafrost increases old soil and autotrophic respiration in tundra: partitioning ecosystem respiration using delta(13) C and (14) C. Glob Chang Biol 19(2):649–661. \nhttps://doi.org/10.1111/gcb.12058',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '3',
    'key': '5_CR81',
    'doi-asserted-by': 'publisher',
    'first-page': '1133',
    'DOI': '10.1002/jgrg.20089',
    'volume': '118',
    'author': 'CE Hicks Pries',
    'year': '2013',
    'unstructured': 'Hicks Pries CE, Schuur E, Vogel JG, Natali SM (2013b) Moisture drives surface decomposition in thawing tundra. J Geophys Res Biogeo 118(3):1133–1143',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '12',
    'key': '5_CR82',
    'doi-asserted-by': 'publisher',
    'first-page': '4508',
    'DOI': '10.1111/gcb.13032',
    'volume': '21',
    'author': 'CE Hicks Pries',
    'year': '2015',
    'unstructured': 'Hicks Pries CE, van Logtestijn RS, Schuur EA, Natali SM, Cornelissen JH, Aerts R, Dorrepaal E (2015) Decadal warming causes a consistent and persistent shift from heterotrophic to autotrophic respiration in contrasting permafrost ecosystems. Glob Chang Biol 21(12):4508–4519. \nhttps://doi.org/10.1111/gcb.13032',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '7563',
    'key': '5_CR83',
    'doi-asserted-by': 'publisher',
    'first-page': '84',
    'DOI': '10.1038/nature14653',
    'volume': '524',
    'author': 'RG Hilton',
    'year': '2015',
    'unstructured': 'Hilton RG, Galy V, Gaillardet J, Dellinger M, Bryant C, O’regan M, Gröcke DR, Coxall H, Bouchez J, Calmels D (2015) Erosion of organic carbon in the Arctic as a geological carbon dioxide sink. Nature 524(7563):84',
    'journal-title': 'Nature'},
   {'issue': '4',
    'key': '5_CR84',
    'doi-asserted-by': 'publisher',
    'first-page': '530',
    'DOI': '10.1657/1523-0430(2006)38[530:PDATFS]2.0.CO;2',
    'volume': '38',
    'author': 'KM Hinkel',
    'year': '2006',
    'unstructured': 'Hinkel KM, Hurd JK Jr (2006) Permafrost destabilization and thermokarst following snow fence installation, Barrow, Alaska, USA. Arct Antarct Alp Res 38(4):530–539',
    'journal-title': 'Arct Antarct Alp Res'},
   {'issue': '3',
    'key': '5_CR85',
    'doi-asserted-by': 'publisher',
    'first-page': '291',
    'DOI': '10.1657/1523-0430(2003)035[0291:SEAACS]2.0.CO;2',
    'volume': '35',
    'author': 'KM Hinkel',
    'year': '2003',
    'unstructured': 'Hinkel KM, Eisner WR, Bockheim JG, Nelson FE, Peterson KM, Dai X (2003) Spatial extent, age, and carbon stocks in drained thaw lake basins on the Barrow Peninsula, Alaska. Arct Antarct Alp Res 35(3):291–300',
    'journal-title': 'Arct Antarct Alp Res'},
   {'issue': '3',
    'key': '5_CR86',
    'doi-asserted-by': 'publisher',
    'first-page': '251',
    'DOI': '10.1007/s10584-005-5352-2',
    'volume': '72',
    'author': 'LD Hinzman',
    'year': '2005',
    'unstructured': 'Hinzman LD, Bettez ND, Bolton WR, Chapin FS, Dyurgerov MB, Fastie CL, Griffith B, Hollister RD, Hope A, Huntington HP (2005) Evidence and implications of recent climate change in northern Alaska and other arctic regions. Clim Chang 72(3):251–298',
    'journal-title': 'Clim Chang'},
   {'issue': '8',
    'key': '5_CR87',
    'doi-asserted-by': 'publisher',
    'first-page': '1837',
    'DOI': '10.1890/11-1498.1',
    'volume': '23',
    'author': 'LD Hinzman',
    'year': '2013',
    'unstructured': 'Hinzman LD, Deal CJ, McGuire AD, Mernild SH, Polyakov IV, Walsh JE (2013) Trajectory of the Arctic as an integrated system. Ecol Appl 23(8):1837–1868',
    'journal-title': 'Ecol Appl'},
   {'issue': '2',
    'key': '5_CR88',
    'doi-asserted-by': 'publisher',
    'first-page': '911',
    'DOI': '10.1111/j.1365-2486.2010.02256.x',
    'volume': '17',
    'author': 'J Hollesen',
    'year': '2011',
    'unstructured': 'Hollesen J, Elberling B, Jansson P-E (2011) Future active layer dynamics and carbon dioxide production from thawing permafrost layers in Northeast Greenland. Glob Chang Biol 17(2):911–926',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '3',
    'key': '5_CR89',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2007GL032837',
    'volume': '35',
    'author': 'R Holmes',
    'year': '2008',
    'unstructured': 'Holmes R, McClelland JW, Raymond PA, Frazer BB, Peterson BJ, Stieglitz M (2008) Lability of DOC transported by Alaskan rivers to the Arctic Ocean. Geophys Res Lett 35(3):L03402. \nhttps://doi.org/10.1029/2007GL032837',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '2',
    'key': '5_CR90',
    'doi-asserted-by': 'publisher',
    'first-page': '369',
    'DOI': '10.1007/s12237-011-9386-6',
    'volume': '35',
    'author': 'RM Holmes',
    'year': '2012',
    'unstructured': 'Holmes RM, McClelland JW, Peterson BJ, Tank SE, Bulygina E, Eglinton TI, Gordeev VV, Gurtovaya TY, Raymond PA, Repeta DJ (2012) Seasonal and annual fluxes of nutrients and organic matter from large rivers to the Arctic Ocean and surrounding seas. Estuar Coasts 35(2):369–382',
    'journal-title': 'Estuar Coasts'},
   {'key': '5_CR91',
    'year': '2012',
    'unstructured': 'Holmes RM, Coe MT, Fiske GJ, Gurtovaya T, McClelland JW, Shiklomanov AI, Spencer RG, Tank SE, Zhulidov AV (2013) Climate change impacts on the hydrology and biogeochemistry of Arctic rivers. In: Goldman, CR, Kumagai, M, Robarts, RD (eds) Climatic change and global warming of inland waters: impacts and mitigation for ecosystems and societies. Wiley, Somerset, pp 1–26. doi:\nhttps://doi.org/10.1002/9781118470596',
    'volume-title': 'Climatic Change and Global Warming of Inland Waters',
    'DOI': '10.1002/9781118470596',
    'doi-asserted-by': 'publisher'},
   {'key': '5_CR92',
    'unstructured': 'Holmes R, Shiklomanov, AI, Suslova, A, Tretiakov, M, McClelland, JW, Spencer, RGM, Tank, SE (2018) River discharge. Arctic report card 2018. NOAA. \nhttps://arctic.noaa.gov/Report-Card/Report-Card-2018'},
   {'key': '5_CR93',
    'unstructured': 'Hopkins D, Kidd J (1988) Thaw lake sediments and sedimentary environments. In: Proceedings of the 5th international permafrost conference, pp 790–795'},
   {'key': '5_CR308',
    'year': '2009',
    'unstructured': 'IPCC (2013) Climate change 2013: the physical science basis. Contribution of working group I to the fifth assessment report of the intergovernmental panel on climate change. Cambridge University Press. \nhttps://doi.org/10.1017/CBO9781107415324',
    'volume-title': 'Climate Change 2013 - The Physical Science Basis',
    'DOI': '10.1017/CBO9781107415324',
    'doi-asserted-by': 'publisher'},
   {'issue': '1',
    'key': '5_CR94',
    'doi-asserted-by': 'publisher',
    'first-page': '30',
    'DOI': '10.1002/ppp.662',
    'volume': '21',
    'author': 'Y Iijima',
    'year': '2010',
    'unstructured': 'Iijima Y, Fedorov AN, Park H, Suzuki K, Yabuki H, Maximov TC, Ohata T (2010) Abrupt increases in soil temperatures following increased precipitation in a permafrost region, Central Lena River basin, Russia. Permafr Periglac Process 21(1):30–41. \nhttps://doi.org/10.1002/ppp.662',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '2',
    'key': '5_CR95',
    'doi-asserted-by': 'publisher',
    'first-page': '177',
    'DOI': '10.1002/eco.1366',
    'volume': '7',
    'author': 'Y Iijima',
    'year': '2014',
    'unstructured': 'Iijima Y, Ohta T, Kotani A, Fedorov AN, Kodama Y, Maximov TC (2014) Sap flow changes in relation to permafrost degradation under increasing precipitation in an eastern Siberian larch forest. Ecohydrology 7(2):177–187',
    'journal-title': 'Ecohydrology'},
   {'issue': '13',
    'key': '5_CR96',
    'doi-asserted-by': 'publisher',
    'first-page': '4265',
    'DOI': '10.1002/joc.4629',
    'volume': '36',
    'author': 'Y Iijima',
    'year': '2016',
    'unstructured': 'Iijima Y, Nakamura T, Park H, Tachibana Y, Fedorov AN (2016) Enhancement of Arctic storm activity in relation to permafrost degradation in eastern Siberia. Int J Climatol 36(13):4265–4275',
    'journal-title': 'Int J Climatol'},
   {'issue': 'G2',
    'key': '5_CR305',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2005JG000039',
    'volume': '110',
    'author': 'Go Iwahana',
    'year': '2005',
    'unstructured': 'Iwahana G, Machimura T, Kobayashi Y, Fedorov AN, Konstantinov PY, Fukuda M (2005) Influence of forest clear-cutting on the thermal and hydrological regime of the active layer near Yakutsk, eastern Siberia. J Geophys Res Biogeo 110(G2):G02004. \nhttps://doi.org/10.1029/2005JG000039',
    'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
   {'issue': '2',
    'key': '5_CR97',
    'doi-asserted-by': 'publisher',
    'first-page': '96',
    'DOI': '10.1016/j.polar.2014.01.005',
    'volume': '8',
    'author': 'G Iwahana',
    'year': '2014',
    'unstructured': 'Iwahana G, Takano S, Petrov RE, Tei S, Shingubara R, Maximov TC, Fedorov AN, Desyatkin AR, Nikolaev AN, Desyatkin RV (2014) Geocryological characteristics of the upper permafrost in a tundra-forest transition of the Indigirka River Valley, Russia. Pol Sci 8(2):96–113',
    'journal-title': 'Pol Sci'},
   {'issue': '150',
    'key': '5_CR98',
    'doi-asserted-by': 'publisher',
    'first-page': '315',
    'DOI': '10.1017/S0022143000001817',
    'volume': '45',
    'author': 'MO Jeffries',
    'year': '1999',
    'unstructured': 'Jeffries MO, Zhang T, Frey K, Kozlenko N (1999) Estimating late-winter heat flow to the atmosphere from the lake-dominated Alaskan North Slope. J Glaciol 45(150):315–324',
    'journal-title': 'J Glaciol'},
   {'issue': '5',
    'key': '5_CR99',
    'doi-asserted-by': 'publisher',
    'first-page': '882',
    'DOI': '10.1002/grl.50187',
    'volume': '40',
    'author': 'SM Jepsen',
    'year': '2013',
    'unstructured': 'Jepsen SM, Voss CI, Walvoord MA, Minsley BJ, Rover J (2013) Linkages between lake shrinkage/expansion and sublacustrine permafrost distribution determined from remote sensing of interior Alaska, USA. Geophys Res Lett 40(5):882–887',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '3',
    'key': '5_CR100',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/8/3/035025',
    'volume': '8',
    'author': 'M Johansson',
    'year': '2013',
    'unstructured': 'Johansson M, Callaghan TV, Bosiö J, Åkerman HJ, Jackowicz-Korczynski M, Christensen TR (2013) Rapid responses of permafrost and vegetation to experimentally increased snow cover in sub-arctic Sweden. Environ Res Lett 8(3):035025. \nhttps://doi.org/10.1088/1748-9326/8/3/035025',
    'journal-title': 'Environ Res Lett'},
   {'issue': '2',
    'key': '5_CR101',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2004GL021734',
    'volume': '32',
    'author': 'J Jones Jr',
    'year': '2005',
    'unstructured': 'Jones J Jr, Petrone KC, Finlay JC, Hinzman LD, Bolton WR (2005) Nitrogen loss from watersheds of interior Alaska underlain with discontinuous permafrost. Geophys Res Lett 32(2):L02401. \nhttps://doi.org/10.1029/2004GL021734',
    'journal-title': 'Geophys Res Lett'},
   {'key': '5_CR102',
    'unstructured': 'Jones BM, Grosse G, Arp C, Jones M, Walter Anthony K, Romanovsky V (2011) Modern thermokarst lake dynamics in the continuous permafrost zone, northern Seward peninsula, Alaska. J Geophys Res Biogeosci 116(G2):G00M03. \nhttps://doi.org/10.1029/2011JG001666',
    'DOI': '10.1029/2011JG001666',
    'doi-asserted-by': 'publisher'},
   {'issue': 'G2',
    'key': '5_CR103',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2011JG001766',
    'volume': '117',
    'author': 'Miriam C. Jones',
    'year': '2012',
    'unstructured': 'Jones MC, Grosse G, Jones BM, Walter Anthony K (2012) Peat accumulation in drained thermokarst lake basins in continuous, ice-rich permafrost, northern Seward Peninsula, Alaska. J Geophys Res Biogeo 117(G2)',
    'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
   {'key': '5_CR104',
    'unstructured': 'Jorgenson MT, Shur Y (2007) Evolution of lakes and basins in northern Alaska and discussion of the thaw lake cycle. J Geophys Res Earth Surf 112(F2):F02S17. \nhttps://doi.org/10.1029/2006JF000531',
    'DOI': '10.1029/2006JF000531',
    'doi-asserted-by': 'publisher'},
   {'issue': '4',
    'key': '5_CR105',
    'doi-asserted-by': 'publisher',
    'first-page': '551',
    'DOI': '10.1023/A:1005667424292',
    'volume': '48',
    'author': 'MT Jorgenson',
    'year': '2001',
    'unstructured': 'Jorgenson MT, Racine CH, Walters JC, Osterkamp TE (2001) Permafrost degradation and ecological changes associated with a warmingclimate in Central Alaska. Clim Chang 48(4):551–579',
    'journal-title': 'Clim Chang'},
   {'issue': '2',
    'key': '5_CR106',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2005gl024960',
    'volume': '33',
    'author': 'MT Jorgenson',
    'year': '2006',
    'unstructured': 'Jorgenson MT, Shur YL, Pullman ER (2006) Abrupt increase in permafrost degradation in Arctic Alaska. Geophys Res Lett 33(2):L02503. \nhttps://doi.org/10.1029/2005gl024960',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '7',
    'key': '5_CR107',
    'doi-asserted-by': 'publisher',
    'first-page': '1219',
    'DOI': '10.1139/X10-060',
    'volume': '40',
    'author': 'MT Jorgenson',
    'year': '2010',
    'unstructured': 'Jorgenson MT, Romanovsky V, Harden J, Shur Y, O’Donnell J, Schuur EA, Kanevskiy M, Marchenko S (2010) Resilience and vulnerability of permafrost to climate change. Can J For Res 40(7):1219–1236',
    'journal-title': 'Can J For Res'},
   {'issue': '3',
    'key': '5_CR108',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/8/3/035017',
    'volume': '8',
    'author': 'MT Jorgenson',
    'year': '2013',
    'unstructured': 'Jorgenson MT, Harden J, Kanevskiy M, O’Donnell J, Wickland K, Ewing S, Manies K, Zhuang Q, Shur Y, Striegl R (2013) Reorganization of vegetation, hydrology and soil carbon after permafrost degradation across heterogeneous boreal landscapes. Environ Res Lett 8(3):035017',
    'journal-title': 'Environ Res Lett'},
   {'key': '5_CR109',
    'doi-asserted-by': 'publisher',
    'first-page': '2280',
    'DOI': '10.1002/2015JF003602',
    'volume': '120',
    'author': 'NT Jorgenson',
    'year': '2015',
    'unstructured': 'Jorgenson NT, Kanevsky M, Shur Y, Moskalenko N, Brown DRN, Wickland K, Striegl R, Koch J (2015) Role of ground ice dynamics and ecological feedbacks in recent ice wedge degradation and stabilization. J Geophys Res Earth Surf 120:2280–2297. \nhttps://doi.org/10.1002/2015JF003602',
    'journal-title': 'J Geophys Res Earth Surf'},
   {'issue': '1',
    'key': '5_CR110',
    'doi-asserted-by': 'publisher',
    'first-page': '621',
    'DOI': '10.3390/rs6010621',
    'volume': '6',
    'author': 'J Karlsson',
    'year': '2014',
    'unstructured': 'Karlsson J, Lyon S, Destouni G (2014) Temporal behavior of Lake size-distribution in a thawing permafrost landscape in Northwestern Siberia. Remote Sens 6(1):621–636. \nhttps://doi.org/10.3390/rs6010621',
    'journal-title': 'Remote Sens'},
   {'issue': '4',
    'key': '5_CR111',
    'doi-asserted-by': 'publisher',
    'first-page': '561',
    'DOI': '10.1657/1523-0430(2006)38[561:TFAVDI]2.0.CO;2',
    'volume': '38',
    'author': 'F Katamura',
    'year': '2006',
    'unstructured': 'Katamura F, Fukuda M, Bosikov NP, Desyatkin RV, Nakamura T, Moriizumi J (2006) Thermokarst formation and vegetation dynamics inferred from a palynological study in Central Yakutia, Eastern Siberia, Russia. Arct Antarct Alp Res 38(4):561–570',
    'journal-title': 'Arct Antarct Alp Res'},
   {'issue': '3',
    'key': '5_CR112',
    'doi-asserted-by': 'publisher',
    'first-page': '571',
    'DOI': '10.1175/JHM575.1',
    'volume': '8',
    'author': 'VM Kattsov',
    'year': '2007',
    'unstructured': 'Kattsov VM, Walsh JE, Chapman WL, Govorkova VA, Pavlova TV, Zhang X (2007) Simulation and projection of Arctic freshwater budget components by the IPCC AR4 global climate models. J Hydrometeorol 8(3):571–589',
    'journal-title': 'J Hydrometeorol'},
   {'issue': 'G2',
    'key': '5_CR113',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2011JG001796',
    'volume': '117',
    'author': 'M. A. Kessler',
    'year': '2012',
    'unstructured': 'Kessler M, Plug LJ, Walter Anthony K (2012) Simulating the decadal-to millennial-scale dynamics of morphology and sequestered carbon mobilization of two thermokarst lakes in NW Alaska. J Geophys Res Biogeosci 117(G2):G00M06. \nhttps://doi.org/10.1029/2011JG001796',
    'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
   {'issue': '6',
    'key': '5_CR114',
    'doi-asserted-by': 'publisher',
    'first-page': '1998',
    'DOI': '10.1111/j.1365-2486.2012.02663.x',
    'volume': '18',
    'author': 'F Keuper',
    'year': '2012',
    'unstructured': 'Keuper F, Van Bodegom PM, Dorrepaal E, Weedon JT, Van Hal J, Van Logtestijn RS, Aerts R (2012a) A frozen feast: thawing permafrost increases plant-available nitrogen in subarctic peatlands. Glob Chang Biol 18(6):1998–2007',
    'journal-title': 'Glob Chang Biol'},
   {'issue': 'Suppl 3',
    'key': '5_CR115',
    'doi-asserted-by': 'publisher',
    'first-page': '269',
    'DOI': '10.1007/s13280-012-0305-2',
    'volume': '41',
    'author': 'F Keuper',
    'year': '2012',
    'unstructured': 'Keuper F, Parmentier FJ, Blok D, van Bodegom PM, Dorrepaal E, van Hal JR, van Logtestijn RS, Aerts R (2012b) Tundra in the rain: differential vegetation responses to three years of experimentally doubled summer precipitation in Siberian shrub and Swedish bog tundra. Ambio 41(Suppl 3):269–280. \nhttps://doi.org/10.1007/s13280-012-0305-2',
    'journal-title': 'Ambio'},
   {'issue': '2',
    'key': '5_CR116',
    'doi-asserted-by': 'publisher',
    'first-page': '345',
    'DOI': '10.1007/s10584-013-0705-8',
    'volume': '119',
    'author': 'VV Kharin',
    'year': '2013',
    'unstructured': 'Kharin VV, Zwiers F, Zhang X, Wehner M (2013) Changes in temperature and precipitation extremes in the CMIP5 ensemble. Clim Chang 119(2):345–357',
    'journal-title': 'Clim Chang'},
   {'issue': '2',
    'key': '5_CR117',
    'doi-asserted-by': 'publisher',
    'first-page': '250',
    'DOI': '10.1111/j.1600-0889.2007.00333.x',
    'volume': '60',
    'author': 'D Khvorostyanov',
    'year': '2008',
    'unstructured': 'Khvorostyanov D, Krinner G, Ciais P, Heimann M, Zimov S (2008a) Vulnerability of permafrost carbon to global warming. Part I: model description and role of heat generated by organic matter decomposition. Tellus B: Chem Phys Meteorol 60(2):250–264',
    'journal-title': 'Tellus B: Chem Phys Meteorol'},
   {'issue': '2',
    'key': '5_CR118',
    'doi-asserted-by': 'publisher',
    'first-page': '265',
    'DOI': '10.1111/j.1600-0889.2007.00336.x',
    'volume': '60',
    'author': 'D Khvorostyanov',
    'year': '2008',
    'unstructured': 'Khvorostyanov D, Ciais P, Krinner G, Zimov S, Corradi C, Guggenberger G (2008b) Vulnerability of permafrost carbon to global warming. Part II: sensitivity of permafrost carbon stock to global warming. Tellus B Chem Phys Meteorol 60(2):265–275',
    'journal-title': 'Tellus B Chem Phys Meteorol'},
   {'issue': '4',
    'key': '5_CR119',
    'doi-asserted-by': 'publisher',
    'first-page': '423',
    'DOI': '10.1080/00207230902758287',
    'volume': '66',
    'author': 'SN Kirpotin',
    'year': '2009',
    'unstructured': 'Kirpotin SN, Polishchuk Y, Bryksina N (2009) Abrupt changes of thermokarst lakes in Western Siberia: impacts of climatic warming on permafrost melting. Int J Environ Stud 66(4):423–431. \nhttps://doi.org/10.1080/00207230902758287',
    'journal-title': 'Int J Environ Stud'},
   {'issue': '5',
    'key': '5_CR120',
    'doi-asserted-by': 'publisher',
    'first-page': '603',
    'DOI': '10.1080/00207233.2011.593901',
    'volume': '68',
    'author': 'S Kirpotin',
    'year': '2011',
    'unstructured': 'Kirpotin S, Polishchuk Y, Bryksina N, Sugaipova A, Kouraev A, Zakharova E, Pokrovsky OS, Shirokova L, Kolmakova M, Manassypov R, Dupre B (2011) West Siberian palsa peatlands: distribution, typology, cyclic development, present day climate-driven changes, seasonal hydrology and impact on CO2 cycle. Int J Environ Stud 68(5):603–623. \nhttps://doi.org/10.1080/00207233.2011.593901',
    'journal-title': 'Int J Environ Stud'},
   {'key': '5_CR121',
    'doi-asserted-by': 'publisher',
    'first-page': '1704',
    'DOI': '10.1002/2017GB005774',
    'volume': '31',
    'author': 'F Kittler',
    'year': '2017',
    'unstructured': 'Kittler F, Heimann M, Kolle O, Zimov N, Zimov S, Göckede M (2017) Long-term drainage reduces CO2 uptake and CH4 emissions in a Siberian permafrost ecosystem. Glob Biogeochem Cycles 31:1704–1717. \nhttps://doi.org/10.1002/2017GB005774',
    'journal-title': 'Glob Biogeochem Cycles'},
   {'issue': '4',
    'key': '5_CR122',
    'doi-asserted-by': 'publisher',
    'first-page': '1160',
    'DOI': '10.1111/gcb.12116',
    'volume': '19',
    'author': 'C Knoblauch',
    'year': '2013',
    'unstructured': 'Knoblauch C, Beer C, Sosnin A, Wagner D, Pfeiffer EM (2013) Predicting long-term carbon mineralization and trace gas production from thawing permafrost of Northeast Siberia. Glob Chang Biol 19(4):1160–1172',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '4',
    'key': '5_CR123',
    'doi-asserted-by': 'publisher',
    'first-page': '309',
    'DOI': '10.1038/s41558-018-0095-z',
    'volume': '8',
    'author': 'C Knoblauch',
    'year': '2018',
    'unstructured': 'Knoblauch C, Beer C, Liebner S, Grigoriev MN, Pfeiffer E-M (2018) Methane production as key to the greenhouse gas budget of thawing permafrost. Nat Clim Chang 8(4):309',
    'journal-title': 'Nat Clim Chang'},
   {'issue': '2',
    'key': '5_CR124',
    'doi-asserted-by': 'publisher',
    'first-page': '79',
    'DOI': '10.1002/ppp.1804',
    'volume': '25',
    'author': 'JC Koch',
    'year': '2014',
    'unstructured': 'Koch JC, Gurney K, Wipfli MS (2014) Morphology-dependent water budgets and nutrient fluxes in arctic thaw ponds. Permafr Periglac Process 25(2):79–93',
    'journal-title': 'Permafr Periglac Process'},
   {'key': '5_CR125',
    'doi-asserted-by': 'publisher',
    'first-page': '2604',
    'DOI': '10.1029/2018JG004528',
    'volume': '123',
    'author': 'J Koch',
    'year': '2018',
    'unstructured': 'Koch J, Jorgenson M, Wickland K, Kanevskiy M, Striegl R (2018) Ice wedge degradation and stabilization impacts water budgets and nutrient cycling in arctic trough ponds. J Geophys Res Biogeo 123:2604–2616. \nhttps://doi.org/10.1029/2018JG004528',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '4',
    'key': '5_CR126',
    'doi-asserted-by': 'publisher',
    'first-page': '343',
    'DOI': '10.1002/ppp.536',
    'volume': '16',
    'author': 'S Kokelj',
    'year': '2005',
    'unstructured': 'Kokelj S, Jenkins R, Milburn D, Burn C, Snow N (2005) The influence of thermokarst disturbance on the water quality of small upland lakes, Mackenzie Delta region, Northwest Territories, Canada. Permafr Periglac Process 16(4):343–353',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '2',
    'key': '5_CR127',
    'doi-asserted-by': 'publisher',
    'first-page': '173',
    'DOI': '10.1002/ppp.642',
    'volume': '20',
    'author': 'SV Kokelj',
    'year': '2009',
    'unstructured': 'Kokelj SV, Lantz TC, Kanigan J, Smith S, Coutts R (2009) Origin and polycyclic behaviour of tundra thaw slumps, Mackenzie Delta region, Northwest Territories, Canada. Permafr Periglac Process 20(2):173–184',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '4',
    'key': '5_CR128',
    'doi-asserted-by': 'publisher',
    'first-page': '371',
    'DOI': '10.1130/G38626.1',
    'volume': '45',
    'author': 'SV Kokelj',
    'year': '2017',
    'unstructured': 'Kokelj SV, Lantz TC, Tunnicliffe J, Segal R, Lacelle D (2017) Climate-driven thaw of permafrost preserved glacial landscapes, northwestern Canada. Geology 45(4):371–374',
    'journal-title': 'Geology'},
   {'key': '5_CR129',
    'first-page': '16',
    'volume': '13',
    'author': 'V Kravtsova',
    'year': '2009',
    'unstructured': 'Kravtsova V, Bystrova A (2009) Changes in thermokarst lake sizes in different regions of Russia for the last 30 years (Изменение размеров термокарстовых озер в различных районах россии за последние 30 лет). Kriosfera Zemli (Earth Cryosphere) 13:16–26',
    'journal-title': 'Kriosfera Zemli (Earth Cryosphere)'},
   {'issue': '2',
    'key': '5_CR130',
    'doi-asserted-by': 'publisher',
    'first-page': '1286',
    'DOI': '10.1002/2015WR018057',
    'volume': '52',
    'author': 'BL Kurylyk',
    'year': '2016',
    'unstructured': 'Kurylyk BL, Hayashi M, Quinton WL, McKenzie JM, Voss CI (2016) Influence of vertical and lateral heat transfer on permafrost thaw, peatland landscape transition, and groundwater flow. Water Resour Res 52(2):1286–1305',
    'journal-title': 'Water Resour Res'},
   {'issue': '14',
    'key': '5_CR131',
    'doi-asserted-by': 'publisher',
    'first-page': '4219',
    'DOI': '10.5194/bg-13-4219-2016',
    'volume': '13',
    'author': 'MJ Kwon',
    'year': '2016',
    'unstructured': 'Kwon MJ, Heimann M, Kolle O, Luus KA, Schuur EAG, Zimov N, Zimov SA, Göckede M (2016) Long-term drainage reduces CO2 uptake and increases CO2 emission on a Siberian floodplain due to shifts in vegetation community and soil thermal characteristics. Biogeosciences 13(14):4219–4235. \nhttps://doi.org/10.5194/bg-13-4219-2016',
    'journal-title': 'Biogeosciences'},
   {'issue': '6',
    'key': '5_CR132',
    'doi-asserted-by': 'publisher',
    'first-page': '2396',
    'DOI': '10.1111/gcb.13558',
    'volume': '23',
    'author': 'MJ Kwon',
    'year': '2017',
    'unstructured': 'Kwon MJ, Beulig F, Ilie I, Wildner M, Kusel K, Merbold L, Mahecha MD, Zimov N, Zimov SA, Heimann M, Schuur EAG, Kostka JE, Kolle O, Hilke I, Gockede M (2017) Plants, microorganisms, and soil temperatures contribute to a decrease in methane fluxes on a drained Arctic floodplain. Glob Chang Biol 23(6):2396–2412. \nhttps://doi.org/10.1111/gcb.13558',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '2',
    'key': '5_CR133',
    'doi-asserted-by': 'publisher',
    'first-page': '225',
    'DOI': '10.14430/arctic134',
    'volume': '62',
    'author': 'S Labrecque',
    'year': '2009',
    'unstructured': 'Labrecque S, Lacelle D, Duguay CR, Lauriol B, Hawkings J (2009) Contemporary (1951–2001) evolution of lakes in the Old Crow Basin, Northern Yukon, Canada: Remote sensing, numerical modeling, and stable isotope analysis. Arctic 62(2):225–238',
    'journal-title': 'Arctic'},
   {'issue': '1',
    'key': '5_CR134',
    'doi-asserted-by': 'publisher',
    'first-page': '1',
    'DOI': '10.1002/ppp.666',
    'volume': '21',
    'author': 'D Lacelle',
    'year': '2010',
    'unstructured': 'Lacelle D, Bjornson J, Lauriol B (2010) Climatic and geomorphic factors affecting contemporary (1950–2004) activity of retrogressive thaw slumps on the Aklavik Plateau, Richardson Mountains, NWT, Canada. Permafr Periglac Process 21(1):1–15',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '4',
    'key': '5_CR135',
    'doi-asserted-by': 'publisher',
    'first-page': '045002',
    'DOI': '10.1088/1748-9326/9/4/045002',
    'volume': '9',
    'author': 'Scott F Lamoureux',
    'year': '2014',
    'unstructured': 'Lamoureux SF Lafrenière MJ (2014) Seasonal fluxes and age of particulate organic carbon exported from Arctic catchments impacted by localized permafrost slope disturbances. Environ Res Lett 9(5):045002. \nhttps://doi.org/10.1088/1748-9326/9/4/045002',
    'journal-title': 'Environmental Research Letters'},
   {'issue': '1',
    'key': '5_CR136',
    'doi-asserted-by': 'publisher',
    'first-page': '151',
    'DOI': '10.5194/tc-5-151-2011',
    'volume': '5',
    'author': 'M Langer',
    'year': '2011',
    'unstructured': 'Langer M, Westermann S, Muster S, Piel K, Boike J (2011) The surface energy balance of a polygonal tundra site in northern Siberia-part 1: Spring to fall. Cryosphere 5(1):151',
    'journal-title': 'Cryosphere'},
   {'issue': '4',
    'key': '5_CR137',
    'doi-asserted-by': 'publisher',
    'first-page': '977',
    'DOI': '10.5194/bg-12-977-2015',
    'volume': '12',
    'author': 'M Langer',
    'year': '2015',
    'unstructured': 'Langer M, Westermann S, Walter Anthony K, Wischnewski K, Boike J (2015) Frozen ponds: production and storage of methane during the Arctic winter in a lowland tundra landscape in northern Siberia, Lena River delta. Biogeosciences 12(4):977–990. \nhttps://doi.org/10.5194/bg-12-977-2015',
    'journal-title': 'Biogeosciences'},
   {'issue': '1–2',
    'key': '5_CR138',
    'doi-asserted-by': 'publisher',
    'first-page': '84',
    'DOI': '10.1016/j.geomorph.2006.07.040',
    'volume': '95',
    'author': 'H Lantuit',
    'year': '2008',
    'unstructured': 'Lantuit H, Pollard W (2008) Fifty years of coastal erosion and retrogressive thaw slump activity on Herschel Island, southern Beaufort Sea, Yukon territory, Canada. Geomorphology 95(1–2):84–102',
    'journal-title': 'Geomorphology'},
   {'issue': '6',
    'key': '5_CR139',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2007GL032433',
    'volume': '35',
    'author': 'TC Lantz',
    'year': '2008',
    'unstructured': 'Lantz TC, Kokelj SV (2008) Increasing rates of retrogressive thaw slump activity in the Mackenzie Delta region, NWT, Canada. Geophys Res Lett 35(6):L06502. \nhttps://doi.org/10.1029/2007GL032433',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '4',
    'key': '5_CR140',
    'doi-asserted-by': 'publisher',
    'first-page': '1634',
    'DOI': '10.1111/gcb.12757',
    'volume': '21',
    'author': 'MJ Lara',
    'year': '2015',
    'unstructured': 'Lara MJ, McGuire AD, Euskirchen ES, Tweedie CE, Hinkel KM, Skurikhin AN, Romanovsky VE, Grosse G, Bolton WR, Genet H (2015) Polygonal tundra geomorphological change in response to warming alters future CO2 and CH4 flux on the Barrow Peninsula. Glob Chang Biol 21(4):1634–1651. \nhttps://doi.org/10.1111/gcb.12757',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '1',
    'key': '5_CR141',
    'doi-asserted-by': 'publisher',
    'first-page': '115',
    'DOI': '10.4319/lo.2010.55.1.0115',
    'volume': '55',
    'author': 'I Laurion',
    'year': '2010',
    'unstructured': 'Laurion I, Vincent WF, MacIntyre S, Retamal L, Dupont C, Francus P, Pienitz R (2010) Variability in greenhouse gas emissions from permafrost thaw ponds. Limnol Oceanogr 55(1):115–133',
    'journal-title': 'Limnol Oceanogr'},
   {'key': '5_CR142',
    'unstructured': 'Lawrence DM, Slater AG, Tomas RA, Holland MM, Deser C (2008) Accelerated Arctic land warming and permafrost degradation during rapid sea ice loss. Geophys Res Lett 35(11):L11506. \nhttps://doi.org/10.1029/2008GL033985',
    'DOI': '10.1029/2008GL033985',
    'doi-asserted-by': 'publisher'},
   {'key': '5_CR143',
    'author': 'M Leibman',
    'first-page': '651',
    'year': '2003',
    'unstructured': 'Leibman M, Kizakov A, Sulerzhitsky L, Zaretskaia N (2003) Dynamics of landslide slopes and their development on Yamal Peninsula. In: Permafrost (ed) Proceedings of the 8th international conference on permafrost. Swets and Zeitlinger, Lisse, pp 651–656',
    'volume-title': 'Proceedings of the 8th international conference on permafrost'},
   {'key': '5_CR144',
    'author': 'Marina Leibman',
    'first-page': '143',
    'year': '2013',
    'unstructured': 'Leibman M, Khomutov A, Kizyakov A (2014) Cryogenic landslides in the West-Siberian plain of Russia: classification, mechanisms, and landforms. In: Landslides in cold regions in the context of climate change. Springer, Cham, pp 143–162',
    'volume-title': 'Landslides in Cold Regions in the Context of Climate Change'},
   {'issue': '4',
    'key': '5_CR145',
    'doi-asserted-by': 'publisher',
    'first-page': '584',
    'DOI': '10.1111/bor.12186',
    'volume': '45',
    'author': 'J Lenz',
    'year': '2016',
    'unstructured': 'Lenz J, Wetterich S, Jones BM, Meyer H, Bobrov A, Grosse G (2016) Evidence of multiple thermokarst lake generations from an 11 800-year-old permafrost core on the northern S eward Peninsula, Alaska. Boreas 45(4):584–603',
    'journal-title': 'Boreas'},
   {'issue': '12',
    'key': '5_CR146',
    'doi-asserted-by': 'publisher',
    'first-page': '8234',
    'DOI': '10.1002/2012WR013198',
    'volume': '49',
    'author': 'LF Lesack',
    'year': '2013',
    'unstructured': 'Lesack LF, Marsh P, Hicks FE, Forbes DL (2013) Timing, duration, and magnitude of peak annual water-levels during ice breakup in the Mackenzie Delta and the role of river discharge. Water Resour Res 49(12):8234–8249',
    'journal-title': 'Water Resour Res'},
   {'issue': '5',
    'key': '5_CR147',
    'doi-asserted-by': 'publisher',
    'first-page': '1560',
    'DOI': '10.1002/2013GL058761',
    'volume': '41',
    'author': 'LF Lesack',
    'year': '2014',
    'unstructured': 'Lesack LF, Marsh P, Hicks FE, Forbes DL (2014) Local spring warming drives earlier river-ice breakup in a large Arctic delta. Geophys Res Lett 41(5):1560–1567',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '6',
    'key': '5_CR148',
    'doi-asserted-by': 'publisher',
    'first-page': '1077',
    'DOI': '10.1139/e87-105',
    'volume': '24',
    'author': 'AG Lewkowicz',
    'year': '1987',
    'unstructured': 'Lewkowicz AG (1987) Headwall retreat of ground-ice slumps, Banks Island, Northwest Territories. Can J Earth Sci 24(6):1077–1085',
    'journal-title': 'Can J Earth Sci'},
   {'issue': '1',
    'key': '5_CR149',
    'doi-asserted-by': 'publisher',
    'first-page': '115',
    'DOI': '10.1002/ppp.522',
    'volume': '16',
    'author': 'AG Lewkowicz',
    'year': '2005',
    'unstructured': 'Lewkowicz AG, Harris C (2005) Frequency and magnitude of active-layer detachment failures in discontinuous and continuous permafrost, northern Canada. Permafr Periglac Process 16(1):115–130',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '1',
    'key': '5_CR150',
    'doi-asserted-by': 'publisher',
    'first-page': '1329',
    'DOI': '10.1038/s41467-019-09314-7',
    'volume': '10',
    'author': 'AG Lewkowicz',
    'year': '2019',
    'unstructured': 'Lewkowicz AG, Way RG (2019) Extremes of summer climate trigger thousands of thermokarst landslides in a High Arctic environment. Nat Commun 10(1):1329. \nhttps://doi.org/10.1038/s41467-019-09314-7',
    'journal-title': 'Nat Commun'},
   {'issue': '1–2',
    'key': '5_CR151',
    'first-page': '147',
    'volume': '420',
    'author': 'B Li',
    'year': '2017',
    'unstructured': 'Li B, Heijmans MM, Blok D, Wang P, Karsanaev SV, Maximov TC, van Huissteden J, Berendse F (2017a) Thaw pond development and initial vegetation succession in experimental plots at a Siberian lowland tundra site. Plant Soil 420(1–2):147–162',
    'journal-title': 'Plant Soil'},
   {'key': '5_CR152',
    'unstructured': 'Li B, Heijmans, MMPD, Limpens J, Gallagher A, Van Huissteden J, Maximov TC, Berendse F (2017b) Peat moss carpet reduces methane emission and facilitates shrub expansion in Siberian Arctic tundra. In: A clash of plants. Vegetation succession and its interaction with permafrost dynamics in the Arctic lowland tundra. Thesis, Wageningen University, Wageningen, pp 26–42'},
   {'issue': '4',
    'key': '5_CR153',
    'doi-asserted-by': 'publisher',
    'first-page': '914',
    'DOI': '10.1111/j.1365-2745.2011.01823.x',
    'volume': '99',
    'author': 'S Liebner',
    'year': '2011',
    'unstructured': 'Liebner S, Zeyer J, Wagner D, Schubert C, Pfeiffer EM, Knoblauch C (2011) Methane oxidation associated with submerged brown mosses reduces methane emissions from Siberian polygonal tundra. J Ecol 99(4):914–922',
    'journal-title': 'J Ecol'},
   {'issue': '11',
    'key': '5_CR154',
    'doi-asserted-by': 'publisher',
    'first-page': '3375',
    'DOI': '10.5194/bg-8-3375-2011',
    'volume': '8',
    'author': 'A Liljedahl',
    'year': '2011',
    'unstructured': 'Liljedahl A, Hinzman L, Harazono Y, Zona D, Tweedie C, Hollister RD, Engstrom R, Oechel W (2011) Nonlinear controls on evapotranspiration in arctic coastal wetlands. Biogeosciences 8(11):3375–3389',
    'journal-title': 'Biogeosciences'},
   {'issue': '4',
    'key': '5_CR155',
    'doi-asserted-by': 'publisher',
    'first-page': '312',
    'DOI': '10.1038/ngeo2674',
    'volume': '9',
    'author': 'AK Liljedahl',
    'year': '2016',
    'unstructured': 'Liljedahl AK, Boike J, Daanen RP, Fedorov AN, Frost GV, Grosse G, Hinzman LD, Iijma Y, Jorgenson JC, Matveyeva N, Necsoiu M, Raynolds MK, Romanovsky VE, Schulla J, Tape KD, Walker DA, Wilson CJ, Yabuki H, Zona D (2016) Pan-Arctic ice-wedge degradation in warming permafrost and its influence on tundra hydrology. Nat Geosci 9(4):312–318. \nhttps://doi.org/10.1038/ngeo2674',
    'journal-title': 'Nat Geosci'},
   {'issue': '1',
    'key': '5_CR156',
    'doi-asserted-by': 'publisher',
    'first-page': '577',
    'DOI': '10.5194/bg-9-577-2012',
    'volume': '9',
    'author': 'DA Lipson',
    'year': '2012',
    'unstructured': 'Lipson DA, Zona D, Raab TK, Bozzolo F, Mauritz M, Oechel W (2012) Water-table height and microtopography control biogeochemical cycling in an Arctic coastal tundra ecosystem. Biogeosciences 9(1):577–591',
    'journal-title': 'Biogeosciences'},
   {'issue': 'F3',
    'key': '5_CR157',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2009JF001547',
    'volume': '115',
    'author': 'L Liu',
    'year': '2010',
    'unstructured': 'Liu L, Zhang T, Wahr J (2010) InSAR measurements of surface deformation over permafrost on the North slope of Alaska. J Geophys Res Earth 115(F3):F03023. \nhttps://doi.org/10.1029/2009JF001547',
    'journal-title': 'J Geophys Res Earth'},
   {'issue': 'F1',
    'key': '5_CR158',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2011JF002041',
    'volume': '117',
    'author': 'L Liu',
    'year': '2012',
    'unstructured': 'Liu L, Schaefer K, Zhang T, Wahr J (2012) Estimating 1992–2000 average active layer thickness on the Alaskan north slope from remotely sensed surface subsidence. J Geophys Res Earth 117(F1):F01005. \nhttps://doi.org/10.1029/2011JF002041',
    'journal-title': 'J Geophys Res Earth'},
   {'key': '5_CR159',
    'doi-asserted-by': 'publisher',
    'first-page': '5287',
    'DOI': '10.5194/bg-15-5287-2018',
    'volume': '15',
    'author': 'MM Loranty',
    'year': '2018',
    'unstructured': 'Loranty MM, Abbott BW, Blok D, Douglas TA, Epstein HE, Forbes BC, Jones BM, Kholodov AL, Kropp H, Malhotra A (2018) Reviews and syntheses: changing ecosystem influences on soil thermal regimes in northern high-latitude permafrost regions. Biogeosciences 15:5287–5313. \nhttps://doi.org/10.5194/bg-15-5287-2018',
    'journal-title': 'Biogeosciences'},
   {'issue': '6',
    'key': '5_CR160',
    'doi-asserted-by': 'publisher',
    'first-page': '589',
    'DOI': '10.1007/s13280-011-0165-1',
    'volume': '40',
    'author': 'VL Lougheed',
    'year': '2011',
    'unstructured': 'Lougheed VL, Butler MG, McEwen DC, Hobbie JE (2011) Changes in tundra pond limnology: re-sampling Alaskan ponds after 40 years. Ambio 40(6):589',
    'journal-title': 'Ambio'},
   {'issue': '1',
    'key': '5_CR161',
    'doi-asserted-by': 'publisher',
    'first-page': '5',
    'DOI': '10.1111/j.1365-2389.2010.01312.x',
    'volume': '62',
    'author': 'C Luke',
    'year': '2011',
    'unstructured': 'Luke C, Cox P (2011) Soil carbon and climate change: from the Jenkinson effect to the compost-bomb instability. Eur J Soil Sci 62(1):5–12',
    'journal-title': 'Eur J Soil Sci'},
   {'issue': 'G2',
    'key': '5_CR162',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2011JG001901',
    'volume': '117',
    'author': 'M Lund',
    'year': '2012',
    'unstructured': 'Lund M, Falk JM, Friborg T, Mbufong HN, Sigsgaard C, Soegaard H, Tamstorf MP (2012) Trends in CO2 exchange in a high Arctic tundra heath, 2000–2010. J Geophys Res Biogeo 117(G2):G02001. \nhttps://doi.org/10.1029/2011JG001901',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '1',
    'key': '5_CR163',
    'doi-asserted-by': 'publisher',
    'first-page': '51',
    'DOI': '10.1038/nclimate2058',
    'volume': '4',
    'author': 'M Lupascu',
    'year': '2014',
    'unstructured': 'Lupascu M, Welker J, Seibt U, Maseyk K, Xu X, Czimczik C (2014) High Arctic wetting reduces permafrost carbon feedbacks to climate warming. Nat Clim Chang 4(1):51',
    'journal-title': 'Nat Clim Chang'},
   {'key': '5_CR164',
    'doi-asserted-by': 'publisher',
    'first-page': '7856',
    'DOI': '10.1038/ncomms8856',
    'volume': '6',
    'author': 'P Mann',
    'year': '2015',
    'unstructured': 'Mann P, Eglinton TI, McIntyre CP, Zimov N, Davydova A, Vonk JE, Holmes RM, Spencer RG (2015) Utilization of ancient permafrost carbon in headwaters of Arctic fluvial networks. Nat Commun 6:7856. \nhttps://doi.org/10.1038/ncomms8856',
    'journal-title': 'Nat Commun'},
   {'key': '5_CR165',
    'doi-asserted-by': 'publisher',
    'first-page': '25',
    'DOI': '10.3389/feart.2016.00025',
    'volume': '4',
    'author': 'PJ Mann',
    'year': '2016',
    'unstructured': 'Mann PJ, Spencer RG, Hernes PJ, Six J, Aiken GR, Tank SE, McClelland JW, Butler KD, Dyda RY, Holmes RM (2016) Pan-arctic trends in terrestrial dissolved organic matter from optical measurements. Front Earth Sci 4:25',
    'journal-title': 'Front Earth Sci'},
   {'issue': '1',
    'key': '5_CR166',
    'doi-asserted-by': 'publisher',
    'first-page': '145',
    'DOI': '10.1002/hyp.7179',
    'volume': '23',
    'author': 'P Marsh',
    'year': '2009',
    'unstructured': 'Marsh P, Russell M, Pohl S, Haywood H, Onclin C (2009) Changes in thaw lake drainage in the Western Canadian Arctic from 1950 to 2000. Hydrol Proc Intl J 23(1):145–158',
    'journal-title': 'Hydrol Proc Intl J'},
   {'issue': '8',
    'key': '5_CR167',
    'doi-asserted-by': 'publisher',
    'first-page': '2601',
    'DOI': '10.1111/j.1365-2486.2011.02442.x',
    'volume': '17',
    'author': 'M Marushchak',
    'year': '2011',
    'unstructured': 'Marushchak M, Pitkämäki A, Koponen H, Biasi C, Seppälä M, Martikainen P (2011) Hot spots for nitrous oxide emissions found in different types of permafrost peatlands. Glob Chang Biol 17(8):2601–2614',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '1-2',
    'key': '5_CR307',
    'doi-asserted-by': 'publisher',
    'first-page': '107',
    'DOI': '10.1016/S0012-8252(01)00057-5',
    'volume': '55',
    'author': 'Norikazu Matsuoka',
    'year': '2001',
    'unstructured': 'Matsuoka N (2001) Solifluction rates, processes and landforms: a global review. Earth Sci Rev 55(1–2):107–134',
    'journal-title': 'Earth-Science Reviews'},
   {'key': '5_CR168',
    'unstructured': 'Mazhitova G, Malkova G, Chestnykh O (2008) Zamolodchikov D recent decade thaw-depth dynamics in the European Russian Arctic based on the Circumpolar Active Layer Monitoring (CALM) data. In: Proceedings of the ninth international conference on Permafrost, pp 1155–1160'},
   {'issue': 'D18',
    'key': '5_CR169',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2004JD004583',
    'volume': '109',
    'author': 'JW McClelland',
    'year': '2004',
    'unstructured': 'McClelland JW, Holmes RM, Peterson BJ, Stieglitz M (2004) Increasing river discharge in the Eurasian Arctic: consideration of dams, permafrost thaw, and fires as potential agents of change. J Geophys Res Atmos 109(D18):D18102. \nhttps://doi.org/10.1029/2004JD004583',
    'journal-title': 'J Geophys Res Atmos'},
   {'issue': 'G4',
    'key': '5_CR170',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2006JG000371',
    'volume': '112',
    'author': 'J. W. McClelland',
    'year': '2007',
    'unstructured': 'McClelland J, Stieglitz M, Pan F, Holmes RM, Peterson BJ (2007) Recent changes in nitrate and dissolved organic carbon export from the upper Kuparuk River, North Slope, Alaska. J Geophys Res Biogeosci 112(G4):G04S60. \nhttps://doi.org/10.1029/2006JG000371',
    'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
   {'issue': '5',
    'key': '5_CR171',
    'doi-asserted-by': 'publisher',
    'first-page': '629',
    'DOI': '10.1002/2015GB005351',
    'volume': '30',
    'author': 'JW McClelland',
    'year': '2016',
    'unstructured': 'McClelland JW, Holmes RM, Peterson BJ, Raymond PA, Striegl R, Zhulidov AV, Zimov SA, Zimov N, Tank SE, Spencer RG (2016) Particulate organic carbon and nitrogen export from major Arctic rivers. Glob Biogeochem Cycles 30(5):629–643',
    'journal-title': 'Glob Biogeochem Cycles'},
   {'key': '5_CR172',
    'unstructured': 'McGuire AD, Lawrence DM, Koven C, Clein JS, Burke E, Chen G, Jafarov E, MacDougall AH, Marchenko S, Nicolsky D (2018) Dependence of the evolution of carbon dynamics in the northern permafrost region on the trajectory of climate change. Proceedings of the National Academy of Sciences:201719903',
    'DOI': '10.1073/pnas.1719903115',
    'doi-asserted-by': 'crossref'},
   {'issue': '11',
    'key': '5_CR173',
    'doi-asserted-by': 'publisher',
    'first-page': '2599',
    'DOI': '10.1111/j.1365-2486.2009.01962.x',
    'volume': '15',
    'author': 'L Merbold',
    'year': '2009',
    'unstructured': 'Merbold L, Kutsch WL, Corradi C, Kolle O, Rebmann C, Stoy PC, Zimov SA, Schulze ED (2009) Artificial drainage and associated carbon fluxes (CO2/CH4) in a tundra ecosystem. Glob Chang Biol 15(11):2599–2614',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '11',
    'key': '5_CR174',
    'doi-asserted-by': 'publisher',
    'first-page': '2347',
    'DOI': '10.1111/j.1365-2427.2010.02450.x',
    'volume': '55',
    'author': 'P Mesquita',
    'year': '2010',
    'unstructured': 'Mesquita P, Wrona FJ, Prowse TD (2010) Effects of retrogressive permafrost thaw slumping on sediment chemistry and submerged macrophytes in Arctic tundra lakes. Freshw Biol 55(11):2347–2358. \nhttps://doi.org/10.1111/j.1365-2427.2010.02450.x',
    'journal-title': 'Freshw Biol'},
   {'issue': '4',
    'key': '5_CR175',
    'doi-asserted-by': 'publisher',
    'first-page': '357',
    'DOI': '10.1002/ppp.663',
    'volume': '20',
    'author': 'M Minke',
    'year': '2009',
    'unstructured': 'Minke M, Donner N, Karpov N, de Klerk P, Joosten H (2009) Patterns in vegetation composition, surface height and thaw depth in polygon mires in the Yakutian Arctic (NE Siberia): a microtopographical characterisation of the active layer. Permafr Periglac Process 20(4):357–368',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '4',
    'key': '5_CR176',
    'doi-asserted-by': 'publisher',
    'first-page': '849',
    'DOI': '10.5194/tc-5-849-2011',
    'volume': '5',
    'author': 'A Morgenstern',
    'year': '2011',
    'unstructured': 'Morgenstern A, Grosse G, Günther F, Fedorova I, Schirrmeister L (2011) Spatial analyses of thermokarst lakes and basins in Yedoma landscapes of the Lena Delta. Cryosphere 5(4):849–867. \nhttps://doi.org/10.5194/tc-5-849-2011',
    'journal-title': 'Cryosphere'},
   {'key': '5_CR177',
    'doi-asserted-by': 'publisher',
    'first-page': '363',
    'DOI': '10.1016/j.geomorph.2013.07.011',
    'volume': '201',
    'author': 'A Morgenstern',
    'year': '2013',
    'unstructured': 'Morgenstern A, Ulrich M, Günther F, Roessler S, Fedorova IV, Rudaya NA, Wetterich S, Boike J, Schirrmeister L (2013) Evolution of thermokarst in east Siberian ice-rich permafrost: a case study. Geomorphology 201:363–379. \nhttps://doi.org/10.1016/j.geomorph.2013.07.011',
    'journal-title': 'Geomorphology'},
   {'issue': '4',
    'key': '5_CR178',
    'doi-asserted-by': 'publisher',
    'first-page': '737',
    'DOI': '10.1111/j.1365-3091.1996.tb02023.x',
    'volume': '43',
    'author': 'JB Murton',
    'year': '1996',
    'unstructured': 'Murton JB (1996) Thermokarst-lake-basin sediments, Tuktoyaktuk coastlands, western arctic Canada. Sedimentology 43(4):737–760',
    'journal-title': 'Sedimentology'},
   {'issue': '1–4',
    'key': '5_CR179',
    'doi-asserted-by': 'publisher',
    'first-page': '175',
    'DOI': '10.1016/S0921-8181(00)00072-2',
    'volume': '28',
    'author': 'JB Murton',
    'year': '2001',
    'unstructured': 'Murton JB (2001) Thermokarst sediments and sedimentary structures, Tuktoyaktuk coastlands, western Arctic Canada. Glob Planet Chang 28(1–4):175–192',
    'journal-title': 'Glob Planet Chang'},
   {'issue': '4',
    'key': '5_CR180',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/4/4/045009',
    'volume': '4',
    'author': 'RR Muskett',
    'year': '2009',
    'unstructured': 'Muskett RR, Romanovsky VE (2009) Groundwater storage changes in arctic permafrost watersheds from GRACE and in situ measurements. Environ Res Lett 4(4):045009',
    'journal-title': 'Environ Res Lett'},
   {'issue': '4',
    'key': '5_CR181',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/6/4/045509',
    'volume': '6',
    'author': 'IH Myers-Smith',
    'year': '2011',
    'unstructured': 'Myers-Smith IH, Forbes BC, Wilmking M, Hallinger M, Lantz T, Blok D, Tape KD, Macias-Fauria M, Sass-Klaassen U, Lévesque E (2011) Shrub expansion in tundra ecosystems: dynamics, impacts and research priorities. Environ Res Lett 6(4):045509',
    'journal-title': 'Environ Res Lett'},
   {'issue': '3',
    'key': '5_CR182',
    'doi-asserted-by': 'publisher',
    'first-page': '14-1-14-15',
    'DOI': '10.1029/2000GB001384',
    'volume': '16',
    'author': 'Fumiko Nakagawa',
    'year': '2002',
    'unstructured': 'Nakagawa F, Yoshida N, Nojiri Y, Makarov V (2002) Production of methane from alasses in eastern Siberia: implications from its 14C and stable isotopic compositions. Glob Biogeochem Cycles 16(3). \nhttps://doi.org/10.1029/2000GB001384',
    'journal-title': 'Global Biogeochemical Cycles'},
   {'issue': '3',
    'key': '5_CR183',
    'doi-asserted-by': 'publisher',
    'first-page': '1394',
    'DOI': '10.1111/j.1365-2486.2010.02303.x',
    'volume': '17',
    'author': 'SM Natali',
    'year': '2011',
    'unstructured': 'Natali SM, Schuur EA, Trucco C, Pries CEH, Crummer KG, Lopez AFB (2011) Effects of experimental warming of air, soil and permafrost on carbon balance in Alaskan tundra. Glob Chang Biol 17(3):1394–1407',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '3',
    'key': '5_CR184',
    'doi-asserted-by': 'publisher',
    'first-page': '602',
    'DOI': '10.1890/13-0602.1',
    'volume': '95',
    'author': 'SM Natali',
    'year': '2014',
    'unstructured': 'Natali SM, Schuur EA, Webb EE, Pries CEH, Crummer KG (2014) Permafrost degradation stimulates carbon loss from experimentally warmed tundra. Ecology 95(3):602–608',
    'journal-title': 'Ecology'},
   {'issue': '3',
    'key': '5_CR185',
    'doi-asserted-by': 'publisher',
    'first-page': '525',
    'DOI': '10.1002/2014jg002872',
    'volume': '120',
    'author': 'SM Natali',
    'year': '2015',
    'unstructured': 'Natali SM, Schuur EAG, Mauritz M, Schade JD, Celis G, Crummer KG, Johnston C, Krapek J, Pegoraro E, Salmon VG, Webb EE (2015) Permafrost thaw and soil moisture driving CO2 and CH4 release from upland tundra. J Geophys Res Biogeo 120(3):525–537. \nhttps://doi.org/10.1002/2014jg002872',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '1',
    'key': '5_CR186',
    'doi-asserted-by': 'publisher',
    'first-page': '67',
    'DOI': '10.1038/nclimate2446',
    'volume': '5',
    'author': 'AL Nauta',
    'year': '2014',
    'unstructured': 'Nauta AL, Heijmans MMPD, Blok D, Limpens J, Elberling B, Gallagher A, Li B, Petrov RE, Maximov TC, van Huissteden J, Berendse F (2014) Permafrost collapse after shrub removal shifts tundra ecosystem to a methane source. Nat Clim Chang 5(1):67–70. \nhttps://doi.org/10.1038/nclimate2446',
    'journal-title': 'Nat Clim Chang'},
   {'key': '5_CR187',
    'unstructured': 'Neff JC FJ, Zimov SA, Davydov SP, Carrasco JJ, Schuur EA, Davydova AI (2006) Seasonal changes in the age and structure of dissolved organic carbon in Siberian rivers and streams. Geophys Res Lett 33(23):L23401. \nhttps://doi.org/10.1029/2006GL028222',
    'DOI': '10.1029/2006GL028222',
    'doi-asserted-by': 'publisher'},
   {'issue': 'D22',
    'key': '5_CR188',
    'doi-asserted-by': 'publisher',
    'first-page': '28963',
    'DOI': '10.1029/98JD00534',
    'volume': '103',
    'author': 'F Nelson',
    'year': '1998',
    'unstructured': 'Nelson F, Hinkel K, Shiklomanov N, Mueller G, Miller L, Walker D (1998) Active-layer thickness in north Central Alaska: systematic sampling, scale, and spatial autocorrelation. J Geophys Res Atmos 103(D22):28963–28973',
    'journal-title': 'J Geophys Res Atmos'},
   {'issue': '1',
    'key': '5_CR189',
    'doi-asserted-by': 'publisher',
    'first-page': '5423',
    'DOI': '10.1038/s41467-018-07663-3',
    'volume': '9',
    'author': 'I Nitze',
    'year': '2018',
    'unstructured': 'Nitze I, Grosse G, Jones BM, Romanovsky VE, Boike J (2018) Remote sensing quantifies widespread abundance of permafrost region disturbances across the Arctic and Subarctic. Nat Commun 9(1):5423. \nhttps://doi.org/10.1038/s41467-018-07663-3',
    'journal-title': 'Nat Commun'},
   {'issue': '3',
    'key': '5_CR190',
    'doi-asserted-by': 'publisher',
    'first-page': '785',
    'DOI': '10.1007/s00442-009-1556-x',
    'volume': '163',
    'author': 'NS Nowinski',
    'year': '2010',
    'unstructured': 'Nowinski NS, Taneva L, Trumbore SE, Welker JM (2010) Decomposition of old organic matter as a result of deeper active layers in a snow depth manipulation experiment. Oecologia 163(3):785–792',
    'journal-title': 'Oecologia'},
   {'issue': '4',
    'key': '5_CR191',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2012GB004341',
    'volume': '26',
    'author': "Jonathan A. O'Donnell",
    'year': '2012',
    'unstructured': 'O’Donnell JA, Aiken GR, Walvoord MA, Butler KD (2012a) Dissolved organic matter composition of winter flow in the Yukon River basin: implications of permafrost thaw and increased groundwater discharge. Glob Biogeochem Cycles 26(4):GB0E06. \nhttps://doi.org/10.1029/2012GB004341',
    'journal-title': 'Global Biogeochemical Cycles'},
   {'issue': '2',
    'key': '5_CR192',
    'doi-asserted-by': 'publisher',
    'first-page': '213',
    'DOI': '10.1007/s10021-011-9504-0',
    'volume': '15',
    'author': 'JA O’Donnell',
    'year': '2012',
    'unstructured': 'O’Donnell JA, Jorgenson MT, Harden JW, McGuire AD, Kanevskiy MZ, Wickland KP (2012b) The effects of permafrost thaw on soil hydrologic, thermal, and carbon dynamics in an Alaskan peatland. Ecosystems 15(2):213–229',
    'journal-title': 'Ecosystems'},
   {'issue': '2',
    'key': '5_CR193',
    'doi-asserted-by': 'publisher',
    'first-page': '221',
    'DOI': '10.1890/06-0649',
    'volume': '77',
    'author': 'SF Oberbauer',
    'year': '2007',
    'unstructured': 'Oberbauer SF, Tweedie CE, Welker JM, Fahnestock JT, Henry GH, Webber PJ, Hollister RD, Walker MD, Kuchy A, Elmore E (2007) Tundra CO2 fluxes in response to experimental warming across latitudinal and moisture gradients. Ecol Monogr 77(2):221–238',
    'journal-title': 'Ecol Monogr'},
   {'issue': '3',
    'key': '5_CR194',
    'doi-asserted-by': 'publisher',
    'first-page': '187',
    'DOI': '10.1016/j.gloplacha.2005.09.001',
    'volume': '49',
    'author': 'T Osterkamp',
    'year': '2005',
    'unstructured': 'Osterkamp T (2005) The recent warming of permafrost in Alaska. Glob Planet Chang 49(3):187–202',
    'journal-title': 'Glob Planet Chang'},
   {'issue': '2',
    'key': '5_CR195',
    'doi-asserted-by': 'publisher',
    'first-page': '285',
    'DOI': '10.1111/j.1468-0459.2010.00395.x',
    'volume': '92',
    'author': 'I Overeem',
    'year': '2010',
    'unstructured': 'Overeem I, Syvitsky J (2010) Sedimentaryfluxes and budgets in changing cold environments: quantitative analysis and scaling issues. Geogr Ann Ser B 92(2):285–296',
    'journal-title': 'Geogr Ann Ser B'},
   {'issue': '1',
    'key': '5_CR196',
    'doi-asserted-by': 'publisher',
    'first-page': '23',
    'DOI': '10.1016/j.polar.2011.11.002',
    'volume': '6',
    'author': 'H Park',
    'year': '2012',
    'unstructured': 'Park H, Yabuki H, Ohata T (2012) Analysis of satellite and model datasets for variability and trends in Arctic snow extent and depth, 1948–2006. Pol Sci 6(1):23–37',
    'journal-title': 'Pol Sci'},
   {'issue': '2',
    'key': '5_CR197',
    'doi-asserted-by': 'publisher',
    'first-page': '631',
    'DOI': '10.5194/tc-7-631-2013',
    'volume': '7',
    'author': 'H Park',
    'year': '2013',
    'unstructured': 'Park H, Walsh J, Fedorov A, Sherstiukov A, Iijima Y, Ohata T (2013) The influence of climate and hydrological variables on opposite anomaly in active-layer thickness between Eurasian and north American watersheds. Cryosphere 7(2):631–645',
    'journal-title': 'Cryosphere'},
   {'issue': '5',
    'key': '5_CR198',
    'doi-asserted-by': 'publisher',
    'first-page': '1733',
    'DOI': '10.1175/JCLI-D-15-0569.1',
    'volume': '29',
    'author': 'H Park',
    'year': '2016',
    'unstructured': 'Park H, Yoshikawa Y, Oshima K, Kim Y, Ngo-Duc T, Kimball JS, Yang D (2016) Quantification of warming climate-induced changes in terrestrial Arctic River ice thickness and phenology. J Clim 29(5):1733–1754',
    'journal-title': 'J Clim'},
   {'issue': 'G4',
    'key': '5_CR199',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2011JG001653',
    'volume': '116',
    'author': 'F Parmentier',
    'year': '2011',
    'unstructured': 'Parmentier F, Van Der Molen M, Van Huissteden J, Karsanaev S, Kononov A, Suzdalov D, Maximov T, Dolman A (2011) Longer growing seasons do not increase net carbon uptake in the northeastern Siberian tundra. J Geophys Res Biogeo 116(G4):G04013. \nhttps://doi.org/10.1029/2011JG001653',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '18',
    'key': '5_CR200',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2004GL020358',
    'volume': '31',
    'author': 'S Payette',
    'year': '2004',
    'unstructured': 'Payette S, Delwaide A, Caccianiga M, Beauchemin M (2004) Accelerated thawing of subarctic peatland permafrost over the last 50 years. Geophys Res Lett 31(18):L18208. \nhttps://doi.org/10.1029/2004GL020358',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '12',
    'key': '5_CR201',
    'doi-asserted-by': 'publisher',
    'first-page': '3636',
    'DOI': '10.1073/pnas.1417392112',
    'volume': '112',
    'author': 'A Paytan',
    'year': '2015',
    'unstructured': 'Paytan A, Lecher AL, Dimova N, Sparrow KJ, Kodovska FG-T, Murray J, Tulaczyk S, Kessler JD (2015) Methane transport from the active layer to lakes in the Arctic using Toolik Lake, Alaska, as a case study. Proc Natl Acad Sci 112(12):3636–3640',
    'journal-title': 'Proc Natl Acad Sci'},
   {'issue': '7',
    'key': '5_CR202',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/9/7/075006',
    'volume': '9',
    'author': 'C Pizano',
    'year': '2014',
    'unstructured': 'Pizano C, Barón AF, Schuur EA, Crummer KG, Mack MC (2014) Effects of thermo-erosional disturbance on surface soil carbon and nitrogen dynamics in upland arctic tundra. Environ Res Lett 9(7):075006',
    'journal-title': 'Environ Res Lett'},
   {'issue': 'F1',
    'key': '5_CR203',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2006JF000740',
    'volume': '114',
    'author': 'LJ Plug',
    'year': '2009',
    'unstructured': 'Plug LJ, West JJ (2009) Thaw lake expansion in a two-dimensional coupled model of heat transfer, thaw subsidence, and mass movement. J Geophys Res Earth 114(F1):F01002. \nhttps://doi.org/10.1029/2006JF000740',
    'journal-title': 'J Geophys Res Earth'},
   {'issue': '3',
    'key': '5_CR204',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2007GL032303',
    'volume': '35',
    'author': 'LJ Plug',
    'year': '2008',
    'unstructured': 'Plug LJ, Walls C, Scott B (2008) Tundra lake changes from 1978 to 2001 on the Tuktoyaktuk peninsula, western Canadian Arctic. Geophys Res Lett 35(3):L03502. \nhttps://doi.org/10.1029/2007GL032303',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '8',
    'key': '5_CR205',
    'doi-asserted-by': 'publisher',
    'first-page': '5349',
    'DOI': '10.5194/bg-10-5349-2013',
    'volume': '10',
    'author': 'OS Pokrovsky',
    'year': '2013',
    'unstructured': 'Pokrovsky OS, Shirokova LS, Kirpotin SN, Kulizhsky SP, Vorobiev SN (2013) Impact of western Siberia heat wave 2012 on greenhouse gases and trace metal concentration in thaw lakes of discontinuous permafrost zone. Biogeosciences 10(8):5349–5365',
    'journal-title': 'Biogeosciences'},
   {'issue': '1',
    'key': '5_CR206',
    'doi-asserted-by': 'publisher',
    'first-page': '63',
    'DOI': '10.1007/s13280-011-0217-6',
    'volume': '40',
    'author': 'T Prowse',
    'year': '2011',
    'unstructured': 'Prowse T, Alfredsen K, Beltaos S, Bonsal BR, Bowden WB, Duguay CR, Korhola A, McNamara J, Vincent WF, Vuglinsky V (2011) Effects of changes in arctic lake and river ice. Ambio 40(1):63–74',
    'journal-title': 'Ambio'},
   {'issue': '21',
    'key': '5_CR207',
    'doi-asserted-by': 'publisher',
    'first-page': '5715',
    'DOI': '10.1175/2010JCLI3421.1',
    'volume': '23',
    'author': 'MA Rawlins',
    'year': '2010',
    'unstructured': 'Rawlins MA, Steele M, Holland MM, Adam JC, Cherry JE, Francis JA, Groisman PY, Hinzman LD, Huntington TG, Kane DL (2010) Analysis of the Arctic system for freshwater cycle intensification: observations and expectations. J Clim 23(21):5715–5737',
    'journal-title': 'J Clim'},
   {'issue': '4',
    'key': '5_CR208',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2007GB002934',
    'volume': '21',
    'author': 'PA Raymond',
    'year': '2007',
    'unstructured': 'Raymond PA, McClelland J, Holmes R, Zhulidov A, Mull K, Peterson B, Striegl R, Aiken G, Gurtovaya T (2007) Flux and age of dissolved organic carbon exported to the Arctic Ocean: a carbon isotopic study of the five largest arctic rivers. Glob Biogeochem Cycles 21(4):GB4011. \nhttps://doi.org/10.1029/2007GB002934',
    'journal-title': 'Glob Biogeochem Cycles'},
   {'issue': '5',
    'key': '5_CR306',
    'doi-asserted-by': 'publisher',
    'first-page': '788',
    'DOI': '10.1111/j.1600-0889.2007.00301.x',
    'volume': '59',
    'author': 'E. Repo',
    'year': '2007',
    'unstructured': 'Repo E, Huttunen J, Naumov A, Chichulin A, Lapshina E, Bleuten W, Martikainen P (2007) Release of CO2 and CH4 from small wetland lakes in western Siberia. Tellus B Chem Phys Meteorol 59(5):788–796',
    'journal-title': 'Tellus B: Chemical and Physical Meteorology'},
   {'issue': '3',
    'key': '5_CR209',
    'doi-asserted-by': 'publisher',
    'first-page': '189',
    'DOI': '10.1038/ngeo434',
    'volume': '2',
    'author': 'ME Repo',
    'year': '2009',
    'unstructured': 'Repo ME, Susiluoto S, Lind SE, Jokinen S, Elsakov V, Biasi C, Virtanen T, Martikainen PJ (2009) Large N2O emissions from cryoturbated peat soil in tundra. Nat Geosci 2(3):189',
    'journal-title': 'Nat Geosci'},
   {'issue': '1',
    'key': '5_CR210',
    'doi-asserted-by': 'publisher',
    'first-page': '35',
    'DOI': '10.1657/AAAR0013-099',
    'volume': '47',
    'author': 'FR Reyes',
    'year': '2015',
    'unstructured': 'Reyes FR, Lougheed VL (2015) Rapid nutrient release from permafrost thaw in arctic aquatic ecosystems. Arct Antarct Alp Res 47(1):35–48',
    'journal-title': 'Arct Antarct Alp Res'},
   {'issue': 'G4',
    'key': '5_CR211',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2005JG000150',
    'volume': '111',
    'author': 'B Riordan',
    'year': '2006',
    'unstructured': 'Riordan B, Verbyla D, McGuire AD (2006) Shrinking ponds in subarctic Alaska based on 1950–2002 remotely sensed images. J Geophys Res Biogeo 111(G4):G04002. \nhttps://doi.org/10.1029/2005JG000150',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '1',
    'key': '5_CR212',
    'doi-asserted-by': 'publisher',
    'first-page': '1',
    'DOI': '10.1002/(SICI)1099-1530(199701)8:1<1::AID-PPP243>3.0.CO;2-U',
    'volume': '8',
    'author': 'V Romanovsky',
    'year': '1997',
    'unstructured': 'Romanovsky V, Osterkamp T (1997) Thawing of the active layer on the coastal plain of the Alaskan Arctic. Permafr Periglac Process 8(1):1–22',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '17',
    'key': '5_CR213',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2011GL048497',
    'volume': '38',
    'author': 'J Rowland',
    'year': '2011',
    'unstructured': 'Rowland J, Travis B, Wilson C (2011) The role of advective heat transport in talik development beneath lakes and ponds in discontinuous permafrost. Geophys Res Lett 38(17):L17504. \nhttps://doi.org/10.1029/2011GL048497',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '4',
    'key': '5_CR214',
    'first-page': '349',
    'volume': '53',
    'author': 'J Ryckeboer',
    'year': '2003',
    'unstructured': 'Ryckeboer J, Mergaert J, Vaes K, Klammer S, De Clercq D, Coosemans J, Insam H, Swings J (2003) A survey of bacteria and fungi occurring during composting and self-heating processes. Ann Microbiol 53(4):349–410',
    'journal-title': 'Ann Microbiol'},
   {'issue': '11',
    'key': '5_CR215',
    'first-page': '3096',
    'volume': '16',
    'author': 'T Sachs',
    'year': '2010',
    'unstructured': 'Sachs T, Giebels M, Boike J, Kutzbach L (2010) Environmental controls on CH4 emission from polygonal tundra on the microsite scale in the Lena river delta, Siberia. Glob Chang Biol 16(11):3096–3110',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '2',
    'key': '5_CR216',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2010GB003862',
    'volume': '25',
    'author': 'Laura Sánchez-García',
    'year': '2011',
    'unstructured': 'Sánchez-García L, Alling V, Pugach S, Vonk J, Van Dongen B, Humborg C, Dudarev O, Semiletov I, Gustafsson Ö (2011) Inventories and behavior of particulate organic carbon in the Laptev and East Siberian seas. Glob Biogeochem Cycles 25(2)',
    'journal-title': 'Global Biogeochemical Cycles'},
   {'issue': 'G3',
    'key': '5_CR217',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2010JG001635',
    'volume': '116',
    'author': 'A Sannel',
    'year': '2011',
    'unstructured': 'Sannel A, Kuhry P (2011) Warming-induced destabilization of peat plateau/thermokarst lake complexes. J Geophys Res Biogeo 116(G3):G03035. \nhttps://doi.org/10.1029/2010JG001635',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '2',
    'key': '5_CR218',
    'doi-asserted-by': 'publisher',
    'first-page': '125',
    'DOI': '10.1002/ppp.449',
    'volume': '14',
    'author': 'T Sazonova',
    'year': '2003',
    'unstructured': 'Sazonova T, Romanovsky V (2003) A model for regional-scale estimation of temporal and spatial variability of active layer thickness and mean annual ground temperatures. Permafr Periglac Process 14(2):125–139',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '10',
    'key': '5_CR219',
    'doi-asserted-by': 'publisher',
    'first-page': '950',
    'DOI': '10.1038/nclimate3054',
    'volume': '6',
    'author': 'C Schädel',
    'year': '2016',
    'unstructured': 'Schädel C, Bader MK-F, Schuur EA, Biasi C, Bracho R, Čapek P, De Baets S, Diáková K, Ernakovich J, Estop-Aragones C (2016) Potential carbon emissions dominated by carbon dioxide from thawed permafrost soils. Nat Clim Chang 6(10):950',
    'journal-title': 'Nat Clim Chang'},
   {'issue': '7260',
    'key': '5_CR220',
    'doi-asserted-by': 'publisher',
    'first-page': '53',
    'DOI': '10.1038/nature08227',
    'volume': '461',
    'author': 'M Scheffer',
    'year': '2009',
    'unstructured': 'Scheffer M, Bascompte J, Brock WA, Brovkin V, Carpenter SR, Dakos V, Held H, Van Nes EH, Rietkerk M, Sugihara G (2009) Early-warning signals for critical transitions. Nature 461(7260):53',
    'journal-title': 'Nature'},
   {'issue': '1',
    'key': '5_CR221',
    'doi-asserted-by': 'publisher',
    'first-page': '216',
    'DOI': '10.1111/bor.12084',
    'volume': '44',
    'author': 'P Schleusner',
    'year': '2015',
    'unstructured': 'Schleusner P, Biskaborn BK, Kienast F, Wolter J, Subetto D, Diekmann B (2015) Basin evolution and palaeoenvironmental variability of the thermokarst lake E l’gene-K yuele, Arctic Siberia. Boreas 44(1):216–229',
    'journal-title': 'Boreas'},
   {'issue': '9',
    'key': '5_CR222',
    'doi-asserted-by': 'publisher',
    'first-page': '3117',
    'DOI': '10.1002/2014GL059514',
    'volume': '41',
    'author': 'K Schreiner',
    'year': '2014',
    'unstructured': 'Schreiner K, Bianchi TS, Rosenheim BE (2014) Evidence for permafrost thaw and transport from an Alaskan North slope watershed. Geophys Res Lett 41(9):3117–3126. \nhttps://doi.org/10.1002/2014GL059514',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '2',
    'key': '5_CR223',
    'doi-asserted-by': 'publisher',
    'first-page': '280',
    'DOI': '10.1007/s10021-007-9024-0',
    'volume': '10',
    'author': 'EA Schuur',
    'year': '2007',
    'unstructured': 'Schuur EA, Crummer KG, Vogel JG, Mack MC (2007) Plant species composition and productivity following permafrost thaw and thermokarst in Alaskan tundra. Ecosystems 10(2):280–292',
    'journal-title': 'Ecosystems'},
   {'issue': '8',
    'key': '5_CR224',
    'doi-asserted-by': 'publisher',
    'first-page': '701',
    'DOI': '10.1641/B580807',
    'volume': '58',
    'author': 'EA Schuur',
    'year': '2008',
    'unstructured': 'Schuur EA, Bockheim J, Canadell JG, Euskirchen E, Field CB, Goryachkin SV, Hagemann S, Kuhry P, Lafleur PM, Lee H (2008) Vulnerability of permafrost carbon to climate change: implications for the global carbon cycle. Bioscience 58(8):701–714',
    'journal-title': 'Bioscience'},
   {'issue': '7246',
    'key': '5_CR225',
    'doi-asserted-by': 'publisher',
    'first-page': '556',
    'DOI': '10.1038/nature08031',
    'volume': '459',
    'author': 'EA Schuur',
    'year': '2009',
    'unstructured': 'Schuur EA, Vogel JG, Crummer KG, Lee H, Sickman JO, Osterkamp T (2009) The effect of permafrost thaw on old carbon release and net carbon exchange from tundra. Nature 459(7246):556',
    'journal-title': 'Nature'},
   {'issue': '7546',
    'key': '5_CR226',
    'doi-asserted-by': 'publisher',
    'first-page': '171',
    'DOI': '10.1038/nature14338',
    'volume': '520',
    'author': 'EA Schuur',
    'year': '2015',
    'unstructured': 'Schuur EA, McGuire AD, Schadel C, Grosse G, Harden JW, Hayes DJ, Hugelius G, Koven CD, Kuhry P, Lawrence DM, Natali SM, Olefeldt D, Romanovsky VE, Schaefer K, Turetsky MR, Treat CC, Vonk JE (2015) Climate change and the permafrost carbon feedback. Nature 520(7546):171–179. \nhttps://doi.org/10.1038/nature14338',
    'journal-title': 'Nature'},
   {'issue': '9',
    'key': '5_CR227',
    'doi-asserted-by': 'publisher',
    'first-page': '2407',
    'DOI': '10.5194/bg-8-2407-2011',
    'volume': '8',
    'author': 'IP Semiletov',
    'year': '2011',
    'unstructured': 'Semiletov IP, Pipko II, Shakhova NE, Dudarev OV, Pugach SP, Charkin AN, McRoy C, Kosmach D, Gustafsson Ö (2011) Carbon transport by the Lena River from its headwaters to the Arctic Ocean, with emphasis on fluvial input of terrestrial particulate organic carbon vs. carbon transport by coastal erosion. Biogeosciences 8(9):2407–2426',
    'journal-title': 'Biogeosciences'},
   {'issue': '1',
    'key': '5_CR228',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/7/1/015201',
    'volume': '7',
    'author': 'IP Semiletov',
    'year': '2012',
    'unstructured': 'Semiletov IP, Shakhova NE, Sergienko VI, Pipko II, Dudarev OV (2012) On carbon transport and fate in the east Siberian Arctic land–shelf–atmosphere system. Environ Res Lett 7(1):015201',
    'journal-title': 'Environ Res Lett'},
   {'issue': '2',
    'key': '5_CR229',
    'doi-asserted-by': 'publisher',
    'first-page': '366',
    'DOI': '10.1016/j.yqres.2010.09.007',
    'volume': '75',
    'author': 'M Seppälä',
    'year': '2011',
    'unstructured': 'Seppälä M (2011) Synthesis of studies of palsa formation underlining the importance of local environmental and physical characteristics. Quat Res 75(2):366–370',
    'journal-title': 'Quat Res'},
   {'issue': '4',
    'key': '5_CR230',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/4/4/045015',
    'volume': '4',
    'author': 'A Shiklomanov',
    'year': '2009',
    'unstructured': 'Shiklomanov A, Lammers R (2009) Record Russian river discharge in 2007 and the limits of analysis. Environ Res Lett 4(4):045015',
    'journal-title': 'Environ Res Lett'},
   {'issue': 'G4',
    'key': '5_CR231',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2006JG000352',
    'volume': '112',
    'author': 'A. I. Shiklomanov',
    'year': '2007',
    'unstructured': 'Shiklomanov AI, Lammers RB, Rawlins M, Smith L, Pavelsky T (2007) Temporal and spatial variations in maximum river discharge from a new Russian data set. Journal of geophysical research: Biogeosciences 112(G4):G04S53. \nhttps://doi.org/10.1029/2006JG000352',
    'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
   {'key': '5_CR232',
    'unstructured': 'Shiklomanov NI, Streletskiy DA, Nelson FE, Hollister RD, Romanovsky VE, Tweedie CE, Bockheim JG, Brown J (2010) Decadal variations of active-layer thickness in moisture-controlled landscapes, Barrow, Alaska. J Geophys Res Biogeosci 115(G4):G00I04. \nhttps://doi.org/10.1029/2009JG001248',
    'DOI': '10.1029/2009JG001248',
    'doi-asserted-by': 'publisher'},
   {'issue': '1-2',
    'key': '5_CR233',
    'doi-asserted-by': 'publisher',
    'first-page': '215',
    'DOI': '10.1007/s00382-017-3600-6',
    'volume': '50',
    'author': 'Igor Shkolnik',
    'year': '2017',
    'unstructured': 'Shkolnik I, Pavlova T, Efimov S, Zhuravlev S (2017) Future changes in peak river flows across northern Eurasia as inferred from an ensemble of regional climate projections under the IPCC RCP8.5 scenario. Climate Dynam \nhttps://doi.org/10.1007/s00382-017-3600-6',
    'journal-title': 'Climate Dynamics'},
   {'issue': '1',
    'key': '5_CR234',
    'doi-asserted-by': 'publisher',
    'first-page': '7',
    'DOI': '10.1002/ppp.582',
    'volume': '18',
    'author': 'Y Shur',
    'year': '2007',
    'unstructured': 'Shur Y, Jorgenson M (2007) Patterns of permafrost formation and degradation in relation to climate and ecosystems. Permafr Periglac Process 18(1):7–19',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '7451',
    'key': '5_CR235',
    'doi-asserted-by': 'publisher',
    'first-page': '615',
    'DOI': '10.1038/nature12129',
    'volume': '497',
    'author': 'SA Sistla',
    'year': '2013',
    'unstructured': 'Sistla SA, Moore JC, Simpson RT, Gough L, Shaver GR, Schimel JP (2013) Long-term warming restructures Arctic tundra without changing net soil carbon storage. Nature 497(7451):615',
    'journal-title': 'Nature'},
   {'key': '5_CR236',
    'doi-asserted-by': 'publisher',
    'first-page': '42',
    'DOI': '10.1016/j.soilbio.2016.03.016',
    'volume': '98',
    'author': 'S Sjögersten',
    'year': '2016',
    'unstructured': 'Sjögersten S, Caul S, Daniell T, Jurd A, O’Sullivan O, Stapleton C, Titman JJ (2016) Organic matter chemistry controls greenhouse gas emissions from permafrost peatlands. Soil Biol Biochem 98:42–53',
    'journal-title': 'Soil Biol Biochem'},
   {'issue': '5727',
    'key': '5_CR237',
    'doi-asserted-by': 'publisher',
    'first-page': '1429',
    'DOI': '10.1126/science.1108142',
    'volume': '308',
    'author': 'LC Smith',
    'year': '2005',
    'unstructured': 'Smith LC, Sheng Y, MacDonald G, Hinzman L (2005) Disappearing arctic lakes. Science 308(5727):1429–1429',
    'journal-title': 'Science'},
   {'issue': '6',
    'key': '5_CR238',
    'doi-asserted-by': 'publisher',
    'first-page': '1442',
    'DOI': '10.1111/1365-2435.12127',
    'volume': '27',
    'author': 'NA Soudzilovskaia',
    'year': '2013',
    'unstructured': 'Soudzilovskaia NA, Bodegom PM, Cornelissen JH (2013) Dominant bryophyte control over high-latitude soil temperature fluctuations predicted by heat transfer traits, field moisture regime and laws of thermal insulation. Funct Ecol 27(6):1442–1454',
    'journal-title': 'Funct Ecol'},
   {'issue': '5',
    'key': '5_CR239',
    'doi-asserted-by': 'publisher',
    'first-page': '853',
    'DOI': '10.1007/s10021-009-9263-3',
    'volume': '12',
    'author': 'MM Squires',
    'year': '2009',
    'unstructured': 'Squires MM, Lesack LF, Hecky RE, Guildford SJ, Ramlal P, Higgins SN (2009) Primary production and carbon dioxide metabolic balance of a lake-rich arctic river floodplain: partitioning of phytoplankton, epipelon, macrophyte, and epiphyton production among lakes on the Mackenzie Delta. Ecosystems 12(5):853–872',
    'journal-title': 'Ecosystems'},
   {'issue': '1',
    'key': '5_CR240',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2008GL035822',
    'volume': '36',
    'author': 'JM St. Jacques',
    'year': '2009',
    'unstructured': 'St. Jacques JM, Sauchyn DJ (2009) Increasing winter baseflow and mean annual streamflow from possible permafrost thawing in the Northwest Territories, Canada. Geophys Res Lett 36(1):L01401. \nhttps://doi.org/10.1029/2008GL035822',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '13',
    'key': '5_CR241',
    'doi-asserted-by': 'publisher',
    'first-page': '1721',
    'DOI': '10.1029/2003GL017337',
    'volume': '30',
    'author': 'M Stieglitz',
    'year': '2003',
    'unstructured': 'Stieglitz M, Déry S, Romanovsky V, Osterkamp T (2003) The role of snow cover in the warming of arctic permafrost. Geophys Res Lett 30(13):1721. \nhttps://doi.org/10.1029/2003GL017337',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '4',
    'key': '5_CR242',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2012GB004306',
    'volume': '26',
    'author': 'Robert G. Striegl',
    'year': '2012',
    'unstructured': 'Striegl RGDM, McDonald CP, Rover JR, Stets EG (2012) Carbon dioxide and methane emissions from the Yukon River system. Global Biogeochem Cycles 24(4):GB0E05. \nhttps://doi.org/10.1029/2012GB004306',
    'journal-title': 'Global Biogeochemical Cycles'},
   {'issue': '8',
    'key': '5_CR243',
    'doi-asserted-by': 'publisher',
    'first-page': '1185',
    'DOI': '10.1046/j.1365-2486.2003.00655.x',
    'volume': '9',
    'author': 'L Ström',
    'year': '2003',
    'unstructured': 'Ström L, Ekberg A, Mastepanov M, Røjle Christensen T (2003) The effect of vascular plants on carbon turnover and methane emissions from a tundra wetland. Glob Chang Biol 9(8):1185–1192',
    'journal-title': 'Glob Chang Biol'},
   {'issue': '6837',
    'key': '5_CR244',
    'doi-asserted-by': 'publisher',
    'first-page': '546',
    'DOI': '10.1038/35079180',
    'volume': '411',
    'author': 'M Sturm',
    'year': '2001',
    'unstructured': 'Sturm M, Racine C, Tape K (2001) Climate change: increasing shrub abundance in the Arctic. Nature 411(6837):546',
    'journal-title': 'Nature'},
   {'issue': 'G1',
    'key': '5_CR245',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2005JG000013',
    'volume': '110',
    'author': 'M Sturm',
    'year': '2005',
    'unstructured': 'Sturm M, Douglas T, Racine C, Liston GE (2005) Changing snow and shrub conditions affect albedo with global implications. J Geophys Res Biogeo 110(G1):G01004. \nhttps://doi.org/10.1029/2005JG000013',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '6',
    'key': '5_CR246',
    'doi-asserted-by': 'publisher',
    'first-page': '1073',
    'DOI': '10.1002/hyp.1180',
    'volume': '17',
    'author': 'A Sugimoto',
    'year': '2003',
    'unstructured': 'Sugimoto A, Naito D, Yanagisawa N, Ichiyanagi K, Kurita N, Kubota J, Kotake T, Ohata T, Maximov T, Fedorov A (2003) Characteristics of soil moisture in permafrost observed in East Siberian taiga with stable isotopes of water. Hydrol Process 17(6):1073–1092',
    'journal-title': 'Hydrol Process'},
   {'issue': 'G4',
    'key': '5_CR247',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2011JG001795',
    'volume': '116',
    'author': 'KD Tape',
    'year': '2011',
    'unstructured': 'Tape KD, Verbyla D, Welker JM (2011) Twentieth century erosion in Arctic Alaska foothills: the influence of shrubs, runoff, and permafrost. J Geophys Res Biogeo 116(G4):G04024. \nhttps://doi.org/10.1029/2011JG001795',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '1',
    'key': '5_CR248',
    'doi-asserted-by': 'publisher',
    'first-page': '76',
    'DOI': '10.1002/ppp.1869',
    'volume': '27',
    'author': 'A Teltewskoi',
    'year': '2016',
    'unstructured': 'Teltewskoi A, Beermann F, Beil I, Bobrov A, De Klerk P, Lorenz S, Lüder A, Michaelis D, Joosten H (2016) 4000 years of changing wetness in a permafrost polygon Peatland (Kytalyk, NE Siberia): a comparative high-resolution multi-proxy study. Permafr Periglac Process 27(1):76–95',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': 'G2',
    'key': '5_CR249',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2011jg001907',
    'volume': '117',
    'author': 'C Trucco',
    'year': '2012',
    'unstructured': 'Trucco C, Schuur EAG, Natali SM, Belshe EF, Bracho R, Vogel J (2012) Seven-year trends of CO2 exchange in a tundra ecosystem affected by long-term permafrost thaw. J Geophys Res Biogeo 117(G2):G02031. \nhttps://doi.org/10.1029/2011jg001907',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '9',
    'key': '5_CR250',
    'doi-asserted-by': 'publisher',
    'first-page': '1922',
    'DOI': '10.1111/j.1365-2486.2007.01381.x',
    'volume': '13',
    'author': 'M Turetsky',
    'year': '2007',
    'unstructured': 'Turetsky M, Wieder R, Vitt D, Evans R, Scott K (2007) The disappearance of relict permafrost in boreal North America: effects on peatland carbon storage and fluxes. Glob Chang Biol 13(9):1922–1934',
    'journal-title': 'Glob Chang Biol'},
   {'key': '5_CR251',
    'unstructured': 'Turetsky M, Treat C, Waldrop M, Waddington J, Harden J, McGuire A (2008) Short-term response of methane fluxes and methanogen activity to water table and soil warming manipulations in an Alaskan peatland. J Geophys Res Biogeosci 113(G3):G00A10. \nhttps://doi.org/10.1029/2007JG000496',
    'DOI': '10.1029/2007JG000496',
    'doi-asserted-by': 'publisher'},
   {'key': '5_CR252',
    'author': 'Nataliya Ukraintseva',
    'first-page': '107',
    'year': '2013',
    'unstructured': 'Ukraintseva N, Leibman M, Streletskaya I, Mikhaylova T (2014) Geochemistry of plant-soil-permafrost system on landslide-affected slopes, Yamal, Russia as an indicator of landslide age. In: Landslides in cold regions in the context of climate change. Springer, Cham, pp 107–131',
    'volume-title': 'Landslides in Cold Regions in the Context of Climate Change'},
   {'issue': '6',
    'key': '5_CR253',
    'doi-asserted-by': 'publisher',
    'first-page': '985',
    'DOI': '10.5194/bg-4-985-2007',
    'volume': '4',
    'author': 'M Molen Van der',
    'year': '2007',
    'unstructured': 'Van der Molen M, Van Huissteden J, Parmentier F, Petrescu A, Dolman A, Maximov T, Kononov A, Karsanaev S, Suzdalov D (2007) The growing season greenhouse gas balance of a continental tundra site in the Indigirka lowlands, NE Siberia. Biogeosciences 4(6):985–1003. \nhttps://doi.org/10.5194/bg-4-985-2007',
    'journal-title': 'Biogeosciences'},
   {'issue': '1',
    'key': '5_CR254',
    'doi-asserted-by': 'publisher',
    'first-page': '166',
    'DOI': '10.1111/j.1365-2427.2011.02710.x',
    'volume': '57',
    'author': 'M Hardenbroek Van',
    'year': '2012',
    'unstructured': 'Van Hardenbroek M, Lotter AF, Bastviken D, Duc N, Heiri O (2012) Relationship between δ13C of chironomid remains and methane flux in Swedish lakes. Freshw Biol 57(1):166–177',
    'journal-title': 'Freshw Biol'},
   {'key': '5_CR255',
    'unstructured': 'Van Huissteden J (1990) Tundra rivers of the last glacial: sedimentation and geomorphological processes during the Middle Pleniglacial in Twente, Eastern Netherlands. In: Van Amerom H (ed) Mededelingen Rijks Geologische Dienst, vol 44–3. Rijks Geologische Dienst, pp 1–138'},
   {'issue': '5',
    'key': '5_CR256',
    'doi-asserted-by': 'publisher',
    'first-page': '545',
    'DOI': '10.1016/j.cosust.2012.09.008',
    'volume': '4',
    'author': 'J Huissteden Van',
    'year': '2012',
    'unstructured': 'Van Huissteden J, Dolman AJ (2012) Soil carbon in the Arctic and the permafrost carbon feedback. Curr Opin Environ Sustain 4(5):545–551. \nhttps://doi.org/10.1016/j.cosust.2012.09.008',
    'journal-title': 'Curr Opin Environ Sustain'},
   {'issue': 'G2',
    'key': '5_CR257',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2005jg000010',
    'volume': '110',
    'author': 'J Huissteden Van',
    'year': '2005',
    'unstructured': 'Van Huissteden J, Maximov TC, Dolman AJ (2005) High methane flux from an arctic floodplain (Indigirka lowlands, eastern Siberia). J Geophys Res Biogeo 110(G2):G02002. \nhttps://doi.org/10.1029/2005jg000010',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': 'G2',
    'key': '5_CR258',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2009JG001040',
    'volume': '114',
    'author': 'J. van Huissteden',
    'year': '2009',
    'unstructured': 'Van Huissteden J, Maximov TC, Dolman AJ (2009) Correction to “High methane flux from an arctic floodplain (Indigirka lowlands, eastern Siberia). J Geophys Res Biogeosci 114(G2):n/a–n/a. \nhttps://doi.org/10.1029/2009jg001040',
    'journal-title': 'Journal of Geophysical Research: Biogeosciences'},
   {'issue': '2',
    'key': '5_CR259',
    'doi-asserted-by': 'publisher',
    'first-page': '119',
    'DOI': '10.1038/nclimate1101',
    'volume': '1',
    'author': 'J Huissteden Van',
    'year': '2011',
    'unstructured': 'Van Huissteden J, Berrittella C, Parmentier F, Mi Y, Maximov T, Dolman A (2011) Methane emissions from permafrost thaw lakes limited by lake drainage. Nat Clim Chang 1(2):119–123',
    'journal-title': 'Nat Clim Chang'},
   {'key': '5_CR260',
    'author': 'J Huissteden Van',
    'first-page': '490',
    'year': '2013',
    'unstructured': 'Van Huissteden J, Vandenberghe J, Gibbard PL, Lewin J (2013) Permafrost and Periglacial features | Periglacial fluvial sediments and forms. In: Elias SA (ed) Encyclopedia of the quaternary, vol 3. Elsevier, Amsterdam, pp 490–499. \nhttps://doi.org/10.1016/b978-0-444-53643-3.00108-4',
    'volume-title': 'Encyclopedia of the quaternary',
    'DOI': '10.1016/b978-0-444-53643-3.00108-4',
    'doi-asserted-by': 'publisher'},
   {'issue': '20',
    'key': '5_CR261',
    'doi-asserted-by': 'publisher',
    'first-page': '2053',
    'DOI': '10.1016/S0277-3791(03)00213-0',
    'volume': '22',
    'author': 'J Vandenberghe',
    'year': '2003',
    'unstructured': 'Vandenberghe J (2003) Climate forcing of fluvial system development: an evolution of ideas. Quat Sci Rev 22(20):2053–2060',
    'journal-title': 'Quat Sci Rev'},
   {'issue': '3–4',
    'key': '5_CR262',
    'doi-asserted-by': 'publisher',
    'first-page': '275',
    'DOI': '10.1016/j.geomorph.2006.12.030',
    'volume': '98',
    'author': 'J Vandenberghe',
    'year': '2008',
    'unstructured': 'Vandenberghe J (2008) The fluvial cycle at cold–warm–cold transitions in lowland regions: a refinement of theory. Geomorphology 98(3–4):275–284',
    'journal-title': 'Geomorphology'},
   {'issue': '3',
    'key': '5_CR263',
    'doi-asserted-by': 'publisher',
    'first-page': '215',
    'DOI': '10.1023/A:1005984701775',
    'volume': '41',
    'author': 'J Verville',
    'year': '1998',
    'unstructured': 'Verville J, Hobbie S, Chapin FS, Hooper D (1998) Response of tundra CH4 and CO2 flux tomanipulation of temperature and vegetation. Biogeochemistry 41(3):215–235',
    'journal-title': 'Biogeochemistry'},
   {'issue': '3',
    'key': '5_CR264',
    'doi-asserted-by': 'publisher',
    'first-page': '586',
    'DOI': '10.1002/2015JG003132',
    'volume': '121',
    'author': 'T Vihma',
    'year': '2016',
    'unstructured': 'Vihma T, Screen J, Tjernström M, Newton B, Zhang X, Popova V, Deser C, Holland M, Prowse T (2016) The atmospheric role in the Arctic water cycle: a review on processes, past and future changes, and their impacts. J Geophys Res Biogeo 121(3):586–620',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '9',
    'key': '5_CR265',
    'doi-asserted-by': 'publisher',
    'first-page': '675',
    'DOI': '10.1038/ngeo1937',
    'volume': '6',
    'author': 'JE Vonk',
    'year': '2013',
    'unstructured': 'Vonk JE, Gustafsson Ö (2013) Permafrost-carbon complexities. Nat Geosci 6(9):675–676. \nhttps://doi.org/10.1038/ngeo1937',
    'journal-title': 'Nat Geosci'},
   {'issue': '10',
    'key': '5_CR266',
    'doi-asserted-by': 'publisher',
    'first-page': '3153',
    'DOI': '10.5194/bg-7-3153-2010',
    'volume': '7',
    'author': 'JE Vonk',
    'year': '2010',
    'unstructured': 'Vonk JE, Sanchez-Garcia L, Semiletov I, Dudarev O, Eglinton T, Andersson A, Gustafsson Ö (2010) Molecular and radiocarbon constraints on sources and degradation of terrestrial organic carbon along the Kolyma paleoriver transect, east Siberian Sea. Biogeosciences 7(10):3153–3166',
    'journal-title': 'Biogeosciences'},
   {'issue': '11',
    'key': '5_CR267',
    'doi-asserted-by': 'publisher',
    'first-page': '2689',
    'DOI': '10.1002/grl.50348',
    'volume': '40',
    'author': 'JE Vonk',
    'year': '2013',
    'unstructured': 'Vonk JE, Mann PJ, Davydov S, Davydova A, Spencer RGM, Schade J, Sobczak WV, Zimov N, Zimov S, Bulygina E, Eglinton TI, Holmes RM (2013) High biolability of ancient permafrost carbon upon thaw. Geophys Res Lett 40(11):2689–2693. \nhttps://doi.org/10.1002/grl.50348',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '12',
    'key': '5_CR268',
    'doi-asserted-by': 'publisher',
    'first-page': '8410',
    'DOI': '10.1002/2014JC010261',
    'volume': '119',
    'author': 'JE Vonk',
    'year': '2014',
    'unstructured': 'Vonk JE, Semiletov IP, Dudarev OV, Eglinton TI, Andersson A, Shakhova N, Charkin A, Heim B, Gustafsson Ö (2014) Preferential burial of permafrost-derived organic carbon in Siberian-Arctic shelf waters. J Geophys Res Oceans 119(12):8410–8421',
    'journal-title': 'J Geophys Res Oceans'},
   {'issue': '23',
    'key': '5_CR269',
    'doi-asserted-by': 'publisher',
    'first-page': '7129',
    'DOI': '10.5194/bg-12-7129-2015',
    'volume': '12',
    'author': 'JE Vonk',
    'year': '2015',
    'unstructured': 'Vonk JE, Tank SE, Bowden WB, Laurion I, Vincent WF, Alekseychik P, Amyot M, Billet M, Canario J, Cory RM (2015) Reviews and syntheses: effects of permafrost thaw on Arctic aquatic ecosystems. Biogeosciences 12(23):7129–7167',
    'journal-title': 'Biogeosciences'},
   {'issue': '2',
    'key': '5_CR270',
    'doi-asserted-by': 'publisher',
    'first-page': '103',
    'DOI': '10.1002/ppp.452',
    'volume': '14',
    'author': 'D Walker',
    'year': '2003',
    'unstructured': 'Walker D, Jia G, Epstein H, Raynolds M, Chapin Iii F, Copass C, Hinzman L, Knudson J, Maier H, Michaelson G (2003) Vegetation-soil-thaw-depth relationships along a low-arctic bioclimate gradient, Alaska: synthesis of information from the ATLAS studies. Permafr Periglac Process 14(2):103–123',
    'journal-title': 'Permafr Periglac Process'},
   {'issue': '6',
    'key': '5_CR271',
    'doi-asserted-by': 'publisher',
    'first-page': '419',
    'DOI': '10.1038/ngeo1480',
    'volume': '5',
    'author': 'KM Walter Anthony',
    'year': '2012',
    'unstructured': 'Walter Anthony KM, Anthony P, Grosse G, Chanton J (2012) Geologic methane seeps along boundaries of Arctic permafrost thaw and melting glaciers. Nat Geosci 5(6):419–426. \nhttps://doi.org/10.1038/ngeo1480',
    'journal-title': 'Nat Geosci'},
   {'issue': '7510',
    'key': '5_CR272',
    'doi-asserted-by': 'publisher',
    'first-page': '452',
    'DOI': '10.1038/nature13560',
    'volume': '511',
    'author': 'KM Walter Anthony',
    'year': '2014',
    'unstructured': 'Walter Anthony KM, Zimov SA, Grosse G, Jones MC, Anthony PM, Chapin FS 3rd, Finlay JC, Mack MC, Davydov S, Frenzel P, Frolking S (2014) A shift of thermokarst lakes from carbon sources to sinks during the Holocene epoch. Nature 511(7510):452–456. \nhttps://doi.org/10.1038/nature13560',
    'journal-title': 'Nature'},
   {'key': '5_CR273',
    'doi-asserted-by': 'publisher',
    'first-page': '679',
    'DOI': '10.1038/ngeo2795',
    'volume': '9',
    'author': 'K Walter Anthony',
    'year': '2016',
    'unstructured': 'Walter Anthony K, Daanen R, Anthony P, Schneider von Deimling T, Ping C-L, Chanton JP, Grosse G (2016) Methane emissions proportional to permafrost carbon thawed in Arctic lakes since the 1950s. Nat Geosci 9:679–682',
    'journal-title': 'Nat Geosci'},
   {'issue': '1',
    'key': '5_CR274',
    'doi-asserted-by': 'publisher',
    'first-page': '3262',
    'DOI': '10.1038/s41467-018-05738-9',
    'volume': '9',
    'author': 'K Walter Anthony',
    'year': '2018',
    'unstructured': 'Walter Anthony K, von Deimling TS, Nitze I, Frolking S, Emond A, Daanen R, Anthony P, Lindgren P, Jones B, Grosse G (2018) 21st-century modeled permafrost carbon emissions accelerated by abrupt thaw beneath lakes. Nat Commun 9(1):3262',
    'journal-title': 'Nat Commun'},
   {'issue': '7107',
    'key': '5_CR275',
    'doi-asserted-by': 'publisher',
    'first-page': '71',
    'DOI': '10.1038/nature05040',
    'volume': '443',
    'author': 'KM Walter',
    'year': '2006',
    'unstructured': 'Walter KM, Zimov SA, Chanton JP, Verbyla D, Chapin FS 3rd (2006) Methane bubbling from Siberian thaw lakes as a positive feedback to climate warming. Nature 443(7107):71–75. \nhttps://doi.org/10.1038/nature05040',
    'journal-title': 'Nature'},
   {'issue': '1856',
    'key': '5_CR276',
    'doi-asserted-by': 'publisher',
    'first-page': '1657',
    'DOI': '10.1098/rsta.2007.2036',
    'volume': '365',
    'author': 'Katey M Walter',
    'year': '2007',
    'unstructured': 'Walter KM, Smith LC, Chapin FS, 3rd (2007a) methane bubbling from northern lakes: present and future contributions to the global methane budget. Philos Trans A Math Phys Eng Sci 365 (1856):1657–1676. doi:\nhttps://doi.org/10.1098/rsta.2007.2036',
    'journal-title': 'Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences'},
   {'issue': '5850',
    'key': '5_CR277',
    'doi-asserted-by': 'publisher',
    'first-page': '633',
    'DOI': '10.1126/science.1142924',
    'volume': '318',
    'author': 'KM Walter',
    'year': '2007',
    'unstructured': 'Walter KM, Edwards ME, Grosse G, Zimov SA, Chapin FS 3rd (2007b) Thermokarst lakes as a source of atmospheric CH4 during the last deglaciation. Science 318(5850):633–636. \nhttps://doi.org/10.1126/science.1142924',
    'journal-title': 'Science'},
   {'key': '5_CR278',
    'unstructured': 'Walter K, Chanton J, Chapin F, Schuur E, Zimov S (2008) Methane production and bubble emissions from arctic lakes: isotopic implications for source pathways and ages. J Geophys Res Biogeosci 113(G3):G00A08. \nhttps://doi.org/10.1029/2007JG000569',
    'DOI': '10.1029/2007JG000569',
    'doi-asserted-by': 'publisher'},
   {'issue': '6',
    'key': '5_CR279',
    'doi-asserted-by': 'publisher',
    'first-page': '0',
    'DOI': '10.2136/vzj2016.01.0010',
    'volume': '15',
    'author': 'Michelle A. Walvoord',
    'year': '2016',
    'unstructured': 'Walvoord MA, Kurylyk BL (2016) Hydrologic impacts of thawing permafrost\xa0– a review. Vadose Zone J 15 (6):0. doi:\nhttps://doi.org/10.2136/vzj2016.01.0010',
    'journal-title': 'Vadose Zone Journal'},
   {'issue': '12',
    'key': '5_CR280',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2007GL030216',
    'volume': '34',
    'author': 'MA Walvoord',
    'year': '2007',
    'unstructured': 'Walvoord MA, Striegl RG (2007) Increased groundwater to stream discharge from permafrost thawing in the Yukon River basin: potential impacts on lateral export of carbon and nitrogen. Geophys Res Lett 34(12):L12402. \nhttps://doi.org/10.1029/2007GL030216',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '5',
    'key': '5_CR281',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/11/5/055003',
    'volume': '11',
    'author': 'P Wang',
    'year': '2016',
    'unstructured': 'Wang P, Heijmans MM, Mommer L, van Ruijven J, Maximov TC, Berendse F (2016) Belowground plant biomass allocation in tundra ecosystems and its relationship with temperature. Environ Res Lett 11(5):055003',
    'journal-title': 'Environ Res Lett'},
   {'issue': '4',
    'key': '5_CR282',
    'doi-asserted-by': 'publisher',
    'first-page': 'n/a-n/a',
    'DOI': '10.1029/2012GB004342',
    'volume': '26',
    'author': 'K. P. Wickland',
    'year': '2012',
    'unstructured': 'Wickland K, Aiken GR, Butler K, Dornblaser MM, Spencer RGM, Striegl RG (2012) Biodegradability of dissolved organic carbon in the Yukon River and its tributaries: Seasonality and importance of inorganic nitrogen. Glob Biogeochem Cycles 26(4):GB0E03. \nhttps://doi.org/10.1029/2012GB004342',
    'journal-title': 'Global Biogeochemical Cycles'},
   {'issue': '6',
    'key': '5_CR283',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1088/1748-9326/aac4ad',
    'volume': '13',
    'author': 'KP Wickland',
    'year': '2018',
    'unstructured': 'Wickland KP, Waldrop MP, Aiken GR, Koch JC, Jorgenson MT, Striegl RG (2018) Dissolved organic carbon and nitrogen release from boreal Holocene permafrost and seasonally frozen soils of Alaska. Environ Res Lett 13(6):065011',
    'journal-title': 'Environ Res Lett'},
   {'issue': '2',
    'key': '5_CR284',
    'doi-asserted-by': 'publisher',
    'first-page': '555',
    'DOI': '10.1002/2013GL058510',
    'volume': '41',
    'author': 'M Wik',
    'year': '2014',
    'unstructured': 'Wik M, Thornton BF, Bastviken D, MacIntyre S, Varner RK, Crill PM (2014) Energy input is primary controller of methane bubbling in subarctic lakes. Geophys Res Lett 41(2):555–560',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '2',
    'key': '5_CR285',
    'doi-asserted-by': 'publisher',
    'first-page': '99',
    'DOI': '10.1038/ngeo2578',
    'volume': '9',
    'author': 'M Wik',
    'year': '2016',
    'unstructured': 'Wik M, Varner RK, Anthony KW, MacIntyre S, Bastviken D (2016) Climate-sensitive northern lakes and ponds are critical components of methane release. Nat Geosci 9(2):99',
    'journal-title': 'Nat Geosci'},
   {'issue': '8',
    'key': '5_CR286',
    'doi-asserted-by': 'publisher',
    'first-page': '2399',
    'DOI': '10.1029/2017JG004298',
    'volume': '123',
    'author': 'M Wik',
    'year': '2018',
    'unstructured': 'Wik M, Johnson JE, Crill PM, DeStasio JP, Erickson L, Halloran MJ, Fahnestock MF, Crawford MK, Phillips SC, Varner RK (2018) Sediment characteristics and methane ebullition in three subarctic lakes. J Geophys Res Biogeo 123(8):2399–2411',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '21',
    'key': '5_CR287',
    'doi-asserted-by': 'publisher',
    'first-page': '10280',
    'DOI': '10.1073/pnas.1811797116',
    'volume': '116',
    'author': 'B Wild',
    'year': '2019',
    'unstructured': 'Wild B, Andersson A, Bröder L, Vonk J, Hugelius G, McClelland JW, Song W, Raymond PA, Gustafsson Ö (2019) Rivers across the Siberian Arctic unearth the patterns of carbon release from thawing permafrost. Proc Natl Acad Sci 116(21):10280–10285',
    'journal-title': 'Proc Natl Acad Sci'},
   {'key': '5_CR288',
    'unstructured': 'Williams PJ, Smith MW (1991) The frozen earth. Fundamentals of geocryology. Cambridge University Press, Cambridge, 306 p'},
   {'key': '5_CR289',
    'unstructured': 'Woo M-K (2012) Permafrost hydrology. Springer, 563 p',
    'DOI': '10.1007/978-3-642-23462-0',
    'doi-asserted-by': 'crossref'},
   {'issue': '3',
    'key': '5_CR290',
    'doi-asserted-by': 'publisher',
    'first-page': '650',
    'DOI': '10.1002/2015JG003133',
    'volume': '121',
    'author': 'FJ Wrona',
    'year': '2016',
    'unstructured': 'Wrona FJ, Johansson M, Culp JM, Jenkins A, Mård J, Myers-Smith IH, Prowse TD, Vincent WF, Wookey PA (2016) Transitions in Arctic ecosystems: ecological implications of a changing hydrological regime. J Geophys Res Biogeo 121(3):650–674',
    'journal-title': 'J Geophys Res Biogeo'},
   {'issue': '2',
    'key': '5_CR291',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2004GL021570',
    'volume': '32',
    'author': 'P Wu',
    'year': '2005',
    'unstructured': 'Wu P, Wood R, Stott P (2005) Human influence on increasing Arctic river discharges. Geophys Res Lett 32(2):L02703. \nhttps://doi.org/10.1029/2004GL021570',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '2',
    'key': '5_CR292',
    'doi-asserted-by': 'publisher',
    'first-page': '286',
    'DOI': '10.1175/1525-7541(2004)005<0286:TIOCCO>2.0.CO;2',
    'volume': '5',
    'author': 'H Ye',
    'year': '2004',
    'unstructured': 'Ye H, Ladochy S, Yang D, Zhang T, Zhang X, Ellison M (2004) The impact of climatic conditions on seasonal river discharges in Siberia. J Hydrometeorol 5(2):286–295',
    'journal-title': 'J Hydrometeorol'},
   {'issue': '1',
    'key': '5_CR293',
    'doi-asserted-by': 'publisher',
    'first-page': '145',
    'DOI': '10.5194/bg-15-5287-2018',
    'volume': '12',
    'author': 'Y Yi',
    'year': '2018',
    'unstructured': 'Yi Y, Kimball JS, Chen R, Moghaddam M, Reichle RH, Mishra U, Zona D, Oechel WC (2018) Characterizing permafrost active layer dynamics and sensitivity to landscape spatial heterogeneity in Alaska. Cryosphere 12(1):145–161. \nhttps://doi.org/10.5194/bg-15-5287-2018',
    'journal-title': 'Cryosphere'},
   {'issue': '2',
    'key': '5_CR294',
    'doi-asserted-by': 'publisher',
    'first-page': '151',
    'DOI': '10.1002/ppp.451',
    'volume': '14',
    'author': 'K Yoshikawa',
    'year': '2003',
    'unstructured': 'Yoshikawa K, Hinzman LD (2003) Shrinking thermokarst ponds and groundwater dynamics in discontinuous permafrost near council, Alaska. Permafr Periglac Process 14(2):151–160',
    'journal-title': 'Permafr Periglac Process'},
   {'key': '5_CR295',
    'doi-asserted-by': 'publisher',
    'first-page': '1290',
    'DOI': '10.1016/j.scitotenv.2017.09.059',
    'volume': '615',
    'author': 'EA Zakharova',
    'year': '2018',
    'unstructured': 'Zakharova EA, Kouraev AV, Stephane G, Franck G, Desyatkin RV, Desyatkin AR (2018) Recent dynamics of hydro-ecosystems in thermokarst depressions in Central Siberia from satellite and in situ observations: importance for agriculture and human life. Sci Total Environ 615:1290–1304',
    'journal-title': 'Sci Total Environ'},
   {'issue': 'D16',
    'key': '5_CR296',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2004JD005642',
    'volume': '110',
    'author': 'T Zhang',
    'year': '2005',
    'unstructured': 'Zhang T, Frauenfeld OW, Serreze MC, Etringer A, Oelke C, McCreight J, Barry RG, Gilichinsky D, Yang D, Ye H (2005) Spatial and temporal variability in active layer thickness over the Russian Arctic drainage basin. J Geophys Res Atmos 110(D16):D16101. \nhttps://doi.org/10.1029/2004JD005642',
    'journal-title': 'J Geophys Res Atmos'},
   {'key': '5_CR297',
    'doi-asserted-by': 'publisher',
    'first-page': '7102',
    'DOI': '10.1029/2018GL077830',
    'volume': '45',
    'author': 'W Zhang',
    'year': '2018',
    'unstructured': 'Zhang W, Miller P, Jansson C, Samuelsson P, Mao J, Smith B (2018) Self-amplifying feedbacks accelerate greening and warming of the Arctic. Geophys Res Lett 45:7102–7111. \nhttps://doi.org/10.1029/2018GL077830',
    'journal-title': 'Geophys Res Lett'},
   {'issue': '3',
    'key': '5_CR298',
    'doi-asserted-by': 'publisher',
    'first-page': '197',
    'DOI': '10.14430/arctic1344',
    'volume': '46',
    'author': 'S Zimov',
    'year': '1993',
    'unstructured': 'Zimov S, Semiletov I, Daviodov S, Voropaev YV, Prosyannikov S, Wong C, Chan Y-H (1993) Wintertime CO2 emission from soils of Northeastern Siberia. Arctic 46(3):197–204',
    'journal-title': 'Arctic'},
   {'issue': '5327',
    'key': '5_CR299',
    'doi-asserted-by': 'publisher',
    'first-page': '800',
    'DOI': '10.1126/science.277.5327.800',
    'volume': '277',
    'author': 'S Zimov',
    'year': '1997',
    'unstructured': 'Zimov S, Voropaev YV, Semiletov I, Davidov S, Prosiannikov S, Chapin FS, Chapin M, Trumbore S, Tyler S (1997) North Siberian lakes: a methane source fueled by Pleistocene carbon. Science 277(5327):800–802',
    'journal-title': 'Science'},
   {'key': '5_CR300',
    'unstructured': 'Zimov SA, Davydov SP, Zimova GM, Davydova AI, Schuur EAG, Dutta K, Chapin FS (2006) Permafrost carbon: stock and decomposability of a globally significant carbon pool. Geophys Res Lett 33(20). \nhttps://doi.org/10.1029/2006gl027484',
    'DOI': '10.1029/2006gl027484',
    'doi-asserted-by': 'publisher'},
   {'issue': '2–3',
    'key': '5_CR301',
    'doi-asserted-by': 'publisher',
    'first-page': '125',
    'DOI': '10.1111/j.1574-6968.1990.tb04090.x',
    'volume': '6',
    'author': 'SH Zinder',
    'year': '1990',
    'unstructured': 'Zinder SH (1990) Conversion of acetic acid to methane by thermophiles. FEMS Microbiol Rev 6(2–3):125–137',
    'journal-title': 'FEMS Microbiol Rev'},
   {'issue': '2',
    'key': '5_CR302',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2009GB003487',
    'volume': '23',
    'author': 'D Zona',
    'year': '2009',
    'unstructured': 'Zona D, Oechel W, Kochendorfer J, Paw U, Salyuk A, Olivas P, Oberbauer S, Lipson D (2009) Methane fluxes during the initiation of a large-scale water table manipulation experiment in the Alaskan Arctic tundra. Glob Biogeochem Cycles 23(2):GB2013. \nhttps://doi.org/10.1029/2009GB003487',
    'journal-title': 'Glob Biogeochem Cycles'},
   {'issue': '2',
    'key': '5_CR303',
    'doi-asserted-by': 'publisher',
    'DOI': '10.1029/2011GB004037',
    'volume': '26',
    'author': 'D Zona',
    'year': '2012',
    'unstructured': 'Zona D, Lipson DA, Paw U, Kyaw T, Oberbauer SF, Olivas P, Gioli B, Oechel WC (2012) Increased CO2 loss from vegetated drained lake tundra ecosystems due to flooding. Glob Biogeochem Cycles 26(2):GB2004. \nhttps://doi.org/10.1029/2011GB004037',
    'journal-title': 'Glob Biogeochem Cycles'},
   {'issue': '1',
    'key': '5_CR304',
    'doi-asserted-by': 'publisher',
    'first-page': '40',
    'DOI': '10.1073/pnas.1516017113',
    'volume': '113',
    'author': 'D Zona',
    'year': '2016',
    'unstructured': 'Zona D, Gioli B, Commane R, Lindaas J, Wofsy SC, Miller CE, Dinardo SJ, Dengel S, Sweeney C, Karion A, Chang RY, Henderson JM, Murphy PC, Goodrich JP, Moreaux V, Liljedahl A, Watts JD, Kimball JS, Lipson DA, Oechel WC (2016) Cold season emissions dominate the Arctic tundra methane budget. Proc Natl Acad Sci U S A 113(1):40–45. \nhttps://doi.org/10.1073/pnas.1516017113',
    'journal-title': 'Proc Natl Acad Sci U S A'}],
  'container-title': ['Thawing Permafrost'],
  'link': [{'URL': 'http://link.springer.com/content/pdf/10.1007/978-3-030-31379-1_5',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2020, 1, 1]],
   'date-time': '2020-01-01T12:29:28Z',
   'timestamp': 1577881768000},
  'score': 16.117552,
  'issued': {'date-parts': [[2020]]},
  'ISBN': ['9783030313784', '9783030313791'],
  'references-count': 308,
  'URL': 'http://dx.doi.org/10.1007/978-3-030-31379-1_5',
  'relation': {'cites': []},
  'assertion': [{'value': '2 January 2020',
    'order': 1,
    'name': 'first_online',
    'label': 'First Online',
    'group': {'name': 'ChapterHistory', 'label': 'Chapter History'}}]},
 {'indexed': {'date-parts': [[2020, 4, 10]],
   'date-time': '2020-04-10T01:46:33Z',
   'timestamp': 1586483193891},
  'reference-count': 0,
  'publisher': 'Wiley',
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'DOI': '10.1002/(issn)1099-1530',
  'type': 'journal',
  'created': {'date-parts': [[2006, 3, 21]],
   'date-time': '2006-03-21T18:16:41Z',
   'timestamp': 1142965001000},
  'source': 'Crossref',
  'is-referenced-by-count': 30,
  'title': ['Permafrost and Periglacial Processes'],
  'prefix': '10.1002',
  'member': '311',
  'language': 'en',
  'link': [{'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/(ISSN)1099-1530',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2018, 8, 4]],
   'date-time': '2018-08-04T15:54:52Z',
   'timestamp': 1533398092000},
  'score': 16.092146,
  'short-title': ['Permafrost Periglac. Process.'],
  'issued': {'date-parts': [[None]]},
  'references-count': 0,
  'URL': 'http://dx.doi.org/10.1002/(issn)1099-1530',
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 4, 8]],
   'date-time': '2020-04-08T01:20:09Z',
   'timestamp': 1586308809436},
  'reference-count': 47,
  'publisher': 'Wiley',
  'issue': '4',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 4626,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost Periglac. Process.'],
  'published-print': {'date-parts': [[2003, 10]]},
  'DOI': '10.1002/ppp.464',
  'type': 'journal-article',
  'created': {'date-parts': [[2003, 12, 19]],
   'date-time': '2003-12-19T08:00:40Z',
   'timestamp': 1071820840000},
  'page': '331-342',
  'source': 'Crossref',
  'is-referenced-by-count': 36,
  'title': ['Establishing long-term permafrost observatories for active-layer and permafrost investigations in Alaska: 1977-2002'],
  'prefix': '10.1002',
  'volume': '14',
  'author': [{'given': 'T. E.',
    'family': 'Osterkamp',
    'sequence': 'first',
    'affiliation': []}],
  'member': '311',
  'published-online': {'date-parts': [[2003]]},
  'reference': [{'key': '10.1002/ppp.464-BIB1',
    'author': 'Brown',
    'year': '1982',
    'unstructured': '1982. Influence of short-term climatic fluctuations on permafrost terrain. In Carbon Dioxide Effects Research and Assessment Program, DOE/EV10019-02, v. 2, pt. 3; US Department of Energy: Washington, DC.',
    'volume-title': 'Carbon Dioxide Effects Research and Assessment Program'},
   {'key': '10.1002/ppp.464-BIB2',
    'author': 'Clow',
    'year': '1991',
    'unstructured': '1991. Investigation of borehole temperature data for recent climate changes: examples from Alaskan Arctic and Antarctica. In Proceedings of the International Conference on the Role of Polar Regions in Global Change, June 11-15, 1990, vol. 2. Geophysical Institute, University of Alaska: Fairbanks, AK; 533.'},
   {'key': '10.1002/ppp.464-BIB3',
    'author': 'Esch',
    'volume': '4',
    'first-page': '38',
    'year': '1990',
    'journal-title': 'Journal of Cold Regions Engineering',
    'DOI': '10.1061/(ASCE)0887-381X(1990)4:1(6)',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB4',
    'author': 'Gosink',
    'first-page': '576',
    'year': '1983',
    'unstructured': '1983. Evidence for recent permafrost warming in Alaska. In Final Proceedings of the 4th International Conference on Permafrost, Fairbanks, AK, July 18-23, 1983. National Academy of Sciences Press: Washington, DC; 576.',
    'volume-title': 'Final Proceedings of the 4th International Conference on Permafrost, Fairbanks, AK, July 18-23'},
   {'key': '10.1002/ppp.464-BIB5',
    'author': 'Jorgenson',
    'volume': '48',
    'first-page': '551',
    'year': '2000',
    'journal-title': 'Climatic Change',
    'DOI': '10.1023/A:1005667424292',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB6',
    'author': 'Kawasaki',
    'year': '1985',
    'unstructured': '1985. Electromagnetic induction measurements in permafrost terrain for detecting ground ice and ice-rich soils. UAG R-300. Geophysical Institute, University of Alaska: Fairbanks, AK.'},
   {'key': '10.1002/ppp.464-BIB7',
    'author': 'Kwong',
    'volume': '26',
    'first-page': '399',
    'year': '1994',
    'journal-title': 'Climatic Change',
    'DOI': '10.1007/BF01094404',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB8',
    'author': 'Lachenbruch',
    'volume': '68',
    'first-page': '1515',
    'year': '1957a',
    'journal-title': 'Bulletin of the Geological Society of America',
    'DOI': '10.1130/0016-7606(1957)68[1515:TEOTOO]2.0.CO;2',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB9',
    'author': 'Lachenbruch',
    'year': '1957b',
    'unstructured': '1957b. Three-dimensional heat conduction in permafrost beneath heated buildings. Bulletin 1052-B. U.S. Geological Survey, Menlo Park, CA.'},
   {'key': '10.1002/ppp.464-BIB10',
    'author': 'Lachenbruch',
    'year': '1994',
    'unstructured': '1994. Permafrost, the active layer, and changing climate. Open-File Report 94-694, 43 p., U.S. Geological Survey, Menlo Park, CA.'},
   {'key': '10.1002/ppp.464-BIB11',
    'author': 'Lachenbruch',
    'volume': '87',
    'first-page': '9301',
    'year': '1982',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/JB087iB11p09301',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB12',
    'author': 'Lachenbruch',
    'volume': '234',
    'first-page': '689',
    'year': '1986',
    'journal-title': 'Science',
    'DOI': '10.1126/science.234.4777.689',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB13',
    'author': 'Lachenbruch',
    'first-page': '645',
    'year': '1988',
    'journal-title': 'Professional Paper'},
   {'key': '10.1002/ppp.464-BIB14',
    'author': 'Mackay',
    'volume': '20',
    'first-page': '120',
    'year': '1983',
    'journal-title': 'Canadian Journal of Earth Sciences',
    'DOI': '10.1139/e83-012',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB15',
    'author': 'Muller',
    'year': '1947',
    'unstructured': '1947. Permafrost or Permanently Frozen Ground and Related Engineering Problems. U.S. Engineers Office, Strategic Engineering Study, Special Report 62.'},
   {'key': '10.1002/ppp.464-BIB16',
    'author': 'Osterkamp',
    'first-page': '106',
    'year': '1982',
    'unstructured': '1982. Potential impact of a warmer climate on permafrost in Alaska. In Proceedings of the Conference on the Potential Effects of Carbon Dioxide Induced Climatic Change in Alaska, April 7-8, 1982, Miscellaneous Publication 83-1, (ed.). School of Agriculture and Land Resources Management, University of Alaska: Fairbanks, AK; 106-113.',
    'volume-title': 'Proceedings of the Conference on the Potential Effects of Carbon Dioxide Induced Climatic Change in Alaska, April 7-8, 1982, Miscellaneous Publication 83-1'},
   {'key': '10.1002/ppp.464-BIB17',
    'author': 'Osterkamp',
    'first-page': '145',
    'year': '1983',
    'unstructured': '1983. Response of Alaskan permafrost to climate. In Final Proceedings of the 4th International Conference on Permafrost, July 18-23, 1983, Fairbanks, AK. National Academy of Sciences Press: Washington, DC; 145-152.',
    'volume-title': 'Final Proceedings of the 4th International Conference on Permafrost, July 18-23, 1983, Fairbanks, AK'},
   {'key': '10.1002/ppp.464-BIB18',
    'author': 'Osterkamp',
    'year': '1985',
    'unstructured': '1985. Temperature Measurements in Permafrost. Report No. FHWA-AK-RD-Alaska Department of Transportation and Public Facilities, Fairbanks, AK.'},
   {'key': '10.1002/ppp.464-BIB19',
    'author': 'Osterkamp',
    'year': '1988',
    'unstructured': "1988. The ?health? of Alaska's permafrost. In Proceedings of the Alaska Scientific Conference, AAAS-Arctic Div., Oct. 6-8, 1988. University of Alaska: Fairbanks, AK.",
    'volume-title': 'Proceedings of the Alaska Scientific Conference, AAAS-Arctic Div., Oct. 6-8, 1988'},
   {'key': '10.1002/ppp.464-BIB20',
    'author': 'Osterkamp',
    'volume': '75',
    'first-page': '85',
    'year': '1994',
    'journal-title': 'EOS, Transactions of the American Geophysical Union'},
   {'key': '10.1002/ppp.464-BIB21',
    'author': 'Osterkamp',
    'volume': '76',
    'first-page': 'f244',
    'year': '1995',
    'journal-title': 'EOS, Transactions of the American Geophysical Union',
    'DOI': '10.1029/95EO00141',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB22',
    'author': 'Osterkamp',
    'first-page': '2902',
    'year': '2001',
    'unstructured': '2001. Subsea Permafrost. Chapter in Encyclopedia of Ocean Sciences, and (eds), Academic Press: London; 2902-2912.',
    'volume-title': 'Encyclopedia of Ocean Sciences',
    'DOI': '10.1006/rwos.2001.0008',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB23',
    'author': 'Osterkamp',
    'first-page': '863',
    'year': '2003',
    'unstructured': '2003. A thermal history of permafrost in Alaska. In Proceedings of the 8th International Conference on Permafrost, July 21-25, 2003, Zurich, Switzerland. Balkema Publishers: Lisse; 863-868.',
    'volume-title': 'Proceedings of the 8th International Conference on Permafrost, July 21-25, 2003, Zurich, Switzerland'},
   {'key': '10.1002/ppp.464-BIB24',
    'first-page': '497',
    'volume-title': 'Environmental Assessment of the Alaskan Continental Shelf, Annual Reports',
    'volume': '4',
    'author': 'Osterkamp',
    'year': '1980',
    'unstructured': '1980. Subsea permafrost: probing, thermal regime and data analysis. In Environmental Assessment of the Alaskan Continental Shelf, Annual Reports, Vol. 4. National Oceans and Atmospheres Administration, Environmental Research Laboratory: Boulder, CO; 497-677.'},
   {'key': '10.1002/ppp.464-BIB25',
    'author': 'Osterkamp',
    'first-page': '238',
    'year': '1982',
    'unstructured': '1982. Temperature measurements in subsea permafrost off the coast of Alaska. In Proceedings of the 4th Canadian Permafrost Conference, March 2-6, 1981, Roger J.E. Brown Memorial Volume, (ed.). Calgary, Alberta, National Research Council, Ottawa, Canada; 238-248.',
    'volume-title': 'Proceedings of the 4th Canadian Permafrost Conference, March 2-6, 1981, Roger J.E. Brown Memorial Volume'},
   {'key': '10.1002/ppp.464-BIB26',
    'author': 'Osterkamp',
    'volume': '4',
    'first-page': '38',
    'year': '1990',
    'journal-title': 'Journal of Cold Regions Engineering',
    'DOI': '10.1061/(ASCE)0887-381X(1990)4:1(38)',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB27',
    'author': 'Osterkamp',
    'volume': '5',
    'first-page': '13',
    'year': '1981',
    'journal-title': 'Cold Regions Science and Technology',
    'DOI': '10.1016/0165-232X(81)90037-9',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB28',
    'author': 'Osterkamp',
    'volume': '10',
    'first-page': '17',
    'year': '1999',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/(SICI)1099-1530(199901/03)10:1<17::AID-PPP303>3.0.CO;2-4',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB29',
    'author': 'Osterkamp',
    'volume': '11',
    'first-page': '99',
    'year': '1985',
    'journal-title': 'Cold Regions Science and Technology',
    'DOI': '10.1016/0165-232X(85)90010-2',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB30',
    'author': 'Osterkamp',
    'volume': '32',
    'first-page': '303',
    'year': '2000',
    'journal-title': 'Arctic, Antarctic, and Alpine Research',
    'DOI': '10.2307/1552529',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB31',
    'author': 'Pavlov',
    'volume': '5',
    'first-page': '101',
    'year': '1994',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.3430050204',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB32',
    'author': 'Petersen',
    'year': '1984',
    'unstructured': '1984. Well logging in permafrost. Paper presented at the Workshop on Permafrost Geophysics, Golden, Colorado, October 23-24, 1984, extended abstract in Special Report 85-5, U.S. Army CRREL, Hanover, NH.'},
   {'key': '10.1002/ppp.464-BIB33',
    'author': 'Péwé',
    'year': '1982',
    'unstructured': '1982. Geologic hazards of the Fairbanks area, Alaska. Special Report 15. Division of Geological and Geophysical Surveys, College, Alaska.'},
   {'key': '10.1002/ppp.464-BIB34',
    'author': 'Ping',
    'volume': '103',
    'first-page': '28',
    'year': '1998',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/98JD02024',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB35',
    'author': 'Romanovsky',
    'volume': '6',
    'first-page': '313',
    'year': '1995',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.3430060404',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB36',
    'author': 'Romanovsky',
    'volume': '11',
    'first-page': '219',
    'year': '2000',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/1099-1530(200007/09)11:3<219::AID-PPP352>3.0.CO;2-7',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB37',
    'author': 'Romanovsky',
    'first-page': '989',
    'year': '2003',
    'unstructured': '2003. Spatial and temporal variations in the active layer and near-surface permafrost temperatures in Northern Alaska. In Proceedings of the 8th International Conference on Permafrost, July 21-25, 2003, Zurich, Switzerland. Balkema Publishers: Lisse; 989-994.',
    'volume-title': 'Proceedings of the 8th International Conference on Permafrost, July 21-25, 2003, Zurich, Switzerland'},
   {'key': '10.1002/ppp.464-BIB38',
    'author': 'Smith',
    'year': '2001',
    'unstructured': '2001. Response of the active layer and permafrost temperatures to warming during 1998 in the Mackenzie Delta, Northwest Territories and at Canadian Forces Station Alert and Baker Lake, Nunavut. Geological Survey of Canada, Current Research, 2001-E5.'},
   {'key': '10.1002/ppp.464-BIB39',
    'author': 'Steinhart',
    'volume': '15',
    'first-page': '497',
    'year': '1968',
    'journal-title': 'Deep Sea Research'},
   {'key': '10.1002/ppp.464-BIB40',
    'author': 'Walker',
    'year': '2003',
    'journal-title': 'Journal of Geophysical Research-Atmospheres'},
   {'key': '10.1002/ppp.464-BIB41',
    'author': 'Walker',
    'year': '1988',
    'unstructured': '1988. Transient electromagnetics for permafrost. Ph.D. thesis. University of Alaska, Fairbanks, AK.'},
   {'key': '10.1002/ppp.464-BIB42',
    'author': 'Wang',
    'volume': '5',
    'first-page': '87',
    'year': '1994',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.3430050203',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB43',
    'author': 'Zhang',
    'volume': '73',
    'year': '1992',
    'journal-title': 'EOS, Transactions of the American Geophysical Union'},
   {'key': '10.1002/ppp.464-BIB44',
    'author': 'Zhang',
    'volume': '74',
    'first-page': '89',
    'year': '1993',
    'journal-title': 'EOS, Transactions of the American Geophysical Union'},
   {'key': '10.1002/ppp.464-BIB45',
    'author': 'Zhang',
    'volume': '23',
    'first-page': '333',
    'year': '1995',
    'journal-title': 'Cold Regions Science and Technology',
    'DOI': '10.1016/0165-232X(94)00021-O',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB46',
    'author': 'Zhang',
    'volume': '32',
    'first-page': '2075',
    'year': '1996',
    'journal-title': 'Water Resources Research',
    'DOI': '10.1029/96WR00996',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.464-BIB47',
    'author': 'Zhang',
    'volume': '8',
    'first-page': '45',
    'year': '1997',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/(SICI)1099-1530(199701)8:1<45::AID-PPP240>3.0.CO;2-K',
    'doi-asserted-by': 'crossref'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.464',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2018, 3, 30]],
   'date-time': '2018-03-30T18:35:48Z',
   'timestamp': 1522434948000},
  'score': 15.395377,
  'issued': {'date-parts': [[2003]]},
  'references-count': 47,
  'journal-issue': {'published-print': {'date-parts': [[2003, 10]]},
   'issue': '4'},
  'URL': 'http://dx.doi.org/10.1002/ppp.464',
  'relation': {'cites': []},
  'ISSN': ['1045-6740', '1099-1530'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'},
   {'value': '1099-1530', 'type': 'electronic'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 4, 15]],
   'date-time': '2020-04-15T21:57:19Z',
   'timestamp': 1586987839999},
  'reference-count': 2,
  'publisher': 'Wiley',
  'issue': '4',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 1796,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost Periglac. Process.'],
  'published-print': {'date-parts': [[2010, 10]]},
  'DOI': '10.1002/ppp.711',
  'type': 'journal-article',
  'created': {'date-parts': [[2010, 12, 30]],
   'date-time': '2010-12-30T05:33:57Z',
   'timestamp': 1293687237000},
  'page': '366-369',
  'source': 'Crossref',
  'is-referenced-by-count': 2,
  'title': ['Report from the international permafrost association: Third european conference on permafrost (EUCOP III) in Longyearbyen, Svalbard'],
  'prefix': '10.1002',
  'volume': '21',
  'author': [{'given': 'Hanne H.',
    'family': 'Christiansen',
    'sequence': 'first',
    'affiliation': []},
   {'given': 'Bernd',
    'family': 'Etzelmüller',
    'sequence': 'additional',
    'affiliation': []}],
  'member': '311',
  'published-online': {'date-parts': [[2010, 12, 29]]},
  'reference': [{'key': '10.1002/ppp.711-BIB1|cit1',
    'unstructured': 'Berthling I 2010 64'},
   {'key': '10.1002/ppp.711-BIB2|cit2',
    'unstructured': 'Mertes JR Christiansen HH Etzelmüller B 2010 Thermal State of Frozen Ground in a Changing Climate during the IPY'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.711',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2017, 3, 30]],
   'date-time': '2017-03-30T12:16:05Z',
   'timestamp': 1490876165000},
  'score': 15.395377,
  'issued': {'date-parts': [[2010, 10]]},
  'references-count': 2,
  'journal-issue': {'published-print': {'date-parts': [[2010, 10]]},
   'issue': '4'},
  'URL': 'http://dx.doi.org/10.1002/ppp.711',
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 4, 13]],
   'date-time': '2020-04-13T11:23:23Z',
   'timestamp': 1586777003858},
  'reference-count': 4,
  'publisher': 'Wiley',
  'issue': '4',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 2526,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost Periglac. Process.'],
  'published-print': {'date-parts': [[2008, 10]]},
  'DOI': '10.1002/ppp.632',
  'type': 'journal-article',
  'created': {'date-parts': [[2008, 11, 27]],
   'date-time': '2008-11-27T16:09:27Z',
   'timestamp': 1227802167000},
  'page': '393-397',
  'source': 'Crossref',
  'is-referenced-by-count': 1,
  'title': ['Report from the International Permafrost Association: Ninth International Conference on Permafrost and IPA council meetings'],
  'prefix': '10.1002',
  'volume': '19',
  'author': [{'given': 'Jerry',
    'family': 'Brown',
    'sequence': 'first',
    'affiliation': []},
   {'given': 'Hanne H.',
    'family': 'Christiansen',
    'sequence': 'additional',
    'affiliation': []},
   {'given': 'Hans-W.',
    'family': 'Hubberten',
    'sequence': 'additional',
    'affiliation': []}],
  'member': '311',
  'reference': [{'key': '10.1002/ppp.632-BIB1',
    'doi-asserted-by': 'publisher',
    'first-page': '107',
    'DOI': '10.1002/ppp.619',
    'article-title': 'Remote sensing of permafrost-related problems and hazards',
    'volume': '19',
    'author': 'Kaab',
    'year': '2008',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.632-BIB2',
    'unstructured': 'Kane DL, Hinkel KM (eds). 2008a. Proceedings Ninth International Conference on Permafrost, 2008. Institute of Northern Engineering: University of Alaska Fairbanks, 2 volumes; 2140 pp.'},
   {'key': '10.1002/ppp.632-BIB3',
    'unstructured': 'Kane DL, Hinkel KM (eds). 2008b. Ninth International Conference on Permafrost, Extended Abstracts. Institute of Northern Engineering: University of Alaska Fairbanks; 372 pp.'},
   {'key': '10.1002/ppp.632-BIB4',
    'author': 'Muller',
    'first-page': '280',
    'year': '2008',
    'volume-title': 'Frozen in Time: Permafrost and Engineering Problems',
    'DOI': '10.1061/9780784409893',
    'doi-asserted-by': 'crossref'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.632',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2017, 6, 18]],
   'date-time': '2017-06-18T14:07:15Z',
   'timestamp': 1497794835000},
  'score': 15.395377,
  'issued': {'date-parts': [[2008, 10]]},
  'references-count': 4,
  'journal-issue': {'published-print': {'date-parts': [[2008, 10]]},
   'issue': '4'},
  'URL': 'http://dx.doi.org/10.1002/ppp.632',
  'relation': {'cites': []},
  'ISSN': ['1045-6740', '1099-1530'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'},
   {'value': '1099-1530', 'type': 'electronic'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 4, 16]],
   'date-time': '2020-04-16T10:22:29Z',
   'timestamp': 1587032549769},
  'reference-count': 2,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 1614,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2011, 4]]},
  'DOI': '10.1002/ppp.729',
  'type': 'journal-article',
  'created': {'date-parts': [[2011, 6, 14]],
   'date-time': '2011-06-14T06:25:50Z',
   'timestamp': 1308032750000},
  'page': '195-197',
  'source': 'Crossref',
  'is-referenced-by-count': 3,
  'title': ['Report from the international permafrost association: A new strategy and structure for the international permafrost association'],
  'prefix': '10.1002',
  'volume': '22',
  'author': [{'given': 'Hans-Wolfgang',
    'family': 'Hubberten',
    'sequence': 'first',
    'affiliation': []}],
  'member': '311',
  'published-online': {'date-parts': [[2011, 6, 13]]},
  'reference': [{'key': '10.1002/ppp.729-BIB729-bib-0001|ppp729-cit-0001',
    'doi-asserted-by': 'crossref',
    'first-page': '417',
    'DOI': '10.1002/ppp.668',
    'article-title': 'Report from the International Permafrost Association: the Permafrost Young Researchers Network (PYRN)',
    'volume': '20',
    'author': 'Bonnaventure',
    'year': '2009',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.729-BIB729-bib-0002|ppp729-cit-0002',
    'author': 'Brown',
    'first-page': '1',
    'year': '1997',
    'volume-title': 'Washington, DC: U.S. Geological Survey in Cooperation with the Circum-Pacific Council for Energy and Mineral Resources'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.729',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'},
   {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.729',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2018, 8, 1]],
   'date-time': '2018-08-01T19:00:38Z',
   'timestamp': 1533150038000},
  'score': 15.395377,
  'issued': {'date-parts': [[2011, 4]]},
  'references-count': 2,
  'journal-issue': {'published-print': {'date-parts': [[2011, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.729',
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 4, 12]],
   'date-time': '2020-04-12T00:25:46Z',
   'timestamp': 1586651146338},
  'reference-count': 49,
  'publisher': 'Wiley',
  'issue': '3',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 0,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2016, 7]]},
  'DOI': '10.1002/ppp.1878',
  'type': 'journal-article',
  'created': {'date-parts': [[2015, 12, 14]],
   'date-time': '2015-12-14T06:18:39Z',
   'timestamp': 1450073919000},
  'page': '271-284',
  'source': 'Crossref',
  'is-referenced-by-count': 4,
  'title': ['Molards and Their Relation to Landslides Involving Permafrost Failure'],
  'prefix': '10.1002',
  'volume': '27',
  'author': [{'ORCID': 'http://orcid.org/0000-0002-8679-5259',
    'authenticated-orcid': False,
    'given': 'Juan Pablo',
    'family': 'Milana',
    'sequence': 'first',
    'affiliation': [{'name': 'CONICET and the Universidad Nacional de San Juan; InGeo-FCEFyN; San Juan Argentina'}]}],
  'member': '311',
  'published-online': {'date-parts': [[2015, 12, 14]]},
  'reference': [{'key': '10.1002/ppp.1878-BIB0001|ppp1878-cit-0001',
    'doi-asserted-by': 'crossref',
    'first-page': '909',
    'DOI': '10.1046/j.1365-3091.1998.00200.x',
    'article-title': 'Postglacial colluvium in western Norway: Depositional processes, facies and palaeoclimatic record',
    'volume': '45',
    'author': 'Blikra',
    'year': '1998',
    'journal-title': 'Sedimentology'},
   {'key': '10.1002/ppp.1878-BIB0002|ppp1878-cit-0002',
    'author': 'Brideau',
    'first-page': '119',
    'year': '2010',
    'volume-title': 'Yukon Exploration and Geology 2009'},
   {'key': '10.1002/ppp.1878-BIB0003|ppp1878-cit-0003',
    'doi-asserted-by': 'crossref',
    'first-page': '735',
    'DOI': '10.1130/0091-7613(1988)016<0735:LAOTFO>2.3.CO;2',
    'article-title': 'Laboratory analogue of the formation of molards, cones of rock-avalanche debris',
    'volume': '16',
    'author': 'Cassie',
    'year': '1988',
    'journal-title': 'Geology'},
   {'key': '10.1002/ppp.1878-BIB0004|ppp1878-cit-0004',
    'first-page': '328',
    'article-title': 'Climate change and hazardous processes in high mountains',
    'volume': '69',
    'author': 'Clague',
    'year': '2012',
    'journal-title': 'Revista de la Asociación Geológica Argentina'},
   {'key': '10.1002/ppp.1878-BIB0005|ppp1878-cit-0005',
    'unstructured': 'Croce F 2006 Estudio geofísico e importancia hídrica de glaciares cubiertos y de rocas de la cuenca del arroyo Agua Negra 354'},
   {'key': '10.1002/ppp.1878-BIB0006|ppp1878-cit-0006',
    'doi-asserted-by': 'publisher',
    'first-page': '289',
    'DOI': '10.1002/ppp.431',
    'article-title': 'Internal Structure and behaviour of a rock glacier in the Arid Andes of Argentina',
    'volume': '13',
    'author': 'Croce',
    'year': '2002',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1878-BIB0007|ppp1878-cit-0007',
    'unstructured': 'Cruden DM Langenberg W Paulen R 2003 Geology of the Frank Slide and southwestern Alberta 34'},
   {'key': '10.1002/ppp.1878-BIB0008|ppp1878-cit-0008',
    'doi-asserted-by': 'crossref',
    'first-page': '789',
    'DOI': '10.1139/t02-035',
    'article-title': 'Dynamic simulation of the motion of fragmenting rock avalanches',
    'volume': '39',
    'author': 'Davies',
    'year': '2002',
    'journal-title': 'Canadian Geotechnical Journal'},
   {'key': '10.1002/ppp.1878-BIB0009|ppp1878-cit-0009',
    'doi-asserted-by': 'publisher',
    'first-page': 'L06614',
    'DOI': '10.1029/2005GL025165',
    'article-title': 'Sliding of outrunner blocks from submarine landslides',
    'volume': '33',
    'author': 'De Blasio',
    'year': '2006',
    'journal-title': 'Geophysical Research Letters'},
   {'key': '10.1002/ppp.1878-BIB0010|ppp1878-cit-0010',
    'author': 'Deline',
    'year': '2011',
    'volume-title': 'Thermal and Geomorphic Permafrost Response to Present and Future Climate Change in the European Alps'},
   {'issue': '3-4',
    'key': '10.1002/ppp.1878-BIB0012|ppp1878-cit-0012',
    'doi-asserted-by': 'crossref',
    'first-page': '171',
    'DOI': '10.1016/j.geomorph.2008.09.009',
    'article-title': 'Longitudinal ridges in mass movement deposits',
    'volume': '105',
    'author': 'Dufresne',
    'year': '2009',
    'journal-title': 'Geomorphology'},
   {'key': '10.1002/ppp.1878-BIB0013|ppp1878-cit-0013',
    'author': 'Duguay',
    'volume': '163',
    'year': '2005',
    'series-title': 'AGU Geophysical Monograph Series',
    'volume-title': 'Remote Sensing of Northern Hydrology',
    'DOI': '10.1029/163GM06',
    'doi-asserted-by': 'publisher'},
   {'issue': '3-4',
    'key': '10.1002/ppp.1878-BIB0014|ppp1878-cit-0014',
    'doi-asserted-by': 'crossref',
    'first-page': '195',
    'DOI': '10.1016/j.enggeo.2009.08.007',
    'article-title': 'Landslides triggered by the 1949 Khait earthquake, Tajikistan and associated loss of life',
    'volume': '109',
    'author': 'Evans',
    'year': '2009',
    'journal-title': 'Engineering Geology'},
   {'key': '10.1002/ppp.1878-BIB0015|ppp1878-cit-0015',
    'author': 'Gestión Ambiental Consultores (GAC)',
    'year': '2012',
    'volume-title': 'EIA Proyecto expansión Andina 244, CODELCO, Cap. 2.4.7'},
   {'issue': '1-3',
    'key': '10.1002/ppp.1878-BIB0016|ppp1878-cit-0016',
    'doi-asserted-by': 'publisher',
    'first-page': '64',
    'DOI': '10.1016/j.enggeo.2005.06.025',
    'article-title': 'A large rockslide-debris avalanche in cohesive soil at Pink Mountain, northeastern British Columbia, Canada',
    'volume': '83',
    'author': 'Geertsema',
    'year': '2006',
    'journal-title': 'Engineering Geology'},
   {'key': '10.1002/ppp.1878-BIB0017|ppp1878-cit-0017',
    'first-page': '29',
    'article-title': "Géologie et dynamique de l'écroulement du Mount Granier, dans le Massif de Chartreuse, en novembre 1248",
    'volume': '1',
    'author': 'Goguel',
    'year': '1972',
    'journal-title': 'Bulletin du Bureau de Recherche Géologique et Minière'},
   {'key': '10.1002/ppp.1878-BIB0018|ppp1878-cit-0018',
    'doi-asserted-by': 'publisher',
    'first-page': '221',
    'DOI': '10.5194/tc-6-221-2012',
    'article-title': 'Derivation and analysis of a high-resolution estimate of global permafrost zonation',
    'volume': '6',
    'author': 'Gruber',
    'year': '2012',
    'journal-title': 'The Cryosphere'},
   {'key': '10.1002/ppp.1878-BIB0019|ppp1878-cit-0019',
    'unstructured': 'Hungr O. 1990 Mobility of rock avalanches 46 11 20'},
   {'key': '10.1002/ppp.1878-BIB0020|ppp1878-cit-0020',
    'unstructured': 'Intergovernmental Panel on Climate Change 2007 1 73 http://www.ipcc.ch/',
    'DOI': '10.1017/CBO9780511546013',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1878-BIB0021|ppp1878-cit-0021',
    'doi-asserted-by': 'crossref',
    'first-page': '103',
    'DOI': '10.1016/j.enggeo.2013.01.021',
    'article-title': 'Angle of repose of landslide debris deposits induced by 2008 Sichuan Earthquake',
    'volume': '156',
    'author': 'Jun-Jie',
    'year': '2013',
    'journal-title': 'Engineering Geology'},
   {'key': '10.1002/ppp.1878-BIB0022|ppp1878-cit-0022',
    'unstructured': 'Kellerer-Pirklbauer A Lieb G Schoeneich P Deline P Pogliotti P 2011 Thermal and Geomorphic Permafrost Response to Present and Future Climate Change in the European Alps http://www.permanet-alpinespace.eu'},
   {'key': '10.1002/ppp.1878-BIB0023|ppp1878-cit-0023',
    'doi-asserted-by': 'publisher',
    'first-page': 'E11004',
    'DOI': '10.1029/2011JE003865',
    'article-title': 'Static and dynamic angles of repose in loose granular materials under reduced gravity',
    'volume': '116',
    'author': 'Kleinhans',
    'year': '2011',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1878-BIB0024|ppp1878-cit-0024',
    'doi-asserted-by': 'crossref',
    'first-page': '359',
    'DOI': '10.1023/A:1013746917257',
    'article-title': 'Modeling Modern and Late Pleistocene glacio-climatological conditions in the North Chilean Andes (29 S-30 S)',
    'volume': '52',
    'author': 'Kull',
    'year': '2002',
    'journal-title': 'Climate Change'},
   {'issue': 'Bll',
    'key': '10.1002/ppp.1878-BIB0025|ppp1878-cit-0025',
    'doi-asserted-by': 'crossref',
    'first-page': '9301',
    'DOI': '10.1029/JB087iB11p09301',
    'article-title': 'Permafrost, heat flow, and the geothermal regime at Prudhoe Bay, Alaska',
    'volume': '87',
    'author': 'Lachenbruch',
    'year': '1982',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1878-BIB0026|ppp1878-cit-0026',
    'author': 'Luckman',
    'first-page': '119',
    'year': '2001',
    'volume-title': 'Interhemispheric climate linkages',
    'DOI': '10.1016/B978-012472670-3/50011-2',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1878-BIB0027|ppp1878-cit-0027',
    'author': 'Marangunic',
    'first-page': '383',
    'year': '1968',
    'volume-title': 'The Great Alaska Earthquake of 1964'},
   {'key': '10.1002/ppp.1878-BIB0028|ppp1878-cit-0028',
    'unstructured': 'McConnell RG Brock RW 1904 Report on the great landslide at Frank, Alberta',
    'DOI': '10.4095/300540',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1878-BIB0029|ppp1878-cit-0029',
    'unstructured': 'Milana JP 2006 Linea base de la criosfera http://seia.sea.gob.cl, Expte 1048260, Addenda, 6316_2005_11_13_OD/Anexo III-A.pdf'},
   {'key': '10.1002/ppp.1878-BIB0030|ppp1878-cit-0030',
    'author': 'Milana',
    'first-page': '192',
    'year': '2011',
    'volume-title': 'Hielo y Desierto - Los Glaciares Aridos de San Juan'},
   {'issue': '3',
    'key': '10.1002/ppp.1878-BIB0031|ppp1878-cit-0031',
    'first-page': '310',
    'article-title': 'Las propiedades mecánicas del permafrost de Glaciares de Roca en relación a su origen y contenido de hielo, Sistema El Tapado, IV Región',
    'volume': '63',
    'author': 'Milana',
    'year': '2008',
    'journal-title': 'Revista de la Asociación Geológica Argentina'},
   {'key': '10.1002/ppp.1878-BIB0032|ppp1878-cit-0032',
    'first-page': '205',
    'article-title': 'Trends and jumps in the annual precipitation in South America, south of 15S',
    'volume': '11',
    'author': 'Minetti',
    'year': '1998',
    'journal-title': 'Atmosfera'},
   {'key': '10.1002/ppp.1878-BIB0033|ppp1878-cit-0033',
    'first-page': '119',
    'article-title': 'Non-linear trends and low frequency oscillations in annual precipitation over Argentina and Chile, 1931-1999',
    'volume': '16',
    'author': 'Minetti',
    'year': '2003',
    'journal-title': 'Atmosfera'},
   {'key': '10.1002/ppp.1878-BIB0034|ppp1878-cit-0034',
    'doi-asserted-by': 'crossref',
    'first-page': '595',
    'DOI': '10.1190/1.1438343',
    'article-title': 'Debris flow outrunner blocks, glide tracks, and pressure ridges identified on the Nigerian continental slope using 3-D seismic coherency',
    'volume': '18',
    'author': 'Nissen',
    'year': '1999',
    'journal-title': 'Leading Edge'},
   {'key': '10.1002/ppp.1878-BIB0035|ppp1878-cit-0035',
    'author': 'Paterson',
    'first-page': '480',
    'year': '1994',
    'edition': '3',
    'volume-title': 'The Physics of Glaciers'},
   {'key': '10.1002/ppp.1878-BIB0037|ppp1878-cit-0037',
    'author': 'Reineck',
    'first-page': '551',
    'year': '1979',
    'edition': '2',
    'volume-title': 'Depositional Sedimentary Environments'},
   {'key': '10.1002/ppp.1878-BIB0038|ppp1878-cit-0038',
    'author': 'Rivera',
    'first-page': '274',
    'year': '2000',
    'volume-title': 'Proceedings Sixth International Conference on Southern Hemisphere Meteorology and Oceanography, Santiago Chile'},
   {'key': '10.1002/ppp.1878-BIB0039|ppp1878-cit-0039',
    'doi-asserted-by': 'crossref',
    'first-page': '63',
    'DOI': '10.1002/joc.3370110105',
    'article-title': 'Synoptic aspects of the central Chile rainfall variability associated with the Southern Oscillation',
    'volume': '11',
    'author': 'Rutllant',
    'year': '1991',
    'journal-title': 'International Journal of Climatology'},
   {'key': '10.1002/ppp.1878-BIB0040|ppp1878-cit-0040',
    'doi-asserted-by': 'crossref',
    'first-page': '59',
    'DOI': '10.1002/ppp.3430020110',
    'article-title': 'Global solar radiation, soil temperature and permafrost in the Central Andes, Argentina: a progress report',
    'volume': '2',
    'author': 'Schrott',
    'year': '1991',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '4',
    'key': '10.1002/ppp.1878-BIB0041|ppp1878-cit-0041',
    'doi-asserted-by': 'crossref',
    'first-page': '657',
    'DOI': '10.1130/GES00131.1',
    'article-title': 'Structural analysis and analogue modeling of the kinemetics and dynamics of rockslide avalanches',
    'volume': '4',
    'author': 'Shea',
    'year': '2008',
    'journal-title': 'Geosphere'},
   {'key': '10.1002/ppp.1878-BIB0042|ppp1878-cit-0042',
    'doi-asserted-by': 'crossref',
    'first-page': '1639',
    'DOI': '10.1126/science.154.3757.1639',
    'article-title': 'Sherman Landslide, Alaska',
    'volume': '154',
    'author': 'Shreve',
    'year': '1966',
    'journal-title': 'Science'},
   {'key': '10.1002/ppp.1878-BIB0043|ppp1878-cit-0043',
    'author': 'Shreve',
    'volume': '1603',
    'first-page': '395',
    'year': '1968',
    'volume-title': 'The Great Alaska Earthquake of 1964 (Hydrology Volume)'},
   {'key': '10.1002/ppp.1878-BIB0044|ppp1878-cit-0044',
    'doi-asserted-by': 'crossref',
    'first-page': '573',
    'DOI': '10.1007/BF00569941',
    'article-title': 'Morphology and emplacement of an unusual debris-avalanche deposit at Jocotitlán volcano, Central Mexico',
    'volume': '54',
    'author': 'Siebe',
    'year': '1992',
    'journal-title': 'Bulletin of Volcanology'},
   {'key': '10.1002/ppp.1878-BIB0045|ppp1878-cit-0045',
    'unstructured': 'Strom AL Abdrakhmatov KE 2009 Rockslides and rock avalanches of the Kokomeren river basin (Central Tien Shan) http://www.iclhq.org/Summer_School_Guidebook-2009.pdf'},
   {'key': '10.1002/ppp.1878-BIB0046|ppp1878-cit-0046',
    'doi-asserted-by': 'crossref',
    'first-page': '321',
    'DOI': '10.1016/j.coldregions.2008.08.009',
    'article-title': 'Indicators of present global warming through changes in active layer-thickness, estimation of thermal diffusivity and geomorphological observations in the Morenas Coloradas rockglacier, Central Andes of Mendoza, Argentina',
    'volume': '55',
    'author': 'Trombotto',
    'year': '2009',
    'journal-title': 'Cold Regions Science and Technology'},
   {'key': '10.1002/ppp.1878-BIB0047|ppp1878-cit-0047',
    'author': 'Vuille',
    'volume': '34',
    'year': '2007',
    'article-title': 'High-latitude forcing of regional aridification along the subtropical west coast of South America',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2007GL031899',
    'doi-asserted-by': 'publisher'},
   {'key': '10.1002/ppp.1878-BIB0048|ppp1878-cit-0048',
    'author': 'Washburn',
    'year': '1973',
    'volume-title': 'Periglacial Processes and Environments'},
   {'issue': '5',
    'key': '10.1002/ppp.1878-BIB0036|ppp1878-cit-0036',
    'doi-asserted-by': 'publisher',
    'first-page': '589',
    'DOI': '10.1139/t2012-021',
    'article-title': 'Observations from the large, rapid Yigong rock slide - debris avalanche, southeast Tibet',
    'volume': '49',
    'author': 'Xu',
    'year': '2012',
    'journal-title': 'Canadian Geotechnical Journal'},
   {'key': '10.1002/ppp.1878-BIB0049|ppp1878-cit-0049',
    'author': 'Zhang',
    'first-page': '149',
    'year': '2002',
    'volume-title': 'Catastrophic landslides: effects, occurrence, and mechanisms',
    'DOI': '10.1130/REG15-p149',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1878-BIB0050|ppp1878-cit-0050',
    'author': 'Zischg',
    'year': '2012',
    'volume-title': 'Proceedings 12th Congress INTERPRAEVENT 2012 - Grenoble/France'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1878',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2019, 9, 2]],
   'date-time': '2019-09-02T12:36:46Z',
   'timestamp': 1567427806000},
  'score': 15.395377,
  'subtitle': ['Molards and permafrost degradation'],
  'issued': {'date-parts': [[2015, 12, 14]]},
  'references-count': 49,
  'journal-issue': {'published-print': {'date-parts': [[2016, 7]]},
   'issue': '3'},
  'URL': 'http://dx.doi.org/10.1002/ppp.1878',
  'archive': ['Portico'],
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
 {'indexed': {'date-parts': [[2020, 4, 20]],
   'date-time': '2020-04-20T06:43:52Z',
   'timestamp': 1587365032686},
  'reference-count': 67,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 908,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2013, 4]]},
  'DOI': '10.1002/ppp.1768',
  'type': 'journal-article',
  'created': {'date-parts': [[2013, 3, 7]],
   'date-time': '2013-03-07T13:43:37Z',
   'timestamp': 1362663817000},
  'page': '138-145',
  'source': 'Crossref',
  'is-referenced-by-count': 13,
  'title': ['Recent Progress (2007-2012) in Permafrost Isotope Geochemistry'],
  'prefix': '10.1002',
  'volume': '24',
  'author': [{'given': 'Denis',
    'family': 'Lacelle',
    'sequence': 'first',
    'affiliation': [{'name': 'Department of Geography; University of Ottawa; Ottawa; Ontario; Canada'}]},
   {'given': 'Yurij K.',
    'family': "Vasil'chuk",
    'sequence': 'additional',
    'affiliation': [{'name': 'Department of Geography and Geology; Lomonosov Moscow State University; Moscow; Russia'}]}],
  'member': '311',
  'published-online': {'date-parts': [[2013, 3, 7]]},
  'reference': [{'key': '10.1002/ppp.1768-BIB0001|ppp1768-cit-0001',
    'doi-asserted-by': 'crossref',
    'first-page': '574',
    'DOI': '10.1007/s10040-003-0270-8',
    'article-title': 'Hydrogeochemistry of the permafrost zone in the central part of the Yakutian diamond-bearing province, Russia',
    'volume': '11',
    'author': 'Alexeev',
    'year': '2003',
    'journal-title': 'Hydrogeology Journal'},
   {'key': '10.1002/ppp.1768-BIB0002|ppp1768-cit-0002',
    'author': 'Barrett',
    'volume': '112',
    'year': '2007',
    'article-title': 'Biogeochemical stoichiometry of Antarctica Dry Valley ecosystems',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/2005JG000141',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1768-BIB0003|ppp1768-cit-0003',
    'doi-asserted-by': 'crossref',
    'first-page': '2349',
    'DOI': '10.5194/hess-13-2349-2009',
    'article-title': 'Spatial variation in soil active-layer geochemistry across hydrology margins in polar desert ecosystems',
    'volume': '13',
    'author': 'Barrett',
    'year': '2009',
    'journal-title': 'Hydrology and Earth System Sciences'},
   {'key': '10.1002/ppp.1768-BIB0004|ppp1768-cit-0004',
    'doi-asserted-by': 'crossref',
    'first-page': '12pp',
    'DOI': '10.1029/2009GC002548',
    'article-title': 'Ratio of 36Cl/Cl in ground ice of east Siberia and its application for chronometry',
    'volume': '10',
    'author': 'Blinov',
    'year': '2009',
    'journal-title': 'Geochemistry, Geophysics, Geosystems'},
   {'key': '10.1002/ppp.1768-BIB0005|ppp1768-cit-0005',
    'doi-asserted-by': 'crossref',
    'first-page': '61',
    'DOI': '10.1126/science.1172768',
    'article-title': 'Evidence for calcium carbonate at the Mars Phoenix landing site',
    'volume': '325',
    'author': 'Boynton',
    'year': '2009',
    'journal-title': 'Science'},
   {'key': '10.1002/ppp.1768-BIB0006|ppp1768-cit-0006',
    'author': 'Brosius',
    'volume': '117',
    'year': '2012',
    'article-title': 'Using the deuterium isotope composition of permafrost meltwater to constrain thermokarst lake contributions to atmospheric CH4 during the last deglaciation',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/2011JG001810',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1768-BIB0007|ppp1768-cit-0007',
    'doi-asserted-by': 'crossref',
    'first-page': '909',
    'DOI': '10.1139/e88-087',
    'article-title': 'Evidence for recent temperature-induced water migration into permafrost from tritium content of ground ice near Mayo, Yukon Territory, Canada',
    'volume': '25',
    'author': 'Burn',
    'year': '1988',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1768-BIB0008|ppp1768-cit-0008',
    'doi-asserted-by': 'crossref',
    'first-page': '239',
    'DOI': '10.1016/j.yqres.2007.05.003',
    'article-title': 'Molar gas ratios of air entrapped in ice: a new tool to determine the origin of relict massive ground ice bodies in permafrost',
    'volume': '68',
    'author': 'Cardyn',
    'year': '2007',
    'journal-title': 'Quaternary Research'},
   {'key': '10.1002/ppp.1768-BIB0009|ppp1768-cit-0009',
    'doi-asserted-by': 'crossref',
    'first-page': '127',
    'DOI': '10.4296/cwrj3402127',
    'article-title': 'Progress in Canadian snow and frozen ground hydrology, 2003-2007',
    'volume': '34',
    'author': 'Carey',
    'year': '2009',
    'journal-title': 'Canadian Water Resources Journal'},
   {'key': '10.1002/ppp.1768-BIB0010|ppp1768-cit-0010',
    'doi-asserted-by': 'crossref',
    'first-page': '57',
    'DOI': '10.1016/0165-232X(83)90017-4',
    'article-title': 'The mechanism of repeated-segregation for the formation of thick layered ground ice',
    'volume': '8',
    'author': 'Cheng',
    'year': '1983',
    'journal-title': 'Cold Regions Science and Technology'},
   {'key': '10.1002/ppp.1768-BIB0011|ppp1768-cit-0011',
    'doi-asserted-by': 'crossref',
    'first-page': '735',
    'DOI': '10.1111/j.1745-6584.2000.tb02709.x',
    'article-title': 'Recharge and preservation of Laurentide glacial melt water in the Canadian Shield',
    'volume': '38',
    'author': 'Clark',
    'year': '2000',
    'journal-title': 'Groundwater'},
   {'key': '10.1002/ppp.1768-BIB0012|ppp1768-cit-0012',
    'unstructured': 'Clark ID Wilk M Lacelle D 2010 Environmental fate of tritium in soil and vegetation'},
   {'key': '10.1002/ppp.1768-BIB0013|ppp1768-cit-0013',
    'volume': '585',
    'first-page': '140',
    'year': '2005',
    'article-title': 'Scientific results from the Mallik 2002 Gas Hydrate Production Research Well Program, Mackenzie Delta, Northwest Territories, Canada',
    'journal-title': 'Geological Survey of Canada Bulletin'},
   {'key': '10.1002/ppp.1768-BIB0014|ppp1768-cit-0014',
    'doi-asserted-by': 'crossref',
    'first-page': '190',
    'DOI': '10.1016/j.earscirev.2010.04.002',
    'article-title': 'The principles of cryostratigraphy',
    'volume': '101',
    'author': 'French',
    'year': '2010',
    'journal-title': 'Earth-Science Reviews'},
   {'key': '10.1002/ppp.1768-BIB0015|ppp1768-cit-0015',
    'doi-asserted-by': 'crossref',
    'first-page': '169',
    'DOI': '10.1002/hyp.7196',
    'article-title': 'Impacts of permafrost degradation on Arctic river biogeochemistry',
    'volume': '23',
    'author': 'Frey',
    'year': '2009',
    'journal-title': 'Hydrological Processes'},
   {'key': '10.1002/ppp.1768-BIB0016|ppp1768-cit-0016',
    'doi-asserted-by': 'crossref',
    'first-page': '26',
    'DOI': '10.1002/ppp.714',
    'article-title': 'Origin and characteristics of massive ground ice on Hershel Island (western Canadian Arctic) as revealed by stable water isotope and hydrochemical signatures',
    'volume': '22',
    'author': 'Fritz',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0017|ppp1768-cit-0017',
    'doi-asserted-by': 'crossref',
    'first-page': '28',
    'DOI': '10.1016/j.palaeo.2011.12.015',
    'article-title': 'Eastern Beringia and beyond: late Wisconsinan and Holocene landscape dynamics along the Yukon Coastal Plain, Canada',
    'volume': '319-320',
    'author': 'Fritz',
    'year': '2012',
    'journal-title': 'Palaegeography, Palaeoclimatology, Palaeoecology'},
   {'key': '10.1002/ppp.1768-BIB0018|ppp1768-cit-0018',
    'author': 'Fujino',
    'first-page': '77',
    'year': '1978',
    'volume-title': 'In Joint Studies on Physical and Biological Environments in the Permafrost'},
   {'key': '10.1002/ppp.1768-BIB0019|ppp1768-cit-0019',
    'doi-asserted-by': 'crossref',
    'first-page': '1547',
    'DOI': '10.1016/j.quascirev.2007.04.004',
    'article-title': 'Dating of syngenetic ice wedges in permafrost with 36Cl',
    'volume': '26',
    'author': 'Gilichinsky',
    'year': '2007',
    'journal-title': 'Quaternary Science Reviews'},
   {'key': '10.1002/ppp.1768-BIB0020|ppp1768-cit-0020',
    'doi-asserted-by': 'crossref',
    'first-page': '19',
    'DOI': '10.1089/ast.2011.0700',
    'article-title': 'Sulfuric acid speleogenesis associated with a glacially driven groundwater system - paleo-spring “pipes” at Borup Fjord Pass, Nunavut',
    'volume': '12',
    'author': 'Grasby',
    'year': '2012',
    'journal-title': 'Astrobiology'},
   {'key': '10.1002/ppp.1768-BIB0021|ppp1768-cit-0021',
    'doi-asserted-by': 'crossref',
    'first-page': '4008',
    'DOI': '10.1016/j.gca.2008.05.058',
    'article-title': 'Canadian Shield brine from the Con Mine, Yellowknife, NT, Canada: noble gas evidence for an evaporated Palaeozoic seawater origin mixed with glacial meltwater and Holocene recharge',
    'volume': '72',
    'author': 'Greene',
    'year': '2008',
    'journal-title': 'Geochimica et Cosmochimica Acta'},
   {'key': '10.1002/ppp.1768-BIB0022|ppp1768-cit-0022',
    'doi-asserted-by': 'crossref',
    'first-page': '64',
    'DOI': '10.1126/science.1172466',
    'article-title': 'Detection of perchlorate and the soluble chemistry of martian soil at the Phoenix Lander site',
    'volume': '325',
    'author': 'Hecht',
    'year': '2009',
    'journal-title': 'Science'},
   {'key': '10.1002/ppp.1768-BIB0023|ppp1768-cit-0023',
    'author': 'Jorgenson',
    'volume': '33',
    'year': '2006',
    'article-title': 'Abrupt increase in permafrost degradation in Arctic Alaska',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2005GL024960',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1768-BIB0024|ppp1768-cit-0024',
    'doi-asserted-by': 'crossref',
    'first-page': '35',
    'DOI': '10.1017/S0022143000011771',
    'article-title': 'Melting and refreezing at the glacier sole and the isotopic composition of the ice',
    'volume': '28',
    'author': 'Jouzel',
    'year': '1982',
    'journal-title': 'Journal of Glaciology'},
   {'key': '10.1002/ppp.1768-BIB0025|ppp1768-cit-0025',
    'doi-asserted-by': 'crossref',
    'first-page': '84',
    'DOI': '10.1657/1523-0430(2007)39[84:GOSASO]2.0.CO;2',
    'article-title': 'Geochemistry of soils and streams on surfaces of varying ages in Arctic Alaska',
    'volume': '39',
    'author': 'Keller',
    'year': '2007',
    'journal-title': 'Arctic, Antarctic, and Alpine Research'},
   {'key': '10.1002/ppp.1768-BIB0026|ppp1768-cit-0026',
    'doi-asserted-by': 'crossref',
    'first-page': '76',
    'DOI': '10.1016/j.chemgeo.2010.02.013',
    'article-title': 'Stream geochemistry as an indicator of increasing permafrost thaw depth in an arctic watershed',
    'volume': '273',
    'author': 'Keller',
    'year': '2010',
    'journal-title': 'Chemical Geology'},
   {'key': '10.1002/ppp.1768-BIB0027|ppp1768-cit-0027',
    'author': 'Kleinberg',
    'volume': '108',
    'year': '2003',
    'article-title': 'Deep sea NMR: Methane hydrate growth habit in porous media and its relationship to hydraulic permeability, deposit accumulation, and submarine slope stability',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/2003JB002389',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1768-BIB0028|ppp1768-cit-0028',
    'doi-asserted-by': 'crossref',
    'first-page': '275',
    'DOI': '10.1002/ppp.458',
    'article-title': 'Ground ice and soluble cations in near-surface permafrost, Inuvik, Northwest Territories, Canada',
    'volume': '143',
    'author': 'Kokelj',
    'year': '2003',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0029|ppp1768-cit-0029',
    'doi-asserted-by': 'crossref',
    'first-page': '37',
    'DOI': '10.1139/e04-089',
    'article-title': 'Geochemistry of the active layer and near-surface permafrost, Mackenzie delta region, Northwest Territories, Canada',
    'volume': '42',
    'author': 'Kokelj',
    'year': '2005',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1768-BIB0030|ppp1768-cit-0030',
    'doi-asserted-by': 'crossref',
    'first-page': '171',
    'DOI': '10.1002/ppp.417',
    'article-title': 'Physical and chemical characteristics of the active layer and permafrost, Herschel Island, western Arctic coast, Canada',
    'volume': '13',
    'author': 'Kokelj',
    'year': '2002',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0031|ppp1768-cit-0031',
    'doi-asserted-by': 'crossref',
    'first-page': '173',
    'DOI': '10.1002/ppp.642',
    'article-title': 'Origin and polycyclic behavior of tundra thaw slumps, Mackenzie Delta region, Northwest Territories, Canada',
    'volume': '20',
    'author': 'Kokelj',
    'year': '2009',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0032|ppp1768-cit-0032',
    'author': 'Kvenvolden',
    'volume': '124',
    'first-page': '3',
    'year': '2001',
    'volume-title': 'In Natural Gas Hydrates: Occurrence, Distribution, and Dynamics, AGU Monograph Series',
    'DOI': '10.1029/GM124p0003',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1768-BIB0033|ppp1768-cit-0033',
    'doi-asserted-by': 'crossref',
    'first-page': '13',
    'DOI': '10.1002/ppp.712',
    'article-title': 'On the δ18O, δD and D-excess relations in meteoric precipitation and during equilibrium freezing: theoretical approach and field examples',
    'volume': '22',
    'author': 'Lacelle',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0034|ppp1768-cit-0034',
    'doi-asserted-by': 'crossref',
    'first-page': '249',
    'DOI': '10.1016/j.yqres.2007.05.002',
    'article-title': 'Nature and origin of a Pleistocene-age massive ground ice body exposed in the Chapman Lake moraine complex central Yukon Territory',
    'volume': '68',
    'author': 'Lacelle',
    'year': '2007a',
    'journal-title': 'Quaternary Research'},
   {'key': '10.1002/ppp.1768-BIB0035|ppp1768-cit-0035',
    'doi-asserted-by': 'crossref',
    'first-page': '157',
    'DOI': '10.1016/j.chemgeo.2007.05.021',
    'article-title': 'Acid drainage generation and seasonal recycling in disturbed permafrost near Eagle Plains, northern Yukon Territory, Canada',
    'volume': '243',
    'author': 'Lacelle',
    'year': '2007b',
    'journal-title': 'Chemical Geology'},
   {'key': '10.1002/ppp.1768-BIB0036|ppp1768-cit-0036',
    'doi-asserted-by': 'crossref',
    'first-page': '1139',
    'DOI': '10.1139/E08-063',
    'article-title': 'Weathering regime and geochemical conditions in a polar desert environment, Haughton impact structure region, Devon Island, Canada',
    'volume': '45',
    'author': 'Lacelle',
    'year': '2008',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1768-BIB0037|ppp1768-cit-0037',
    'doi-asserted-by': 'crossref',
    'first-page': '3401',
    'DOI': '10.1016/j.quascirev.2009.09.013',
    'article-title': 'Burial and preservation a 30,000 year old perennial snowbank in Red Creek valley, Ogilvie Mountains, central Yukon, Canada',
    'volume': '28',
    'author': 'Lacelle',
    'year': '2009',
    'journal-title': 'Quaternary Science Reviews'},
   {'key': '10.1002/ppp.1768-BIB0038|ppp1768-cit-0038',
    'doi-asserted-by': 'crossref',
    'first-page': '46',
    'DOI': '10.1016/j.epsl.2011.03.023',
    'article-title': 'Geomicrobiology and occluded O2-CO2-Ar gas analyses provide evidence of microbial respiration in ancient terrestrial ground ice',
    'volume': '306',
    'author': 'Lacelle',
    'year': '2011',
    'journal-title': 'Earth and Planetary Science Letters'},
   {'key': '10.1002/ppp.1768-BIB0039|ppp1768-cit-0039',
    'doi-asserted-by': 'crossref',
    'first-page': '217',
    'DOI': '10.1016/j.yqres.2012.05.007',
    'article-title': 'Revised 14C dating of ice wedge growth in interior Alaska (USA) to MIS2 reveals cold paleoclimate and carbon recycling in ancient permafrost terrain',
    'volume': '78',
    'author': 'Lachniet',
    'year': '2012',
    'journal-title': 'Quaternary Research'},
   {'key': '10.1002/ppp.1768-BIB0040|ppp1768-cit-0040',
    'doi-asserted-by': 'crossref',
    'first-page': '689',
    'DOI': '10.1007/s12205-011-0009-3',
    'article-title': 'Review on the gas hydrate development and production as a new energy resource',
    'volume': '15',
    'author': 'Lee',
    'year': '2011',
    'journal-title': 'KSCE Journal of Civil Engineering'},
   {'key': '10.1002/ppp.1768-BIB0041|ppp1768-cit-0041',
    'author': 'Levy',
    'volume': '39',
    'year': '2012',
    'article-title': 'Hypersaline “wet patches” in Taylor Valley, Antarctica',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2012GL050898',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1768-BIB0042|ppp1768-cit-0042',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1111/j.1467-8306.1972.tb00839.x',
    'article-title': 'The world of underground ice',
    'volume': '62',
    'author': 'Mackay',
    'year': '1972',
    'journal-title': 'Annals of the Association of American Geographers'},
   {'key': '10.1002/ppp.1768-BIB0043|ppp1768-cit-0043',
    'doi-asserted-by': 'crossref',
    'first-page': '996',
    'DOI': '10.1139/e80-100',
    'article-title': 'The origin of hummocks, western Arctic coast, Canada',
    'volume': '17',
    'author': 'Mackay',
    'year': '1980',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1768-BIB0044|ppp1768-cit-0044',
    'author': 'McKay',
    'first-page': '219',
    'year': '2005',
    'article-title': 'Polar lakes, streams and springs as analogs for the hydrological cycle on Mars. In Water on Mars and Life, Tetsuya Tokano (ed)',
    'journal-title': 'Advances in Astrobiology and Biogeophysics'},
   {'key': '10.1002/ppp.1768-BIB0045|ppp1768-cit-0045',
    'author': 'Navarro-Gonzalez',
    'volume': '115',
    'year': '2010',
    'article-title': 'Reanalysis of the Viking results suggests perchlorate and organics at mid-latitudes on Mars',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/2010JE003599',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1768-BIB0046|ppp1768-cit-0046',
    'doi-asserted-by': 'crossref',
    'first-page': '403',
    'DOI': '10.1111/j.1365-2117.2005.00272.x',
    'article-title': 'Migration pathways in the Central North Slope foreland basin, Alaska USA: solute and thermal constraints on fluid flow simulations',
    'volume': '17',
    'author': 'Nunn',
    'year': '2005',
    'journal-title': 'Basin Research'},
   {'key': '10.1002/ppp.1768-BIB0047|ppp1768-cit-0047',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1016/j.apgeochem.2005.08.004',
    'article-title': 'A geochemical evaluation of perennial spring activity and associated mineral precipitates at Expedition Fjord, Axel Heiberg Island, Canadian high Arctic',
    'volume': '21',
    'author': 'Omelon',
    'year': '2006',
    'journal-title': 'Applied Geochemistry'},
   {'key': '10.1002/ppp.1768-BIB0048|ppp1768-cit-0048',
    'doi-asserted-by': 'crossref',
    'first-page': '84',
    'DOI': '10.1002/ppp.667',
    'article-title': 'Paleoclimatic information from stable water isotopes of Holocene ice wedges on the Dmitrii Laptev Strait, northeast Siberia, Russia',
    'volume': '22',
    'author': 'Opel',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0049|ppp1768-cit-0049',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1139/e98-097',
    'article-title': 'Perennial spring occurrence in the Expedition Fjord area of western Axel Heiberg Island, Canadian high Arctic',
    'volume': '36',
    'author': 'Pollard',
    'year': '1999',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'issue': '12',
    'key': '10.1002/ppp.1768-BIB0067|ppp1768-cit-0067',
    'doi-asserted-by': 'crossref',
    'DOI': '10.1029/2012GL051445',
    'article-title': 'Transient nature of Arctic spring systems driven by subglacial meltwater',
    'volume': '39',
    'author': 'Scheidegger',
    'year': '2012',
    'journal-title': 'Geophysical Research Letters'},
   {'key': '10.1002/ppp.1768-BIB0050|ppp1768-cit-0050',
    'doi-asserted-by': 'crossref',
    'first-page': '589',
    'DOI': '10.1016/j.apgeochem.2006.12.005',
    'article-title': 'Geochemistry and stable isotopic signatures, including chlorine and bromine isotopes, of the deep groundwaters of the Siberian Platform, Russia',
    'volume': '22',
    'author': 'Shouakar-Stash',
    'year': '2007',
    'journal-title': 'Applied Geochemistry'},
   {'key': '10.1002/ppp.1768-BIB0051|ppp1768-cit-0051',
    'author': 'Shumskii',
    'year': '1959',
    'volume-title': 'In Principles of Geocryology, Part I. General Geocryology'},
   {'key': '10.1002/ppp.1768-BIB0052|ppp1768-cit-0052',
    'author': 'Slagoda',
    'first-page': '415',
    'year': '2012',
    'volume-title': 'In Proceedings of the Tenth International Conference'},
   {'key': '10.1002/ppp.1768-BIB0053|ppp1768-cit-0053',
    'doi-asserted-by': 'crossref',
    'first-page': '58',
    'DOI': '10.1126/science.1172339',
    'article-title': 'H2O at the Phoenix landing site',
    'volume': '325',
    'author': 'Smith',
    'year': '2009',
    'journal-title': 'Science'},
   {'key': '10.1002/ppp.1768-BIB0054|ppp1768-cit-0054',
    'doi-asserted-by': 'crossref',
    'first-page': '117',
    'DOI': '10.1002/ppp.690',
    'article-title': 'Thermal state of permafrost in North America: a contribution to the International Polar Year',
    'volume': '21',
    'author': 'Smith',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0055|ppp1768-cit-0055',
    'doi-asserted-by': 'crossref',
    'first-page': '49',
    'DOI': '10.1002/ppp.680',
    'article-title': 'Investigation of ice wedge infilling processes using stable oxygen and hydrogen isotopes, crystallography and occluded gases (O2, N2, Ar)',
    'volume': '22',
    'author': 'St-Jean',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0056|ppp1768-cit-0056',
    'doi-asserted-by': 'crossref',
    'first-page': '80',
    'DOI': '10.1016/j.jhydrol.2009.04.013',
    'article-title': 'Hydrogeochemistry of groundwaters in and below the base of thick permafrost at Lupin, Nunavut, Canada',
    'volume': '373',
    'author': 'Stotler',
    'year': '2009',
    'journal-title': 'Journal of Hydrology'},
   {'key': '10.1002/ppp.1768-BIB0057|ppp1768-cit-0057',
    'doi-asserted-by': 'crossref',
    'first-page': '348',
    'DOI': '10.1111/j.1745-6584.2010.00724.x',
    'article-title': 'Hydrogeology, chemical and microbial activity measurement through deep permafrost',
    'volume': '49',
    'author': 'Stotler',
    'year': '2011',
    'journal-title': 'Groundwater'},
   {'key': '10.1002/ppp.1768-BIB0058|ppp1768-cit-0058',
    'doi-asserted-by': 'crossref',
    'first-page': '547',
    'DOI': '10.1038/261547a0',
    'article-title': 'Permafrost oxygen isotope ratios and chronology of three cores from Antarctica',
    'volume': '261',
    'author': 'Stuiver',
    'year': '1976',
    'journal-title': 'Nature'},
   {'key': '10.1002/ppp.1768-BIB0059|ppp1768-cit-0059',
    'doi-asserted-by': 'crossref',
    'first-page': '91',
    'DOI': '10.1002/ppp.1732',
    'article-title': 'Origin and flow dynamics of perennial groundwater in continuous permafrost terrain using isotopes and noble gases: case study of the Fishing River, northern Yukon, Canada',
    'volume': '23',
    'author': 'Utting',
    'year': '2012',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1768-BIB0060|ppp1768-cit-0060',
    'first-page': '488pp',
    'year': '2007',
    'volume-title': 'Palynology and Chronology of Polygonal Ice Wedge Complexes in Russia Permafrost Area'},
   {'key': '10.1002/ppp.1768-BIB0061|ppp1768-cit-0061',
    'author': "Vasil'chuk",
    'first-page': '1809',
    'year': '2008',
    'volume-title': 'In Proceedings, 9th International Conference on Permafrost'},
   {'key': '10.1002/ppp.1768-BIB0062|ppp1768-cit-0062',
    'doi-asserted-by': 'crossref',
    'first-page': '637',
    'DOI': '10.1016/S0168-583X(00)00212-3',
    'article-title': 'AMS-dating of Late Pleistocene and Holocene syngenetic ice-wedges',
    'volume': '172',
    'author': "Vasil'chuk",
    'year': '2000a',
    'journal-title': 'Nuclear Instruments and Methods in Physics Research Section B: Beam Interactions with Materials and Atoms'},
   {'key': '10.1002/ppp.1768-BIB0063|ppp1768-cit-0063',
    'doi-asserted-by': 'crossref',
    'first-page': '237',
    'DOI': '10.1016/S0012-821X(00)00122-9',
    'article-title': 'First direct dating of Late Pleistocene ice-wedges by AMS',
    'volume': '179',
    'author': "Vasil'chuk",
    'year': '2000b',
    'journal-title': 'Earth and Planetary Science Letters'},
   {'key': '10.1002/ppp.1768-BIB0064|ppp1768-cit-0064',
    'doi-asserted-by': 'crossref',
    'first-page': '243',
    'DOI': '10.1017/S0033822200019755',
    'article-title': 'AMS 14C Dating of Pollen Concentrate from Late Pleistocene Ice Wedges from the Bison and Seyaha Sites in Siberia',
    'volume': '47',
    'author': "Vasil'chuk",
    'year': '2005',
    'journal-title': 'Radiocarbon'},
   {'key': '10.1002/ppp.1768-BIB0065|ppp1768-cit-0065',
    'doi-asserted-by': 'crossref',
    'first-page': '1636',
    'DOI': '10.1016/j.jenvrad.2008.05.004',
    'article-title': 'Organically bound tritium (OBT) for various plants in the vicinity of a continuous atmospheric tritium release',
    'volume': '99',
    'author': 'Vichot',
    'year': '2008',
    'journal-title': 'Journal of Environmental Radioactivity'},
   {'key': '10.1002/ppp.1768-BIB0066|ppp1768-cit-0066',
    'doi-asserted-by': 'crossref',
    'first-page': '237',
    'DOI': '10.1002/ppp.613',
    'article-title': 'Progress in permafrost hydrology in the new millennium',
    'volume': '19',
    'author': 'Woo',
    'year': '2008',
    'journal-title': 'Permafrost and Periglacial Processes'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1768',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2019, 7, 10]],
   'date-time': '2019-07-10T16:03:40Z',
   'timestamp': 1562774620000},
  'score': 15.395377,
  'subtitle': ['Recent Progress in Permafrost Isotope Geochemistry'],
  'issued': {'date-parts': [[2013, 3, 7]]},
  'references-count': 67,
  'journal-issue': {'published-print': {'date-parts': [[2013, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.1768',
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 2, 25]],
   'date-time': '2020-02-25T01:23:18Z',
   'timestamp': 1582593798483},
  'reference-count': 26,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 2800,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost Periglac. Process.'],
  'published-print': {'date-parts': [[2008, 4]]},
  'DOI': '10.1002/ppp.618',
  'type': 'journal-article',
  'created': {'date-parts': [[2008, 5, 27]],
   'date-time': '2008-05-27T18:16:29Z',
   'timestamp': 1211912189000},
  'page': '255-260',
  'source': 'Crossref',
  'is-referenced-by-count': 51,
  'title': ['Report from the International Permafrost Association: state of permafrost in the first decade of the 21st century'],
  'prefix': '10.1002',
  'volume': '19',
  'author': [{'given': 'Jerry',
    'family': 'Brown',
    'sequence': 'first',
    'affiliation': []},
   {'given': 'Vladimir E.',
    'family': 'Romanovsky',
    'sequence': 'additional',
    'affiliation': []}],
  'member': '311',
  'published-online': {'date-parts': [[2008]]},
  'reference': [{'key': '10.1002/ppp.618-BIB1',
    'author': 'Brown',
    'volume': '17',
    'first-page': '377',
    'year': '2006',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.570',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.618-BIB2',
    'author': 'Christiansen',
    'year': '2008',
    'unstructured': '. 2008. Interannual variations in active layer thickness in Svalbard. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB3',
    'author': 'Drozdov',
    'year': '2008',
    'unstructured': ', . 2008. Recent advances in Russian geocryological research: a contribution to the International Polar Year. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB4',
    'author': 'Harris',
    'year': '2008',
    'unstructured': '. 2008. Recent warming of European permafrost: Evidence from borehole monitoring. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB5',
    'author': 'Johansson',
    'year': '2008',
    'unstructured': ', , , . 2008. Increasing permafrost temperatures in Subarctic Sweden. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB6',
    'author': 'Kraev',
    'year': '2008',
    'unstructured': ', , , , , , , , , , . 2008. Thermal state of permafrost in the eastern Arctic. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB7',
    'author': 'Malkova',
    'year': '2008',
    'unstructured': '2008. Last twenty-five years of changes in permafrost temperature of the European north of Russia. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB8',
    'author': 'Marchenko',
    'volume': '56',
    'first-page': '311',
    'year': '2007',
    'journal-title': 'Global and Planetary Change',
    'DOI': '10.1016/j.gloplacha.2006.07.023',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.618-BIB9',
    'author': 'Mazhitova',
    'year': '2008',
    'unstructured': ', , . 2008. Recent decade thaw depth dynamics in the European Russian Arctic based on the Circumpolar Active Layer Monitoring (CALM) data. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB10',
    'author': 'Nelson',
    'volume': '15',
    'first-page': '99',
    'year': '2004',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.488',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.618-BIB11',
    'author': 'Oberman',
    'year': '2008',
    'unstructured': '2008. Contemporary permafrost degradation of European north of Russia. In Proceedings, Ninth International Conference on Permafrost, 29 June– 3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB12',
    'author': 'Osterkamp',
    'volume': '49',
    'first-page': '187',
    'year': '2005',
    'journal-title': 'Global and Planetary Change',
    'DOI': '10.1016/j.gloplacha.2005.09.001',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.618-BIB13',
    'author': 'Osterkamp',
    'year': '2008',
    'unstructured': '2008. Thermal state of permafrost in Alaska. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB14',
    'author': 'Parsons',
    'year': '2008.',
    'unstructured': ', , , , , , , . 2008. Permafrost data and information: Past approaches and future directions. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB15',
    'author': 'Ramos',
    'year': '2008',
    'unstructured': ', , , , , . 2008. Thermal active layer monitoring in two different sites on Livingston Island during the last seven years: a comparative study. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB16',
    'author': 'Romanovsky',
    'first-page': '181',
    'year': '2007',
    'unstructured': ', , , , , , . 2007. Frozen ground. In Global Outlook for Ice and Snow. United Nations Environment Programme: Nairobi; 181–200.',
    'volume-title': 'Global Outlook for Ice and Snow'},
   {'key': '10.1002/ppp.618-BIB17',
    'author': 'Romanovsky',
    'year': '2008a',
    'unstructured': ', , , , . 2008a. Soil climate and frost heave along the Permafrost/Ecological North American Arctic Transect. In Proceedings, Ninth International Conference on Permafrost, 29 June– 3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB18',
    'author': 'Romanovsky',
    'year': '2008b',
    'unstructured': ', , , , , , , , . 2008b. First results of IPY: Thermal state and fate of permafrost in Russia. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB19',
    'author': 'Sharkhuu',
    'year': '2008',
    'unstructured': ', , , . 2008. Thermal state of permafrost Mongolia. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008. Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB20',
    'author': 'Shiklomanov',
    'year': '2008',
    'unstructured': ', , , . 2008. The Circumpolar Active Layer Monitoring (CALM) program: Data collection, management, and dissemination strategies. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB21',
    'author': 'Smith',
    'volume': '16',
    'first-page': '19',
    'year': '2005',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.511',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.618-BIB22',
    'author': 'Streletskiy',
    'year': '2008',
    'unstructured': ', , . 2008. Long-term active and ground surface temperature trends: 13 years of observations at Alaskan CALM sites. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB23',
    'author': 'Vasiliev',
    'year': '2008',
    'unstructured': ', . 2008. Active layer monitoring in West Siberia under the CALM II Program. In Proceedings, Ninth International Conference on Permafrost, 29 June–3 July 2008, Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB24',
    'author': 'Vonder Mühll',
    'year': '2008.',
    'unstructured': ', . 2008. PERMOS – A comprehensive monitoring network of mountain permafrost in the Swiss Alps. In Proceedings, Ninth International Conference on Permafrost, 29 June– 3 July 2008. Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB25',
    'author': 'Zamolodchikov',
    'year': '2008',
    'unstructured': ', , . 2008. Recent climate and active layer changes in northeast Russia: Regional output of Circumpolar Active Layer Monitoring (CALM). In Proceedings, Ninth International Conference on Permafrost 29 June–3 July 2008. Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'},
   {'key': '10.1002/ppp.618-BIB26',
    'author': 'Zhao',
    'year': '2008',
    'unstructured': ', . 2008. Regional changes of permafrost in Central Asia. In Proceedings, Ninth International Conference on Permafrost 29 June–3 July 2008. Fairbanks, Alaska. University of Alaska, Fairbanks, Alaska. In press.'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.618',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'},
   {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.618',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2019, 2, 11]],
   'date-time': '2019-02-11T16:57:20Z',
   'timestamp': 1549904240000},
  'score': 15.395377,
  'issued': {'date-parts': [[2008]]},
  'references-count': 26,
  'journal-issue': {'published-print': {'date-parts': [[2008, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.618',
  'relation': {'cites': []},
  'ISSN': ['1045-6740', '1099-1530'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'},
   {'value': '1099-1530', 'type': 'electronic'}]},
 {'indexed': {'date-parts': [[2020, 3, 25]],
   'date-time': '2020-03-25T18:33:19Z',
   'timestamp': 1585161199211},
  'reference-count': 2,
  'publisher': 'Wiley',
  'issue': '4',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 1431,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2011, 10]]},
  'DOI': '10.1002/ppp.736',
  'type': 'journal-article',
  'created': {'date-parts': [[2011, 12, 13]],
   'date-time': '2011-12-13T00:54:05Z',
   'timestamp': 1323737645000},
  'page': '390-391',
  'source': 'Crossref',
  'is-referenced-by-count': 0,
  'title': ['Report from the International Permafrost Association'],
  'prefix': '10.1002',
  'volume': '22',
  'author': [{'given': 'Hugues',
    'family': 'Lantuit',
    'sequence': 'first',
    'affiliation': [{'name': 'IPA'}]},
   {'given': 'Inga',
    'family': 'May',
    'sequence': 'additional',
    'affiliation': [{'name': 'PYRN'}]}],
  'member': '311',
  'published-online': {'date-parts': [[2011, 12, 13]]},
  'reference': [{'key': '10.1002/ppp.736-BIB736-bib-0001|ppp736-cit-0001',
    'unstructured': 'Callaghan TV Johansson M AnisimovO H Christiansen H Instanes A Romanovsky V Smith S and contributing authors Changing permafrost and its impacts'},
   {'key': '10.1002/ppp.736-BIB736-bib-0002|ppp736-cit-0002',
    'unstructured': 'Forbes DL 2011 State of the Arctic Coast 2010 - Scientific Review and Outlook http://arcticcoasts.org'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.736',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'},
   {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.736',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2018, 8, 1]],
   'date-time': '2018-08-01T18:55:47Z',
   'timestamp': 1533149747000},
  'score': 15.395377,
  'subtitle': ['Report from the International Permafrost Association'],
  'issued': {'date-parts': [[2011, 10]]},
  'references-count': 2,
  'journal-issue': {'published-print': {'date-parts': [[2011, 10]]},
   'issue': '4'},
  'URL': 'http://dx.doi.org/10.1002/ppp.736',
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
 {'indexed': {'date-parts': [[2020, 3, 28]],
   'date-time': '2020-03-28T23:34:36Z',
   'timestamp': 1585438476499},
  'reference-count': 97,
  'publisher': 'Wiley',
  'issue': '4',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2017, 7, 20]],
     'date-time': '2017-07-20T00:00:00Z',
     'timestamp': 1500508800000},
    'delay-in-days': 0,
    'content-version': 'tdm'},
   {'URL': 'http://onlinelibrary.wiley.com/termsAndConditions#vor',
    'start': {'date-parts': [[2017, 7, 20]],
     'date-time': '2017-07-20T00:00:00Z',
     'timestamp': 1500508800000},
    'delay-in-days': 0,
    'content-version': 'vor'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2017, 10]]},
  'DOI': '10.1002/ppp.1956',
  'type': 'journal-article',
  'created': {'date-parts': [[2017, 7, 20]],
   'date-time': '2017-07-20T01:22:56Z',
   'timestamp': 1500513776000},
  'page': '726-740',
  'source': 'Crossref',
  'is-referenced-by-count': 3,
  'title': ['Palaeoenvironmental Proxies for Permafrost Presence During the Younger Dryas, Central Poland'],
  'prefix': '10.1002',
  'volume': '28',
  'author': [{'ORCID': 'http://orcid.org/0000-0002-1045-5506',
    'authenticated-orcid': False,
    'given': 'Joanna',
    'family': 'Petera-Zganiacz',
    'sequence': 'first',
    'affiliation': [{'name': 'Faculty of Geographical Sciences, Department of Geomorphology and Palaeogeography; University of Lodz; Lódz Poland'}]},
   {'given': 'Danuta A.',
    'family': 'Dzieduszyńska',
    'sequence': 'additional',
    'affiliation': [{'name': 'Faculty of Geographical Sciences, Department of Geomorphology and Palaeogeography; University of Lodz; Lódz Poland'}]}],
  'member': '311',
  'published-online': {'date-parts': [[2017, 7, 20]]},
  'reference': [{'key': '10.1002/ppp.1956-BIB0001|ppp1956-cit-0002',
    'author': 'Allen',
    'volume': 'II',
    'year': '1982',
    'volume-title': 'Sedimentary Structures, Their Character and Physical Basis'},
   {'key': '10.1002/ppp.1956-BIB0002|ppp1956-cit-0003',
    'doi-asserted-by': 'crossref',
    'first-page': '89',
    'DOI': '10.1016/S1040-6182(00)00125-7',
    'article-title': 'Environmental change and fluvial activity during the Younger Dryas in central Germany',
    'volume': '79',
    'author': 'Andres',
    'year': '2001',
    'journal-title': 'Quaternary International'},
   {'key': '10.1002/ppp.1956-BIB0003|ppp1956-cit-0004',
    'first-page': '3',
    'article-title': 'On the deformational structures in systems with reversed density gradients',
    'volume': '40',
    'author': 'Anketell',
    'year': '1970',
    'journal-title': 'Rocznik Polskiego Towarzystwa Geologicznego'},
   {'key': '10.1002/ppp.1956-BIB0004|ppp1956-cit-0005',
    'author': 'Antczak',
    'year': '1986',
    'volume-title': 'Channel pattern conversion and cessation of the Warta River bifurcation in the Warsaw-Berlin Pradolina and the southern Poznań gap section during the Late Vistulian'},
   {'key': '10.1002/ppp.1956-BIB0005|ppp1956-cit-0006',
    'doi-asserted-by': 'crossref',
    'first-page': '531',
    'DOI': '10.1002/jqs.2547',
    'article-title': 'The younger dryas cooling in northeast Germany: summer temperature and environmental changes in the Friedländer Groβe Wiese region',
    'volume': '27',
    'author': 'Asch',
    'year': '2012',
    'journal-title': 'Journal of Quaternary Science'},
   {'key': '10.1002/ppp.1956-BIB0006|ppp1956-cit-0007',
    'first-page': '361',
    'article-title': 'Timing and the final disappearance of permafrost in central European Lowland, as reconstructed from the evolution of lakes in N Poland',
    'volume': '55',
    'author': 'Błaszkiewicz',
    'year': '2011',
    'journal-title': 'Geological Quarterly'},
   {'key': '10.1002/ppp.1956-BIB0007|ppp1956-cit-0008',
    'first-page': '193',
    'article-title': 'Periglacial environments during the Weichselian Late Glacial in the Mass valley, the Netherlands',
    'volume': '72',
    'author': 'Bohncke',
    'year': '1993',
    'journal-title': 'Geologie en Mijnbouw'},
   {'key': '10.1002/ppp.1956-BIB0008|ppp1956-cit-0009',
    'first-page': '9',
    'article-title': 'Geowissenschaftliche Untersuchungen an der OPAL-Trasse in Mecklenburg-Vorpommern - Geländearbeiten und erste Ergebnisse',
    'volume': '18',
    'author': 'Börner',
    'year': '2011',
    'journal-title': 'Brandenburgische Geowissenschaftliche Beiträge'},
   {'key': '10.1002/ppp.1956-BIB0009|ppp1956-cit-0010',
    'doi-asserted-by': 'crossref',
    'first-page': '123',
    'DOI': '10.1016/1040-6182(95)00039-L',
    'article-title': 'Problems of dead ice and ground ice in the central part of the North European Plain',
    'volume': '28',
    'author': 'Böse',
    'year': '1995',
    'journal-title': 'Quaternary International'},
   {'key': '10.1002/ppp.1956-BIB0010|ppp1956-cit-0011',
    'doi-asserted-by': 'crossref',
    'first-page': '520',
    'DOI': '10.1038/ngeo263',
    'article-title': 'An abrupt wind shift in western Europe at the onset of the Younger Dryas cold period',
    'volume': '1',
    'author': 'Brauer',
    'year': '2008',
    'journal-title': 'Nature Geoscience'},
   {'key': '10.1002/ppp.1956-BIB0011|ppp1956-cit-0012',
    'author': 'Brodzikowski',
    'first-page': '287',
    'year': '1987a',
    'series-title': 'Geological Society Special Publication 29',
    'volume-title': 'Deformation of Sediments and Sedimentary Rocks'},
   {'key': '10.1002/ppp.1956-BIB0012|ppp1956-cit-0013',
    'author': 'Brodzikowski',
    'first-page': '269',
    'year': '1987b',
    'series-title': 'Geological Society Special Publication 29',
    'volume-title': 'Deformation of Sediments and Sedimentary Rocks'},
   {'key': '10.1002/ppp.1956-BIB0013|ppp1956-cit-0014',
    'first-page': '17',
    'article-title': 'Systems with reversed density gradient and their occurrence in periglacial zones',
    'volume': '124',
    'author': 'Cegła',
    'year': '1970',
    'journal-title': 'Acta Universitatis Wratislaviensis'},
   {'key': '10.1002/ppp.1956-BIB0014|ppp1956-cit-0015',
    'first-page': '91',
    'article-title': 'Late Pleistocene frost structures at Witów',
    'volume': '24',
    'author': 'Chmielewski',
    'year': '1970',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0015|ppp1956-cit-0016',
    'doi-asserted-by': 'crossref',
    'first-page': '131',
    'DOI': '10.1144/pygs.44.2.131',
    'article-title': 'Periglacial involutions and the evidence for coversands in the English Midlands',
    'volume': '44',
    'author': 'Douglas',
    'year': '1982',
    'journal-title': 'Proceedings of the Yorkshire Geological Society'},
   {'key': '10.1002/ppp.1956-BIB0016|ppp1956-cit-0017',
    'doi-asserted-by': 'crossref',
    'first-page': '69',
    'DOI': '10.17741/bgsf/84.1.006',
    'article-title': 'Geologic position of the Younger Dryas subfossil forest in the Warta River Valley, central Poland',
    'volume': '84',
    'author': 'Dzieduszyńska',
    'year': '2012',
    'journal-title': 'Bulletin of the Geological Society of Finland'},
   {'key': '10.1002/ppp.1956-BIB0017|ppp1956-cit-0018',
    'first-page': '11',
    'article-title': 'Characteristics of the Koźmin Las site',
    'volume': '102',
    'author': 'Dzieduszyńska',
    'year': '2014',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0018|ppp1956-cit-0019',
    'doi-asserted-by': 'crossref',
    'first-page': '334',
    'DOI': '10.2478/s13386-011-0019-4',
    'article-title': 'The age of the subfossil trunk horizon in deposits of the Warta River valley (central Poland) based on 14C datings',
    'volume': '38',
    'author': 'Dzieduszyńska',
    'year': '2011',
    'journal-title': 'Geochronometria'},
   {'key': '10.1002/ppp.1956-BIB0019|ppp1956-cit-0020',
    'doi-asserted-by': 'crossref',
    'first-page': '99',
    'DOI': '10.1016/j.quaint.2013.07.017',
    'article-title': 'Environmental influence on forest development and decline in the Warta River valley (Central Poland) during the Late Weichselian',
    'volume': '324',
    'author': 'Dzieduszyńska',
    'year': '2014a',
    'journal-title': 'Quaternary International'},
   {'key': '10.1002/ppp.1956-BIB0020|ppp1956-cit-0021',
    'doi-asserted-by': 'crossref',
    'first-page': '361',
    'DOI': '10.2478/s13386-013-0173-y',
    'article-title': 'Optical dating and sedimentary record from the terrace depositional profile of the Warta River (Central Poland)',
    'volume': '41',
    'author': 'Dzieduszyńska',
    'year': '2014b',
    'journal-title': 'Geochronometria'},
   {'key': '10.1002/ppp.1956-BIB0021|ppp1956-cit-0022',
    'first-page': '101',
    'article-title': 'Erosional and deformational structures in single sedimentary beds: a genetic commentary',
    'volume': '66',
    'author': 'Dżułyński',
    'year': '1996',
    'journal-title': 'Annales Societatis Geologorum Poloniae'},
   {'key': '10.1002/ppp.1956-BIB0022|ppp1956-cit-0023',
    'first-page': '1',
    'article-title': 'The development of the Warta River valley between Burzenin and Dobrów in the Late Quaternary period',
    'volume': '90',
    'author': 'Forysiak',
    'year': '2005',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0100|ppp1956-cit-0100',
    'first-page': '1',
    'article-title': 'Record of changes in the natural environment of the Late Weichselian and Holocene preserved in the sediments of peatlands of the Łódź Region',
    'volume': '99',
    'author': 'Forysiak',
    'year': '2012',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0023|ppp1956-cit-0024',
    'doi-asserted-by': 'crossref',
    'first-page': '69',
    'DOI': '10.2478/v10056-010-0002-4',
    'article-title': 'Late Vistulian and Holocene changes in the Ner River valley in light of geological and palaeocological data from the Ner-Zawada peatland',
    'volume': '52',
    'author': 'Forysiak',
    'year': '2010',
    'journal-title': 'Geologija'},
   {'key': '10.1002/ppp.1956-BIB0024|ppp1956-cit-0025',
    'author': 'French',
    'year': '2007',
    'volume-title': 'The Periglacial Environment',
    'DOI': '10.1002/9781118684931',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1956-BIB0025|ppp1956-cit-0026',
    'doi-asserted-by': 'crossref',
    'first-page': '2017',
    'DOI': '10.1139/e88-188',
    'article-title': 'Pleistocene epigenetic and syngenetic frost fissures, Bełchatów, Poland',
    'volume': '25',
    'author': 'French',
    'year': '1988',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1956-BIB0026|ppp1956-cit-0027',
    'doi-asserted-by': 'crossref',
    'first-page': '190',
    'DOI': '10.1016/j.earscirev.2010.04.002',
    'article-title': 'The principles of cryostratigraphy',
    'volume': '101',
    'author': 'French',
    'year': '2010',
    'journal-title': 'Earth-Science Reviews'},
   {'key': '10.1002/ppp.1956-BIB0027|ppp1956-cit-0028',
    'first-page': '1',
    'article-title': 'Origin and stratigraphical position of periglacial structures in Middle Poland',
    'volume': '31',
    'author': 'Goździk',
    'year': '1973',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0028|ppp1956-cit-0029',
    'first-page': '172',
    'article-title': 'Methodology of field studies. Detailed analysis of fossil contractional frost fissures, an instruction',
    'volume': '27',
    'author': 'Goździk',
    'year': '1978',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0029|ppp1956-cit-0030',
    'first-page': '53',
    'article-title': 'A permafrost evolution and its impact on some depositional conditions between 20 and 10 ka in Poland',
    'volume': '34',
    'author': 'Goździk',
    'year': '1996',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0030|ppp1956-cit-0031',
    'doi-asserted-by': 'crossref',
    'first-page': '39',
    'DOI': '10.1002/jqs.3390030107',
    'article-title': 'Ice wedges: growth, thaw transformation, and palaeoenvironmental significance',
    'volume': '3',
    'author': 'Harry',
    'year': '1988',
    'journal-title': 'Journal of Quaternary Science'},
   {'key': '10.1002/ppp.1956-BIB0031|ppp1956-cit-0032',
    'first-page': '135',
    'article-title': 'Preliminary results of the study of a Vistulian Late Glacial drainage pattern in the Scheldtbasin (Belgium-Flemish Valley-Moervaart Depression)',
    'volume': '4',
    'author': 'Heyse',
    'year': '1983',
    'journal-title': 'Quaternary Studies in Poland'},
   {'key': '10.1002/ppp.1956-BIB0032|ppp1956-cit-0033',
    'first-page': '53',
    'article-title': 'Fossil periglacial remnants in the Beernem-Mouton excavation in Flanders (Belgium)',
    'volume': '39',
    'author': 'Heyse',
    'year': '2000',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0033|ppp1956-cit-0034',
    'doi-asserted-by': 'crossref',
    'first-page': '81',
    'DOI': '10.1016/j.tecto.2005.08.012',
    'article-title': 'Soft-sediment deformation structures in Late Miocene-Pleistocene sediments on the pediment of the Mátra Hills (Visonta, Atkár, Verseg): cryoturbation, load structures or seismites?',
    'volume': '410',
    'author': 'Horváth',
    'year': '2005',
    'journal-title': 'Tectonophysics'},
   {'key': '10.1002/ppp.1956-BIB0034|ppp1956-cit-0035',
    'doi-asserted-by': 'crossref',
    'first-page': '115',
    'DOI': '10.1016/S0037-0738(00)00030-0',
    'article-title': 'Changing river styles in response to Weichselian climate changes in the Vecht valley, eastern Netherlands',
    'volume': '133',
    'author': 'Huisink',
    'year': '2000',
    'journal-title': 'Sedimentary Geology'},
   {'key': '10.1002/ppp.1956-BIB0035|ppp1956-cit-0036',
    'doi-asserted-by': 'crossref',
    'first-page': '313',
    'DOI': '10.1002/(SICI)1099-1530(199709)8:3<313::AID-PPP255>3.0.CO;2-E',
    'article-title': 'Permafrost distribution and temperatures in Europe during the Younger Dryas',
    'volume': '8',
    'author': 'Isarin',
    'year': '1997',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1956-BIB0036|ppp1956-cit-0037',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1016/S0012-8252(99)00047-1',
    'article-title': 'Reconstructing and modelling Late Weichselian climates: the Younger Dryas in Europe as a case study',
    'volume': '48',
    'author': 'Isarin',
    'year': '1999',
    'journal-title': 'Earth-Science Reviews'},
   {'key': '10.1002/ppp.1956-BIB0037|ppp1956-cit-0038',
    'doi-asserted-by': 'crossref',
    'first-page': '447',
    'DOI': '10.1002/(SICI)1099-1417(1998090)13:5<447::AID-JQS402>3.0.CO;2-B',
    'article-title': 'The impact of the North Atlantic Ocean on the Younger Dryas climate in northwestern and central Europe',
    'volume': '13',
    'author': 'Isarin',
    'year': '1998',
    'journal-title': 'Journal of Quaternary Sciences'},
   {'key': '10.1002/ppp.1956-BIB0038|ppp1956-cit-0039',
    'author': 'Jahn',
    'year': '1975',
    'volume-title': 'Problems of the Periglacial Zone'},
   {'key': '10.1002/ppp.1956-BIB0039|ppp1956-cit-0040',
    'doi-asserted-by': 'crossref',
    'first-page': '162',
    'DOI': '10.14430/arctic3501',
    'article-title': 'Some observations on permafrost distribution at a lake in the Mackenzie Delta, N.W.T., Canada',
    'volume': '17',
    'author': 'Johnston',
    'year': '1964',
    'journal-title': 'Arctic'},
   {'key': '10.1002/ppp.1956-BIB0040|ppp1956-cit-0041',
    'author': 'Kaiser',
    'volume': '61',
    'year': '2012',
    'article-title': 'Late Quaternary evolution of rivers, lakes and peatlands in northeast Germany reflecting past climatic and human impact - an overview',
    'journal-title': 'Quaternary Science Journal'},
   {'key': '10.1002/ppp.1956-BIB0041|ppp1956-cit-0042',
    'first-page': '251',
    'article-title': 'Younger Dryas cooling and fluvial response (Maas River, the Netherlands)',
    'volume': '74',
    'author': 'Kasse',
    'year': '1995',
    'journal-title': 'Geologie en Mijnbouw'},
   {'key': '10.1002/ppp.1956-BIB0042|ppp1956-cit-0043',
    'first-page': '123',
    'article-title': 'Climatic change and fluvial dynamics of the Maas during the late Weichselian and early Holocene',
    'volume': '14',
    'author': 'Kasse',
    'year': '1995',
    'journal-title': 'Palaoklimaforschung/Palaeoclimate Research'},
   {'key': '10.1002/ppp.1956-BIB0043|ppp1956-cit-0044',
    'doi-asserted-by': 'crossref',
    'first-page': '455',
    'DOI': '10.1002/(SICI)1099-1417(1998090)13:5<455::AID-JQS398>3.0.CO;2-T',
    'article-title': 'Weichselian-Late Pleniglacial and Late-glacial depositional environments, Coleoptera and periglacial climatic records from central Poland (Bełchatów)',
    'volume': '13',
    'author': 'Kasse',
    'year': '1998',
    'journal-title': 'Journal of Quaternary Sciences'},
   {'key': '10.1002/ppp.1956-BIB0044|ppp1956-cit-0045',
    'first-page': '45',
    'article-title': 'Symptoms of the permafrost presence in Middle Poland during the last 150 000 years',
    'volume': '35',
    'author': 'Klatkowa',
    'year': '1996',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0045|ppp1956-cit-0046',
    'first-page': '143',
    'article-title': 'Late Vistulian deglaciation and the expansion of the periglacial zone in NW Poland',
    'volume': '72',
    'author': 'Kozarski',
    'year': '1993',
    'journal-title': 'Geologie en Mijnbouw'},
   {'key': '10.1002/ppp.1956-BIB0046|ppp1956-cit-0047',
    'first-page': '1',
    'article-title': 'Deglaciation of north-western Poland: environmental conditions and transformation of the geosystem (~20 ka →10 ka BP)',
    'volume': '1',
    'author': 'Kozarski',
    'year': '1995',
    'journal-title': 'Dokumentacja Geograficzna'},
   {'key': '10.1002/ppp.1956-BIB0047|ppp1956-cit-0048',
    'first-page': '73',
    'article-title': 'The periglacial impact on the deglaciation area of northern Poland after 20 kyr BP',
    'volume': '34',
    'author': 'Kozarski',
    'year': '1996',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0048|ppp1956-cit-0049',
    'first-page': '51',
    'article-title': 'Valley floors and changes of river channel patterns in the North Polish Plain during the Late-Würm and Holocene',
    'volume': '4',
    'author': 'Kozarski',
    'year': '1977',
    'journal-title': 'Quaestiones Geographicae'},
   {'key': '10.1002/ppp.1956-BIB0049|ppp1956-cit-0050',
    'author': 'Kozarski',
    'first-page': '185',
    'year': '1988',
    'volume-title': 'Lake, Mire and River Environments During the Last 15000 Years'},
   {'key': '10.1002/ppp.1956-BIB0050|ppp1956-cit-0051',
    'doi-asserted-by': 'crossref',
    'first-page': '333',
    'DOI': '10.1111/j.1502-3885.1990.tb00138.x',
    'article-title': 'Middle and Late Weichselian stratigraphy and palaeoenvironments in central Poland',
    'volume': '19',
    'author': 'Krzyszkowski',
    'year': '1990',
    'journal-title': 'Boreas'},
   {'key': '10.1002/ppp.1956-BIB0051|ppp1956-cit-0052',
    'first-page': '57',
    'article-title': 'Periglacial phenomena and the mean temperature during the last glacial time in the Netherlands',
    'volume': '26',
    'author': 'Maarleveld',
    'year': '1976',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0052|ppp1956-cit-0053',
    'doi-asserted-by': 'crossref',
    'first-page': '1720',
    'DOI': '10.1139/e93-151',
    'article-title': 'Air temperature, snow cover, creep of frozen ground, and the time of ice-wedge cracking, western Arctic coast',
    'volume': '30',
    'author': 'Mackay',
    'year': '1993',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1956-BIB0053|ppp1956-cit-0054',
    'doi-asserted-by': 'crossref',
    'first-page': '95',
    'DOI': '10.1139/e01-048',
    'article-title': 'The first 20 years (1978-1979 to 1998-1999) of ice-wedge growth at the Illisarvik experimental drained lake site, western Arctic coast, Canada',
    'volume': '39',
    'author': 'Mackay',
    'year': '2002',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1956-BIB0054|ppp1956-cit-0055',
    'first-page': '181',
    'article-title': 'Role of buried dead ice in modeling of lake basins in present lakelands',
    'volume': '71',
    'author': 'Marks',
    'year': '1996',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0055|ppp1956-cit-0056',
    'first-page': '988',
    'article-title': 'Pleistocene glacial limits in the territory of Poland',
    'volume': '53',
    'author': 'Marks',
    'year': '2005',
    'journal-title': 'Przegląd Geologiczny'},
   {'key': '10.1002/ppp.1956-BIB0056|ppp1956-cit-0057',
    'doi-asserted-by': 'crossref',
    'first-page': '356',
    'DOI': '10.1016/j.yqres.2010.12.014',
    'article-title': 'Climate and material controls on periglacial soil processes: Toward improving periglacial climate indicators',
    'volume': '75',
    'author': 'Matsuoka',
    'year': '2011',
    'journal-title': 'Quaternary Research'},
   {'key': '10.1002/ppp.1956-BIB0057|ppp1956-cit-0058',
    'author': 'Miall',
    'volume': '5',
    'year': '1978',
    'volume-title': 'Fluvial Sedimentology'},
   {'key': '10.1002/ppp.1956-BIB0058|ppp1956-cit-0059',
    'doi-asserted-by': 'crossref',
    'first-page': '83',
    'DOI': '10.1016/0037-0738(83)90046-5',
    'article-title': 'Genesis and diagnostic value of soft sediment deformation structures - a overview',
    'volume': '35',
    'author': 'Mills',
    'year': '1983',
    'journal-title': 'Sedimentary Geology'},
   {'key': '10.1002/ppp.1956-BIB0059|ppp1956-cit-0060',
    'first-page': '145',
    'article-title': 'Cryoturbation structures on the terraces of the Wisła River near Włocławek',
    'volume': '6',
    'author': 'Mojski',
    'year': '1958',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0060|ppp1956-cit-0061',
    'doi-asserted-by': 'crossref',
    'first-page': '217',
    'DOI': '10.1002/ppp.3430040304',
    'article-title': 'Thermokarst involutions, Summer Island, Pleistocene Mackenzie Delta, western Canadian Arctic',
    'volume': '4',
    'author': 'Murton',
    'year': '1993',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1956-BIB0061|ppp1956-cit-0062',
    'doi-asserted-by': 'crossref',
    'first-page': '237',
    'DOI': '10.2478/v10118-012-0012-2',
    'article-title': 'Younger Dryas Cladocera assemblages from two valley mires in central Poland and their potential significance for climate reconstructions',
    'volume': '18',
    'author': 'Pawłowski',
    'year': '2012',
    'journal-title': 'Geologos'},
   {'key': '10.1002/ppp.1956-BIB0062|ppp1956-cit-0063',
    'doi-asserted-by': 'crossref',
    'first-page': '679',
    'DOI': '10.1007/s10933-013-9692-z',
    'article-title': 'Changes in the biota and sediments of glacial Lake Koźmin, Poland, during the Late Saalian (Illinoian)',
    'volume': '49',
    'author': 'Pawłowski',
    'year': '2013',
    'journal-title': 'Journal of Paleolimnology'},
   {'key': '10.1002/ppp.1956-BIB0063|ppp1956-cit-0064',
    'doi-asserted-by': 'crossref',
    'first-page': '12',
    'DOI': '10.1016/j.quaint.2014.06.033',
    'article-title': 'Palaeoecological record of natural changes and human impact in a small river valley in Central Poland',
    'volume': '370',
    'author': 'Pawłowski',
    'year': '2015',
    'journal-title': 'Quaternary International'},
   {'key': '10.1002/ppp.1956-BIB0064|ppp1956-cit-0065',
    'first-page': '1',
    'article-title': 'Vistulian valley deposits in th Uniejów Basin and their palaeogeographical significance',
    'volume': '83',
    'author': 'Petera',
    'year': '2002',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0065|ppp1956-cit-0066',
    'first-page': '103',
    'article-title': 'Stratigraphy of the Vistulian deposits and young Quaternary tectonic activity near Koźmin',
    'volume': '16',
    'author': 'Petera-Zganiacz',
    'year': '2007',
    'journal-title': 'Prace Instytutu Geografii Akademii Świętokrzyskiej w Kielcach'},
   {'key': '10.1002/ppp.1956-BIB0066|ppp1956-cit-0067',
    'first-page': '39',
    'article-title': 'Determinants of the spread and properties of the organic series containing remains of the Younger Dryas forest',
    'volume': '102',
    'author': 'Petera-Zganiacz',
    'year': '2014',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0067|ppp1956-cit-0068',
    'first-page': '57',
    'article-title': 'Palaeogeographical significance of subfossil tree trunks in the Late Vistulian sediments',
    'volume': '93',
    'author': 'Petera-Zganiacz',
    'year': '2007',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0068|ppp1956-cit-0069',
    'doi-asserted-by': 'crossref',
    'first-page': '55',
    'DOI': '10.1016/j.quaint.2014.09.074',
    'article-title': 'Younger Dryas flood events: a case study from the middle Warta River valley (Central Poland)',
    'volume': '386',
    'author': 'Petera-Zganiacz',
    'year': '2015',
    'journal-title': 'Quaternary International'},
   {'key': '10.1002/ppp.1956-BIB0069|ppp1956-cit-0070',
    'doi-asserted-by': 'crossref',
    'first-page': '107',
    'DOI': '10.1002/jqs.3390100203',
    'article-title': 'A Late-Glacial colluvial sequence at Watcombe Bottom, Ventnor, Isle of Wight, England',
    'volume': '10',
    'author': 'Preece',
    'year': '1995',
    'journal-title': 'Journal of Quaternary Science'},
   {'key': '10.1002/ppp.1956-BIB0070|ppp1956-cit-0071',
    'year': '1998',
    'volume-title': 'Lake Gościąż, Central Poland. A Monographic Study, Part 1. W'},
   {'key': '10.1002/ppp.1956-BIB0071|ppp1956-cit-0072',
    'doi-asserted-by': 'crossref',
    'first-page': '14',
    'DOI': '10.1016/j.quascirev.2014.09.007',
    'article-title': 'A stratigraphic framework for abrupt climatic changes during the Last Glacial period based on three synchronized Greenland ice-core records: refining and extending the INTIMATE event stratigraphy',
    'volume': '106',
    'author': 'Rasmussen',
    'year': '2014',
    'journal-title': 'Quaternary Science Reviews'},
   {'key': '10.1002/ppp.1956-BIB0072|ppp1956-cit-0073',
    'doi-asserted-by': 'crossref',
    'first-page': '209',
    'DOI': '10.1016/S0277-3791(02)00190-7',
    'article-title': 'Investigation of the relationship between permafrost distribution in NW Europe and extensive winter sea-ice cover in the North Atlantic Ocean during the cold phases of the Last Glaciation',
    'volume': '22',
    'author': 'Renssen',
    'year': '2003',
    'journal-title': 'Quaternary Science Reviews'},
   {'key': '10.1002/ppp.1956-BIB0073|ppp1956-cit-0074',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1016/S0012-821X(99)00322-2',
    'article-title': 'Permafrost as a critical factor in paleoclimate modelling: the Younger Dryas case in Europe',
    'volume': '176',
    'author': 'Renssen',
    'year': '2000',
    'journal-title': 'Earth and Planetary Science Letters'},
   {'key': '10.1002/ppp.1956-BIB0074|ppp1956-cit-0075',
    'author': 'Romanovskij',
    'year': '1993',
    'volume-title': 'Problems of Lithosphere Cryogenesis'},
   {'key': '10.1002/ppp.1956-BIB0075|ppp1956-cit-0076',
    'first-page': '73',
    'article-title': 'Palaeohydrology and fossilization of a meandering channel of Younger Dryas age in the middle Prosna river valley',
    'volume': '7',
    'author': 'Rotnicki',
    'year': '1986',
    'journal-title': 'Quaternary Studies in Poland'},
   {'key': '10.1002/ppp.1956-BIB0076|ppp1956-cit-0077',
    'first-page': '113',
    'article-title': 'Late Vistulian and Holocene channel forms and deposits of the middle Prosna River and their palaeohydrological interpretation',
    'volume': '13/14',
    'author': 'Rotnicki',
    'year': '1998',
    'journal-title': 'Quaestiones Geographicae'},
   {'key': '10.1002/ppp.1956-BIB0077|ppp1956-cit-0078',
    'first-page': '55',
    'article-title': 'The pingo remnant in the Suwałki Lake region (NE Poland)',
    'volume': '15',
    'author': 'Rutkowski',
    'year': '1998',
    'journal-title': 'Quaternary Studies in Poland'},
   {'key': '10.1002/ppp.1956-BIB0078|ppp1956-cit-0079',
    'doi-asserted-by': 'crossref',
    'first-page': '7',
    'DOI': '10.1002/ppp.582',
    'article-title': 'Patterns of permafrost formation and degradation in relation to climate and ecosystems',
    'volume': '18',
    'author': 'Shur',
    'year': '2007',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1956-BIB0079|ppp1956-cit-0080',
    'first-page': '53',
    'article-title': 'Vegetation development in the Late Vistulian and functioning and end of the forest ecosystem in Koźmin Las',
    'volume': '102',
    'author': 'Stachowicz-Rybka',
    'year': '2014',
    'journal-title': 'Acta Geographica Lodziensia'},
   {'key': '10.1002/ppp.1956-BIB0080|ppp1956-cit-0081',
    'doi-asserted-by': 'crossref',
    'first-page': '97',
    'DOI': '10.1016/j.quaint.2015.04.017',
    'article-title': 'Climatic fluctuations reflected in the evolution of fluvial systems of Central-Eastern Europe (60-8 ka cal BP)',
    'volume': '388',
    'author': 'Starkel',
    'year': '2015',
    'journal-title': 'Quaternary International'},
   {'key': '10.1002/ppp.1956-BIB0081|ppp1956-cit-0082',
    'author': 'Szczypek',
    'year': '1986',
    'volume-title': 'Dune-Forming Processes in Central Part of the Kraków-Wieluń Upland'},
   {'key': '10.1002/ppp.1956-BIB0082|ppp1956-cit-0083',
    'doi-asserted-by': 'crossref',
    'first-page': '147',
    'DOI': '10.7163/GPol.2011.S1.10',
    'article-title': 'Local evidence of landform evolution vs. global changes - a case of Younger Dryas study in the upper Ner valley system, Central Poland',
    'volume': '88',
    'author': 'Turkowska',
    'year': '2011',
    'journal-title': 'Geographia Polonica'},
   {'key': '10.1002/ppp.1956-BIB0083|ppp1956-cit-0084',
    'first-page': '83',
    'article-title': 'A Warta River system during the Younger Dryas in the Koło Basin (Middle Poland)',
    'volume': '23',
    'author': 'Turkowska',
    'year': '2004',
    'journal-title': 'Quaestiones Geographicae'},
   {'key': '10.1002/ppp.1956-BIB0084|ppp1956-cit-0085',
    'first-page': '221',
    'article-title': 'Cracks and fissures of post-Alleröd age in the Netherlands',
    'volume': '17',
    'author': 'Van der Tak-Schneider',
    'year': '1968',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0085|ppp1956-cit-0086',
    'author': 'Vandenberghe',
    'first-page': '179',
    'year': '1988',
    'volume-title': 'Advances in Periglacial Geomorphology'},
   {'key': '10.1002/ppp.1956-BIB0086|ppp1956-cit-0087',
    'doi-asserted-by': 'crossref',
    'first-page': '343',
    'DOI': '10.1002/ppp.3430030408',
    'article-title': 'Cryoturbations: a sediment structural analysis',
    'volume': '3',
    'author': 'Vandenberghe',
    'year': '1992',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1956-BIB0087|ppp1956-cit-0088',
    'doi-asserted-by': 'crossref',
    'first-page': '121',
    'DOI': '10.1002/ppp.3430040205',
    'article-title': 'Permafrost changes in Europe during the last glacial',
    'volume': '4',
    'author': 'Vandenberghe',
    'year': '1993',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1956-BIB0088|ppp1956-cit-0089',
    'doi-asserted-by': 'crossref',
    'first-page': '75',
    'DOI': '10.1016/S1040-6182(01)00104-5',
    'article-title': 'Climate changes in east Europe and Siberia at the Late glacial-Holocene transition',
    'volume': '91',
    'author': 'Velichko',
    'year': '2002',
    'journal-title': 'Quaternary International'},
   {'key': '10.1002/ppp.1956-BIB0089|ppp1956-cit-0090',
    'doi-asserted-by': 'crossref',
    'first-page': '123',
    'DOI': '10.1002/ppp.3430020207',
    'article-title': 'Differential frost heave, load casting and convection: converging mechanisms; a discussion of the origin of cryoturbations',
    'volume': '2',
    'author': 'Vliet-Lanoë',
    'year': '1991',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1956-BIB0090|ppp1956-cit-0091',
    'first-page': '135',
    'article-title': 'Comparison between cryogenic and co-seismic or neotectonic deformations: implications for the European permafrost',
    'volume': '38',
    'author': 'Vliet-Lanoë',
    'year': '1999',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.1956-BIB0091|ppp1956-cit-0092',
    'first-page': '163',
    'article-title': 'Neotectonic and seismic activity in the English Channel and Dover Strait: the differentiation between co-seismic and periglacial deformation. Potential for large earthquakes in low seismic activity regions of Europe',
    'volume': '18',
    'author': 'Vliet-Lanoë',
    'year': '2000',
    'journal-title': 'Han/Lesse Cahiers du Centre Européen de Géodynamique et de Séismologie'},
   {'key': '10.1002/ppp.1956-BIB0092|ppp1956-cit-0093',
    'doi-asserted-by': 'crossref',
    'first-page': '103',
    'DOI': '10.1016/j.gloplacha.2004.03.003',
    'article-title': 'Distinguishing between tectonic and periglacial deformations of quaternary continental deposits in Europe',
    'volume': '43',
    'author': 'Vliet-Lanoë',
    'year': '2004',
    'journal-title': 'Global and Planetary Change'},
   {'key': '10.1002/ppp.1956-BIB0093|ppp1956-cit-0094',
    'author': 'Washburn',
    'year': '1979',
    'volume-title': 'Geocryology. A Survey of Periglacial Processes and Environments'},
   {'key': '10.1002/ppp.1956-BIB0094|ppp1956-cit-0095',
    'first-page': '43',
    'article-title': 'Younger Dryas and Holocene vegetation changes as the reflection of eolian processes and human activity at the archaeological site Witów near Łęczyca, Central Poland',
    'volume': '41',
    'author': 'Wasylikowa',
    'year': '1999',
    'journal-title': 'Prace i Materiały Muzeum Archeologicznego i Etnograficznego w Łodzi'},
   {'key': '10.1002/ppp.1956-BIB0095|ppp1956-cit-0096',
    'first-page': '55',
    'article-title': 'Palaeomorphologic and palaeotectonic evolution of the Konin elevation',
    'volume': '3',
    'author': 'Widera',
    'year': '1998',
    'journal-title': 'Geologos'},
   {'key': '10.1002/ppp.1956-BIB0096|ppp1956-cit-0097',
    'author': 'Zieliński',
    'year': '2015',
    'volume-title': 'Sedymentology. Deposits of rivers and lakes'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1956',
    'content-type': 'application/pdf',
    'content-version': 'vor',
    'intended-application': 'text-mining'},
   {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.1956',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2018, 8, 6]],
   'date-time': '2018-08-06T21:21:08Z',
   'timestamp': 1533590468000},
  'score': 15.395377,
  'subtitle': ['Permafrost presence in the Younger Dryas'],
  'issued': {'date-parts': [[2017, 7, 20]]},
  'references-count': 97,
  'journal-issue': {'published-print': {'date-parts': [[2017, 10]]},
   'issue': '4'},
  'URL': 'http://dx.doi.org/10.1002/ppp.1956',
  'archive': ['Portico'],
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
 {'indexed': {'date-parts': [[2020, 3, 29]],
   'date-time': '2020-03-29T01:01:20Z',
   'timestamp': 1585443680411},
  'reference-count': 76,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 883,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2013, 4]]},
  'DOI': '10.1002/ppp.1772',
  'type': 'journal-article',
  'created': {'date-parts': [[2013, 4, 11]],
   'date-time': '2013-04-11T12:03:42Z',
   'timestamp': 1365681822000},
  'page': '99-107',
  'source': 'Crossref',
  'is-referenced-by-count': 37,
  'title': ['Recent Advances in Mountain Permafrost Research'],
  'prefix': '10.1002',
  'volume': '24',
  'author': [{'given': 'Bernd',
    'family': 'Etzelmüller',
    'sequence': 'first',
    'affiliation': [{'name': 'Department of Geosciences; University of Oslo; Oslo; Norway'}]}],
  'member': '311',
  'published-online': {'date-parts': [[2013, 4, 11]]},
  'reference': [{'issue': '1',
    'key': '10.1002/ppp.1772-BIB0001|ppp1772-cit-0001',
    'doi-asserted-by': 'crossref',
    'first-page': '17pp',
    'DOI': '10.1515/arh-2007-0003',
    'article-title': 'The rheology of frozen soils',
    'volume': '17',
    'author': 'Arenson',
    'year': '2007',
    'journal-title': 'Applied Rheology'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0002|ppp1772-cit-0002',
    'doi-asserted-by': 'crossref',
    'first-page': '42',
    'DOI': '10.1002/ppp.669',
    'article-title': 'Hydrological and geomorphological significance of rock glaciers in the Dry Andes, Chile (27 degrees-33 degrees S)',
    'volume': '21',
    'author': 'Azocar',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '3-4',
    'key': '10.1002/ppp.1772-BIB0003|ppp1772-cit-0003',
    'doi-asserted-by': 'crossref',
    'first-page': '98',
    'DOI': '10.1016/j.geomorph.2011.05.002',
    'article-title': 'Beyond confusion: Rock glaciers as cryo-conditioned landforms',
    'volume': '131',
    'author': 'Berthling',
    'year': '2011',
    'journal-title': 'Geomorphology'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0004|ppp1772-cit-0004',
    'doi-asserted-by': 'crossref',
    'first-page': '378',
    'DOI': '10.1016/j.yqres.2010.12.011',
    'article-title': 'The concept of cryo-conditioning in landscape evolution',
    'volume': '75',
    'author': 'Berthling',
    'year': '2011',
    'journal-title': 'Quaternary Research'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0005|ppp1772-cit-0005',
    'doi-asserted-by': 'crossref',
    'first-page': '807',
    'DOI': '10.5194/tc-6-807-2012',
    'article-title': 'Permafrost distribution in the European Alps: calculation and evaluation of an index map and summary statistics',
    'volume': '6',
    'author': 'Boeckli',
    'year': '2012a',
    'journal-title': 'The Cryosphere'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0006|ppp1772-cit-0006',
    'doi-asserted-by': 'crossref',
    'first-page': '125',
    'DOI': '10.5194/tc-6-125-2012',
    'article-title': 'A statistical approach to modelling permafrost distribution in the European Alps or similar mountain ranges',
    'volume': '6',
    'author': 'Boeckli',
    'year': '2012b',
    'journal-title': 'The Cryosphere'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0007|ppp1772-cit-0007',
    'doi-asserted-by': 'crossref',
    'first-page': '443',
    'DOI': '10.1139/E08-013',
    'article-title': 'Mountain permafrost probability mapping using the BTS method in two climatically dissimilar locations, northwest Canada',
    'volume': '45',
    'author': 'Bonnaventure',
    'year': '2008',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'issue': '1-2',
    'key': '10.1002/ppp.1772-BIB0008|ppp1772-cit-0008',
    'doi-asserted-by': 'crossref',
    'first-page': '293',
    'DOI': '10.1007/s10584-010-9818-5',
    'article-title': 'Modelling climate change effects on the spatial distribution of mountain permafrost at three sites in northwest Canada',
    'volume': '105',
    'author': 'Bonnaventure',
    'year': '2011',
    'journal-title': 'Climatic Change'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0009|ppp1772-cit-0009',
    'doi-asserted-by': 'crossref',
    'first-page': '52',
    'DOI': '10.1002/ppp.1733',
    'article-title': 'A Permafrost Probability Model for the Southern Yukon and Northern British Columbia, Canada',
    'volume': '23',
    'author': 'Bonnaventure',
    'year': '2012',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': 'F2',
    'key': '10.1002/ppp.1772-BIB0010|ppp1772-cit-0010',
    'doi-asserted-by': 'crossref',
    'DOI': '10.1029/2006JF000528',
    'article-title': 'Statistical estimation and generalized additive modeling of rock glacier distribution in the San Juan Mountains, Colorado, United States',
    'volume': '112',
    'author': 'Brenning',
    'year': '2007',
    'journal-title': 'Journal of Geophysical Research-Earth Surface'},
   {'issue': 'F2',
    'key': '10.1002/ppp.1772-BIB0011|ppp1772-cit-0011',
    'doi-asserted-by': 'crossref',
    'DOI': '10.1029/2006JF000631',
    'article-title': 'Responses of permafrost to climate change and their environmental significance, Qinghai-Tibet Plateau',
    'volume': '112',
    'author': 'Cheng',
    'year': '2007',
    'journal-title': 'Journal of Geophysical Research-Earth Surface'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0012|ppp1772-cit-0012',
    'doi-asserted-by': 'crossref',
    'first-page': '156',
    'DOI': '10.1002/ppp.687',
    'article-title': 'The Thermal State of Permafrost in the Nordic Area during the International Polar Year 2007-2009',
    'volume': '21',
    'author': 'Christiansen',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '5',
    'key': '10.1002/ppp.1772-BIB0013|ppp1772-cit-0013',
    'doi-asserted-by': 'crossref',
    'first-page': '1521',
    'DOI': '10.5194/nhess-12-1521-2012',
    'article-title': 'Rapid movement of frozen debris-lobes: implications for permafrost degradation and slope instability in the south-central Brooks Range, Alaska',
    'volume': '12',
    'author': 'Daanen',
    'year': '2012',
    'journal-title': 'Natural Hazards and Earth System Sciences'},
   {'issue': '3',
    'key': '10.1002/ppp.1772-BIB0014|ppp1772-cit-0014',
    'doi-asserted-by': 'crossref',
    'first-page': '773',
    'DOI': '10.5194/tc-5-773-2011',
    'article-title': 'Simulation of permafrost and seasonal thaw depth in the JULES land surface scheme',
    'volume': '5',
    'author': 'Dankers',
    'year': '2011',
    'journal-title': 'The Cryosphere'},
   {'issue': '5',
    'key': '10.1002/ppp.1772-BIB0015|ppp1772-cit-0015',
    'doi-asserted-by': 'crossref',
    'first-page': '491',
    'DOI': '10.1127/0941-2948/2010/0476',
    'article-title': 'Influence of atmospheric forcing parameters on modelled mountain permafrost evolution',
    'volume': '19',
    'author': 'Engelhardt',
    'year': '2010',
    'journal-title': 'Meteorologische Zeitschrift'},
   {'key': '10.1002/ppp.1772-BIB0016|ppp1772-cit-0016',
    'doi-asserted-by': 'crossref',
    'first-page': '67',
    'DOI': '10.5194/tc-5-67-2011',
    'article-title': 'Modeling the temperature evolution of Svalbard permafrost during the 20th and 21st century',
    'volume': '5',
    'author': 'Etzelmuller',
    'year': '2011',
    'journal-title': 'The Cryosphere'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0017|ppp1772-cit-0017',
    'doi-asserted-by': 'crossref',
    'first-page': '343',
    'DOI': '10.1002/ppp.733',
    'article-title': 'Air and Ground Temperature Variations Observed along Elevation and Continentality Gradients in Southern Norway',
    'volume': '22',
    'author': 'Farbrot',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '5',
    'key': '10.1002/ppp.1772-BIB0018|ppp1772-cit-0018',
    'doi-asserted-by': 'crossref',
    'first-page': '1245',
    'DOI': '10.5194/gmd-5-1245-2012',
    'article-title': 'TopoSUB: a tool for efficient large area numerical modelling in complex topography at sub-grid scales',
    'volume': '5',
    'author': 'Fiddes',
    'year': '2012',
    'journal-title': 'Geoscientific Model Development'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0019|ppp1772-cit-0019',
    'doi-asserted-by': 'crossref',
    'first-page': '241',
    'DOI': '10.5194/nhess-12-241-2012',
    'article-title': 'On the influence of topographic, geological and cryospheric factors on rock avalanches and rockfalls in high-mountain areas',
    'volume': '12',
    'author': 'Fischer',
    'year': '2012',
    'journal-title': 'Natural Hazards and Earth System Sciences'},
   {'issue': '3-4',
    'key': '10.1002/ppp.1772-BIB0020|ppp1772-cit-0020',
    'doi-asserted-by': 'crossref',
    'first-page': '515',
    'DOI': '10.1007/s10584-009-9679-y',
    'article-title': 'Applying probabilistic projections of climate change with impact models: a case study for sub-arctic palsa mires in Fennoscandia',
    'volume': '99',
    'author': 'Fronzek',
    'year': '2010',
    'journal-title': 'Climatic Change'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0021|ppp1772-cit-0021',
    'doi-asserted-by': 'crossref',
    'first-page': '129',
    'DOI': '10.1002/ppp.585',
    'article-title': 'The lower limit of mountain permafrost in the Russian Altai Mountains',
    'volume': '18',
    'author': 'Fukui',
    'year': '2007',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0022|ppp1772-cit-0022',
    'doi-asserted-by': 'crossref',
    'first-page': '221',
    'DOI': '10.5194/tc-6-221-2012',
    'article-title': 'Derivation and analysis of a high-resolution estimate of global permafrost zonation',
    'volume': '6',
    'author': 'Gruber',
    'year': '2012',
    'journal-title': 'The Cryosphere'},
   {'issue': 'F2',
    'key': '10.1002/ppp.1772-BIB0023|ppp1772-cit-0023',
    'doi-asserted-by': 'crossref',
    'DOI': '10.1029/2006JF000547',
    'article-title': 'Permafrost in steep bedrock slopes and its temperature-related destabilization following climate change',
    'volume': '112',
    'author': 'Gruber',
    'year': '2007',
    'journal-title': 'Journal of Geophysical Research-Earth Surface'},
   {'issue': '13',
    'key': '10.1002/ppp.1772-BIB0024|ppp1772-cit-0024',
    'doi-asserted-by': 'crossref',
    'DOI': '10.1029/2004GL020051',
    'article-title': 'Permafrost thaw and destabilization of Alpine rock walls in the hot summer of 2003',
    'volume': '31',
    'author': 'Gruber',
    'year': '2004',
    'journal-title': 'Geophysical Research Letters'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0025|ppp1772-cit-0025',
    'doi-asserted-by': 'crossref',
    'first-page': '177',
    'DOI': '10.1111/j.1468-0459.2012.00468.x',
    'article-title': 'Preface: The Mountain Cryosphere - A Holistic View on Processes and their Interactions',
    'volume': '94',
    'author': 'Gruber',
    'year': '2012',
    'journal-title': 'Geografiska Annaler: Series A, Physical Geography'},
   {'key': '10.1002/ppp.1772-BIB0076|ppp1772-cit-0076',
    'author': 'Gruber',
    'year': '2012',
    'article-title': 'Modeling the spatial dynamics of permafrost and seasonally frozen ground at diverse scales',
    'journal-title': 'The Cryosphere'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0026|ppp1772-cit-0026',
    'doi-asserted-by': 'crossref',
    'first-page': '431',
    'DOI': '10.5194/tc-5-431-2011',
    'article-title': 'Scale-dependent measurement and analysis of ground surface temperature variability in alpine terrain',
    'volume': '5',
    'author': 'Gubler',
    'year': '2011',
    'journal-title': 'The Cryosphere'},
   {'issue': '1-2',
    'key': '10.1002/ppp.1772-BIB0027|ppp1772-cit-0027',
    'first-page': '221',
    'article-title': 'Die Basis Temperatur der winterlichen Schneedecke als möglicher Indikator für die Verbreitung von Permafrost',
    'volume': '9',
    'author': 'Haeberli',
    'year': '1973',
    'journal-title': 'Zeitschrift für Gletscherkunde und Glazialgeologie'},
   {'issue': '3',
    'key': '10.1002/ppp.1772-BIB0028|ppp1772-cit-0028',
    'doi-asserted-by': 'crossref',
    'first-page': '189',
    'DOI': '10.1002/ppp.561',
    'article-title': 'Permafrost creep and rock glacier dynamics',
    'volume': '17',
    'author': 'Haeberli',
    'year': '2006',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '200',
    'key': '10.1002/ppp.1772-BIB0029|ppp1772-cit-0029',
    'doi-asserted-by': 'crossref',
    'first-page': '1043',
    'DOI': '10.3189/002214311796406121',
    'article-title': 'Mountain permafrost: development and challenges of a young research field',
    'volume': '57',
    'author': 'Haeberli',
    'year': '2010',
    'journal-title': 'Journal of Glaciology'},
   {'issue': '3-4',
    'key': '10.1002/ppp.1772-BIB0030|ppp1772-cit-0030',
    'doi-asserted-by': 'crossref',
    'first-page': '117',
    'DOI': '10.1016/j.earscirev.2008.12.002',
    'article-title': 'Permafrost and climate in Europe: Monitoring and modelling thermal, geomorphological and geotechnical responses',
    'volume': '92',
    'author': 'Harris',
    'year': '2009',
    'journal-title': 'Earth-Science Reviews'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0031|ppp1772-cit-0031',
    'doi-asserted-by': 'crossref',
    'first-page': '977',
    'DOI': '10.5194/tc-5-977-2011',
    'article-title': 'Temperature variability and offset in steep alpine rock and ice faces',
    'volume': '5',
    'author': 'Hasler',
    'year': '2011',
    'journal-title': 'The Cryosphere'},
   {'key': '10.1002/ppp.1772-BIB0032|ppp1772-cit-0032',
    'author': 'Hasler',
    'volume': '117',
    'year': '2012',
    'article-title': 'Kinematics of steep bedrock permafrost',
    'journal-title': 'Journal of Geophysical Research-Earth Surface',
    'DOI': '10.1029/2011JF001981',
    'doi-asserted-by': 'crossref'},
   {'issue': '3',
    'key': '10.1002/ppp.1772-BIB0033|ppp1772-cit-0033',
    'doi-asserted-by': 'crossref',
    'first-page': '553',
    'DOI': '10.5194/tc-6-553-2012',
    'article-title': 'Modelling borehole temperatures in Southern Norway - insights into permafrost dynamics during the 20th and 21st century',
    'volume': '6',
    'author': 'Hipp',
    'year': '2012',
    'journal-title': 'The Cryosphere'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0034|ppp1772-cit-0034',
    'doi-asserted-by': 'crossref',
    'first-page': '115',
    'DOI': '10.1002/ppp.584',
    'article-title': 'Landscape scale determinants of periglacial features in subarctic Finland: A grid-based modelling approach',
    'volume': '18',
    'author': 'Hjort',
    'year': '2007',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '1919',
    'key': '10.1002/ppp.1772-BIB0035|ppp1772-cit-0035',
    'doi-asserted-by': 'crossref',
    'first-page': '2435',
    'DOI': '10.1098/rsta.2010.0078',
    'article-title': 'Recent and future warm extreme events and high-mountain slope stability',
    'volume': '368',
    'author': 'Huggel',
    'year': '2010',
    'journal-title': 'Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0036|ppp1772-cit-0036',
    'doi-asserted-by': 'crossref',
    'first-page': '77',
    'DOI': '10.1002/esp.2223',
    'article-title': 'Is climate change responsible for changing landslide activity in high mountains?',
    'volume': '37',
    'author': 'Huggel',
    'year': '2012',
    'journal-title': 'Earth Surface Processes and Landforms'},
   {'key': '10.1002/ppp.1772-BIB0037|ppp1772-cit-0037',
    'doi-asserted-by': 'crossref',
    'first-page': 'L17502',
    'DOI': '10.1029/2007GL031002',
    'article-title': 'Recent extreme near-surface permafrost temperatures on Svalbard in relation to future climate scenarios',
    'volume': '34',
    'author': 'Isaksen',
    'year': '2007',
    'journal-title': 'Geophysical Research Letters'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0038|ppp1772-cit-0038',
    'doi-asserted-by': 'crossref',
    'first-page': '361',
    'DOI': '10.1002/ppp.728',
    'article-title': 'Degrading Mountain Permafrost in Southern Norway: Spatial and Temporal Variability of Mean Ground Temperatures, 1999-2009',
    'volume': '22',
    'author': 'Isaksen',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '3',
    'key': '10.1002/ppp.1772-BIB0039|ppp1772-cit-0039',
    'doi-asserted-by': 'crossref',
    'first-page': '613',
    'DOI': '10.5194/tc-6-613-2012',
    'article-title': 'Numerical modeling of permafrost dynamics in Alaska using a high spatial resolution dataset',
    'volume': '6',
    'author': 'Jafarov',
    'year': '2012',
    'journal-title': 'The Cryosphere'},
   {'issue': '1-2',
    'key': '10.1002/ppp.1772-BIB0040|ppp1772-cit-0040',
    'doi-asserted-by': 'crossref',
    'first-page': 'vii',
    'DOI': '10.1016/j.gloplacha.2006.07.008',
    'article-title': 'Climate change impacts on mountain glaciers and permafrost',
    'volume': '56',
    'author': 'Kääb',
    'year': '2007a',
    'journal-title': 'Global and Planetary Change'},
   {'issue': '1-2',
    'key': '10.1002/ppp.1772-BIB0041|ppp1772-cit-0041',
    'doi-asserted-by': 'crossref',
    'first-page': '172',
    'DOI': '10.1016/j.gloplacha.2006.07.005',
    'article-title': 'On the response of rockglacier creep to surface temperature increase',
    'volume': '56',
    'author': 'Kääb',
    'year': '2007b',
    'journal-title': 'Global and Planetary Change'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0042|ppp1772-cit-0042',
    'doi-asserted-by': 'crossref',
    'first-page': '80',
    'DOI': '10.1002/ppp.740',
    'article-title': 'Research Perspectives on Unstable High-alpine Bedrock Permafrost: Measurement, Modelling and Process Understanding',
    'volume': '23',
    'author': 'Krautblatter',
    'year': '2012a',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1772-BIB0043|ppp1772-cit-0043',
    'author': 'Krautblatter',
    'year': '2012b',
    'article-title': 'Why permafrost rocks become unstable: a rock-ice-mechanical model in time and space',
    'journal-title': 'Earth Surface Processes and Landforms'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0044|ppp1772-cit-0044',
    'doi-asserted-by': 'crossref',
    'first-page': '105',
    'DOI': '10.1002/ppp.696',
    'article-title': 'The lasting impacts of the fourth international polar year on permafrost science',
    'volume': '21',
    'author': 'Lewkowicz',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0045|ppp1772-cit-0045',
    'doi-asserted-by': 'crossref',
    'first-page': '153',
    'DOI': '10.1002/ppp.720',
    'article-title': 'Equivalent Elevation: A New Method to Incorporate Variable Surface Lapse Rates into Mountain Permafrost Modelling',
    'volume': '22',
    'author': 'Lewkowicz',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0046|ppp1772-cit-0046',
    'doi-asserted-by': 'crossref',
    'first-page': '320',
    'DOI': '10.1002/ppp.703',
    'article-title': 'Characteristics of Discontinuous Permafrost based on Ground Temperature Measurements and Electrical Resistivity Tomography, Southern Yukon, Canada',
    'volume': '22',
    'author': 'Lewkowicz',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0047|ppp1772-cit-0047',
    'doi-asserted-by': 'crossref',
    'first-page': '195',
    'DOI': '10.1111/j.1468-0459.2012.00462.x',
    'article-title': 'Spatial and Thermal Characteristics of Mountain Permafrost, Northwest Canada',
    'volume': '94A',
    'author': 'Lewkowicz',
    'year': '2012',
    'journal-title': 'Geografiska Annaler: Series A, Physical Geography'},
   {'issue': '3',
    'key': '10.1002/ppp.1772-BIB0048|ppp1772-cit-0048',
    'doi-asserted-by': 'crossref',
    'first-page': '175',
    'DOI': '10.1111/j.1468-0459.2011.00430.x',
    'article-title': 'A regional inventory of rock glaciers and ice-cored moraines in Norway',
    'volume': '93',
    'author': 'Lilleøren',
    'year': '2011',
    'journal-title': 'Geografiska Annaler'},
   {'key': '10.1002/ppp.1772-BIB0049|ppp1772-cit-0049',
    'doi-asserted-by': 'crossref',
    'first-page': '209',
    'DOI': '10.1016/j.gloplacha.2012.05.016',
    'article-title': 'The relative age of mountain permafrost - estimation of Holocene permafrost limits in Norway',
    'volume': '92-93',
    'author': 'Lilleøren',
    'year': '2012',
    'journal-title': 'Global and Planetary Change'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0050|ppp1772-cit-0050',
    'doi-asserted-by': 'crossref',
    'first-page': '369',
    'DOI': '10.1002/ppp.602',
    'article-title': 'Effect of climate change on runoff in a basin with mountain permafrost, northwest China',
    'volume': '18',
    'author': 'Liu',
    'year': '2007',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '187',
    'key': '10.1002/ppp.1772-BIB0051|ppp1772-cit-0051',
    'doi-asserted-by': 'crossref',
    'first-page': '696',
    'DOI': '10.3189/002214308786570881',
    'article-title': 'A sensitivity study of factors influencing warm/thin permafrost in the Swiss Alps',
    'volume': '54',
    'author': 'Luetschg',
    'year': '2008',
    'journal-title': 'Journal of Glaciology'},
   {'issue': '3-4',
    'key': '10.1002/ppp.1772-BIB0052|ppp1772-cit-0052',
    'doi-asserted-by': 'crossref',
    'first-page': '311',
    'DOI': '10.1016/j.gloplacha.2006.07.023',
    'article-title': 'Permafrost warming in the Tien Shan Mountains, Central Asia',
    'volume': '56',
    'author': 'Marchenko',
    'year': '2007',
    'journal-title': 'Global and Planetary Change'},
   {'issue': '3',
    'key': '10.1002/ppp.1772-BIB0053|ppp1772-cit-0053',
    'doi-asserted-by': 'crossref',
    'first-page': '274',
    'DOI': '10.2307/1552484',
    'article-title': 'Snowmelt evolution mapping using an energy balance approach over an alpine terrain',
    'volume': '34',
    'author': 'Mittaz',
    'year': '2002',
    'journal-title': 'Arctic, Antarctic, and Alpine Research'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0054|ppp1772-cit-0054',
    'doi-asserted-by': 'crossref',
    'first-page': '273',
    'DOI': '10.1002/ppp.738',
    'article-title': 'Editorial',
    'volume': '22',
    'author': 'Murton',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0055|ppp1772-cit-0055',
    'doi-asserted-by': 'crossref',
    'first-page': '85',
    'DOI': '10.5194/tc-3-85-2009',
    'article-title': 'Transient thermal effects in Alpine permafrost',
    'volume': '3',
    'author': 'Noetzli',
    'year': '2009',
    'journal-title': 'The Cryosphere'},
   {'issue': 'F2',
    'key': '10.1002/ppp.1772-BIB0056|ppp1772-cit-0056',
    'doi-asserted-by': 'crossref',
    'DOI': '10.1029/2006JF000545',
    'article-title': 'Three-dimensional distribution and evolution of permafrost temperatures in idealized high-mountain topography',
    'volume': '112',
    'author': 'Noetzli',
    'year': '2007',
    'journal-title': 'Journal of Geophysical Research-Earth Surface'},
   {'issue': '1',
    'key': '10.1002/ppp.1772-BIB0057|ppp1772-cit-0057',
    'doi-asserted-by': 'crossref',
    'first-page': '23',
    'DOI': '10.1016/j.coldregions.2009.01.005',
    'article-title': 'Active layer thickness calculation over the Qinghai-Tibet Plateau',
    'volume': '57',
    'author': 'Pang',
    'year': '2009',
    'journal-title': 'Cold Regions Science and Technology'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0058|ppp1772-cit-0058',
    'doi-asserted-by': 'crossref',
    'first-page': '278',
    'DOI': '10.1080/00291950802517890',
    'article-title': 'Statistic-empirical modelling of mountain permafrost distribution in the Abisko region, sub-Arctic northern Sweden',
    'volume': '62',
    'author': 'Ridefelt',
    'year': '2008',
    'journal-title': 'Norsk Geografisk Tidsskrift-Norwegian Journal of Geography'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0059|ppp1772-cit-0059',
    'doi-asserted-by': 'crossref',
    'first-page': '137',
    'DOI': '10.1002/ppp.615',
    'article-title': 'Recent advances in permafrost modelling',
    'volume': '19',
    'author': 'Riseborough',
    'year': '2008',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0060|ppp1772-cit-0060',
    'doi-asserted-by': 'crossref',
    'first-page': '106',
    'DOI': '10.1002/ppp.689',
    'article-title': 'Permafrost Thermal State in the Polar Northern Hemisphere during the International Polar Year 2007-2009: a Synthesis',
    'volume': '21',
    'author': 'Romanovsky',
    'year': '2010a',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0061|ppp1772-cit-0061',
    'doi-asserted-by': 'crossref',
    'first-page': '136',
    'DOI': '10.1002/ppp.683',
    'article-title': 'Thermal state of permafrost in Russia',
    'volume': '22',
    'author': 'Romanovsky',
    'year': '2010b',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '6',
    'key': '10.1002/ppp.1772-BIB0062|ppp1772-cit-0062',
    'doi-asserted-by': 'crossref',
    'first-page': '1323',
    'DOI': '10.5194/tc-6-1323-2012',
    'article-title': 'Simulating snow maps for Norway: description and statistical evaluation of the seNorge snow model',
    'volume': '6',
    'author': 'Saloranta',
    'year': '2012',
    'journal-title': 'The Cryosphere'},
   {'issue': '1-2',
    'key': '10.1002/ppp.1772-BIB0063|ppp1772-cit-0063',
    'doi-asserted-by': 'crossref',
    'first-page': '188',
    'DOI': '10.1016/j.gloplacha.2006.07.006',
    'article-title': 'The application of Regional Climate Model output for the simulation of high-mountain permafrost scenarios',
    'volume': '56',
    'author': 'Salzmann',
    'year': '2007a',
    'journal-title': 'Global and Planetary Change'},
   {'issue': 'F2',
    'key': '10.1002/ppp.1772-BIB0064|ppp1772-cit-0064',
    'doi-asserted-by': 'crossref',
    'DOI': '10.1029/2006JF000527',
    'article-title': 'Ground surface temperature scenarios in complex high-mountain topography based on regional climate model results',
    'volume': '112',
    'author': 'Salzmann',
    'year': '2007b',
    'journal-title': 'Journal of Geophysical Research-Earth Surface'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0065|ppp1772-cit-0065',
    'doi-asserted-by': 'crossref',
    'first-page': '325',
    'DOI': '10.1002/ppp.694',
    'article-title': 'Meltwater Infiltration into the Frozen Active Layer at an Alpine Permafrost Site',
    'volume': '21',
    'author': 'Scherler',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0066|ppp1772-cit-0066',
    'doi-asserted-by': 'crossref',
    'first-page': '117',
    'DOI': '10.1002/ppp.690',
    'article-title': 'Thermal State of Permafrost in North America: A Contribution to the International Polar Year',
    'volume': '21',
    'author': 'Smith',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0067|ppp1772-cit-0067',
    'doi-asserted-by': 'crossref',
    'first-page': '182',
    'DOI': '10.1002/ppp.685',
    'article-title': 'Thermal State of Permafrost and Active-layer Monitoring in the Antarctic: Advances During the International Polar Year 2007-2009',
    'volume': '21',
    'author': 'Vieira',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1772-BIB0068|ppp1772-cit-0068',
    'author': 'Vonder Mühll',
    'first-page': '1869',
    'year': '2008',
    'volume-title': 'Proceedings, Ninth International Conference on Permafrost'},
   {'key': '10.1002/ppp.1772-BIB0069|ppp1772-cit-0069',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1016/j.sedgeo.2012.02.005',
    'article-title': 'Glacier-permafrost interactions: Processes, products and glaciological implications',
    'volume': '255',
    'author': 'Waller',
    'year': '2012',
    'journal-title': 'Sedimentary Geology'},
   {'issue': '3',
    'key': '10.1002/ppp.1772-BIB0070|ppp1772-cit-0070',
    'doi-asserted-by': 'crossref',
    'first-page': '741',
    'DOI': '10.5194/tc-5-741-2011',
    'article-title': 'Modeling the thermal dynamics of the active layer at two contrasting permafrost sites on Svalbard and on the Tibetan Plateau',
    'volume': '5',
    'author': 'Weismüller',
    'year': '2011',
    'journal-title': 'The Cryosphere'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0071|ppp1772-cit-0071',
    'doi-asserted-by': 'crossref',
    'first-page': '945',
    'DOI': '10.5194/tc-5-945-2011',
    'article-title': 'Modeling the impact of wintertime rain events on the thermal regime of permafrost',
    'volume': '5',
    'author': 'Westermann',
    'year': '2011',
    'journal-title': 'The Cryosphere'},
   {'issue': '4',
    'key': '10.1002/ppp.1772-BIB0072|ppp1772-cit-0072',
    'doi-asserted-by': 'crossref',
    'first-page': '893',
    'DOI': '10.5194/tc-5-893-2011',
    'article-title': 'Spatio-temporal measurements and analysis of snow depth in a rock face',
    'volume': '5',
    'author': 'Wirz',
    'year': '2011',
    'journal-title': 'The Cryosphere'},
   {'issue': '3',
    'key': '10.1002/ppp.1772-BIB0073|ppp1772-cit-0073',
    'doi-asserted-by': 'crossref',
    'first-page': '607',
    'DOI': '10.5194/tc-6-607-2012',
    'article-title': 'Thermal state of the active layer and permafrost along the Qinghai-Xizang (Tibet) Railway from 2006 to 2010',
    'volume': '6',
    'author': 'Wu',
    'year': '2012',
    'journal-title': 'The Cryosphere'},
   {'issue': 'F2',
    'key': '10.1002/ppp.1772-BIB0074|ppp1772-cit-0074',
    'doi-asserted-by': 'crossref',
    'first-page': 'F02S01',
    'DOI': '10.1029/2007JF000821',
    'article-title': 'Introduction to special section: Permafrost and Seasonally Frozen Ground Under a Changing Climate',
    'volume': '112',
    'author': 'Zhang',
    'year': '2007',
    'journal-title': 'Journal of Geophysical Research'},
   {'issue': '2',
    'key': '10.1002/ppp.1772-BIB0075|ppp1772-cit-0075',
    'doi-asserted-by': 'crossref',
    'first-page': '198',
    'DOI': '10.1002/ppp.688',
    'article-title': 'Thermal State of Permafrost and Active Layer in Central Asia during the International Polar Year',
    'volume': '21',
    'author': 'Zhao',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1772',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2019, 7, 12]],
   'date-time': '2019-07-12T12:23:23Z',
   'timestamp': 1562934203000},
  'score': 15.395377,
  'subtitle': ['Recent Advances in Mountain Permafrost Research'],
  'issued': {'date-parts': [[2013, 4]]},
  'references-count': 76,
  'journal-issue': {'published-print': {'date-parts': [[2013, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.1772',
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
 {'indexed': {'date-parts': [[2020, 3, 30]],
   'date-time': '2020-03-30T00:13:29Z',
   'timestamp': 1585527209833},
  'reference-count': 0,
  'publisher': 'Wiley',
  'issue': '4',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 700,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2013, 10]]},
  'DOI': '10.1002/ppp.1795',
  'type': 'journal-article',
  'created': {'date-parts': [[2013, 12, 3]],
   'date-time': '2013-12-03T08:16:38Z',
   'timestamp': 1386058598000},
  'page': '347-349',
  'source': 'Crossref',
  'is-referenced-by-count': 0,
  'title': ['Report from the International Permafrost Association: High level of permafrost interdisciplinary research activity'],
  'prefix': '10.1002',
  'volume': '24',
  'author': [{'given': 'Hanne H.',
    'family': 'Christiansen',
    'sequence': 'first',
    'affiliation': []}],
  'member': '311',
  'published-online': {'date-parts': [[2013, 12, 3]]},
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1795',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2017, 3, 29]],
   'date-time': '2017-03-29T07:02:13Z',
   'timestamp': 1490770933000},
  'score': 15.395377,
  'subtitle': ['IPA Report'],
  'issued': {'date-parts': [[2013, 10]]},
  'references-count': 0,
  'journal-issue': {'published-print': {'date-parts': [[2013, 10]]},
   'issue': '4'},
  'URL': 'http://dx.doi.org/10.1002/ppp.1795',
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
 {'indexed': {'date-parts': [[2020, 4, 29]],
   'date-time': '2020-04-29T03:40:06Z',
   'timestamp': 1588131606076},
  'reference-count': 23,
  'publisher': 'Wiley',
  'issue': '4',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 3165,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost Periglac. Process.'],
  'published-print': {'date-parts': [[2007, 10]]},
  'DOI': '10.1002/ppp.603',
  'type': 'journal-article',
  'created': {'date-parts': [[2007, 12, 3]],
   'date-time': '2007-12-03T23:38:10Z',
   'timestamp': 1196725090000},
  'page': '385-392',
  'source': 'Crossref',
  'is-referenced-by-count': 3,
  'title': ['Report from the International Permafrost Association: a brief history of the international permafrost conferences (1963–2003)'],
  'prefix': '10.1002',
  'volume': '18',
  'author': [{'given': 'Jerry',
    'family': 'Brown',
    'sequence': 'first',
    'affiliation': []},
   {'given': 'H. Jesse',
    'family': 'Walker',
    'sequence': 'additional',
    'affiliation': []}],
  'member': '311',
  'published-online': {'date-parts': [[2007]]},
  'reference': [{'key': '10.1002/ppp.603-BIB1',
    'author': 'Brown',
    'volume': '33',
    'first-page': '19',
    'year': '1988a',
    'journal-title': 'Geotimes'},
   {'key': '10.1002/ppp.603-BIB2',
    'author': 'Brown',
    'volume': '2',
    'first-page': '90',
    'year': '1988b',
    'journal-title': 'Arctic Research of the United States'},
   {'key': '10.1002/ppp.603-BIB3',
    'author': 'Brown',
    'volume': '6',
    'first-page': '2',
    'year': '1989',
    'journal-title': 'Frozen Ground'},
   {'key': '10.1002/ppp.603-BIB4',
    'author': 'Bulletin of the International Permafrost Association',
    'volume': '14',
    'first-page': '5',
    'year': '1993',
    'journal-title': 'Frozen Ground'},
   {'key': '10.1002/ppp.603-BIB5',
    'author': 'French',
    'volume': '21',
    'first-page': '257',
    'year': '1998a',
    'journal-title': 'Episodes',
    'DOI': '10.18814/epiiugs/1998/v21i4/008',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.603-BIB6',
    'author': 'French',
    'volume': '22',
    'first-page': '3',
    'year': '1998b',
    'journal-title': 'Frozen Ground'},
   {'key': '10.1002/ppp.603-BIB7',
    'author': 'French',
    'volume': '37',
    'first-page': '45',
    'year': '1998',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.603-BIB8',
    'author': 'Haeberli',
    'volume': '27',
    'first-page': '3',
    'year': '2003',
    'journal-title': 'Frozen Ground'},
   {'key': '10.1002/ppp.603-BIB9',
    'author': 'Jahn',
    'volume': '31',
    'first-page': '119',
    'year': '1986',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.603-BIB10',
    'author': 'Kamensky',
    'first-page': '210',
    'year': '1998',
    'unstructured': ', , . 1998. Problems of Geocryology. SB RAS Publishers: Yakutsk; 210 pp.',
    'volume-title': 'Problems of Geocryology'},
   {'key': '10.1002/ppp.603-BIB11',
    'author': 'Muller',
    'year': '1947',
    'unstructured': '1947. Permafrost or Permanently Frozen Ground and Related Engineering Problems. JW Edwards: Ann Arbor, Michigan.',
    'volume-title': 'Permafrost or Permanently Frozen Ground and Related Engineering Problems'},
   {'key': '10.1002/ppp.603-BIB12',
    'author': 'Péwé',
    'volume': '1',
    'first-page': '29',
    'year': '1973a',
    'journal-title': 'Arctic Bulletin'},
   {'key': '10.1002/ppp.603-BIB13',
    'author': 'Péwé',
    'volume': '18',
    'first-page': '23',
    'year': '1973b',
    'journal-title': 'Geotimes'},
   {'key': '10.1002/ppp.603-BIB14',
    'author': 'Péwé',
    'volume': '9',
    'first-page': '253',
    'year': '1973c',
    'journal-title': 'Zeitschrift fur Gletschkunde und Glazialgeologie'},
   {'key': '10.1002/ppp.603-BIB15',
    'author': 'Péwé',
    'volume': '15',
    'first-page': '119',
    'year': '1979',
    'journal-title': 'Zeitschrift fur Gletscherkunde und Glazialgeologie'},
   {'key': '10.1002/ppp.603-BIB16',
    'author': 'Péwé',
    'volume': '18',
    'first-page': '169',
    'year': '1982',
    'journal-title': 'Zeitschrift fur Gletscherkunde und Glazialgeologie'},
   {'key': '10.1002/ppp.603-BIB17',
    'author': 'Péwé',
    'volume': '29',
    'first-page': '10',
    'year': '1984',
    'journal-title': 'Geotimes'},
   {'key': '10.1002/ppp.603-BIB18',
    'author': 'Péwé',
    'volume': '31',
    'first-page': '223',
    'year': '1986',
    'journal-title': 'Biuletyn Peryglacjalny'},
   {'key': '10.1002/ppp.603-BIB19',
    'first-page': '974',
    'volume-title': 'Permafrost Sixth International Conference, Proceedings',
    'volume': '2',
    'author': 'Schmitt',
    'year': '1993',
    'unstructured': '1993. Field trip A-1 from Lanzhou to Lhasa (July 12-22,1993) and Tien Shan field trip, A-2 (July 11-18, 1993). In Permafrost Sixth International Conference, Proceedings, July 5–9, 1993, Beijing, China. South China University of the Technology Press: Wushan Guangzhou; 2: 974–982.'},
   {'key': '10.1002/ppp.603-BIB20',
    'author': 'Snezhko',
    'volume': '10',
    'first-page': '212',
    'year': '1964',
    'journal-title': 'Problemy Severa'},
   {'key': '10.1002/ppp.603-BIB21',
    'author': 'Tsytovich',
    'volume': '258',
    'year': '1963',
    'unstructured': '(ed.). 1963. International Conference on Permafrost (1963: Lafayette, Ind.). Doklady na Mezhdunarodnoi konferentsii po merzlotovedeniiu. Izd-vo Akademii nauk SSSR: Moskva; 258: ill, maps (1 folded).',
    'volume-title': 'Doklady na Mezhdunarodnoi konferentsii po merzlotovedeniiu'},
   {'key': '10.1002/ppp.603-BIB22',
    'author': 'Vyalov',
    'year': '1968',
    'unstructured': ", , , . 1968. Permafrost and construction experience in the USA and Canada (based on data of International Conference on Permafrost in the USA), Moscow. Izdatel'stvo literatury po stroitel'stvy, 94 pp."},
   {'key': '10.1002/ppp.603-BIB23',
    'author': 'Woods',
    'volume': '143',
    'first-page': '1060',
    'year': '1964',
    'journal-title': 'Science',
    'DOI': '10.1126/science.143.3610.1060',
    'doi-asserted-by': 'crossref'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.603',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2020, 4, 29]],
   'date-time': '2020-04-29T03:22:48Z',
   'timestamp': 1588130568000},
  'score': 15.395377,
  'issued': {'date-parts': [[2007]]},
  'references-count': 23,
  'journal-issue': {'published-print': {'date-parts': [[2007, 10]]},
   'issue': '4'},
  'URL': 'http://dx.doi.org/10.1002/ppp.603',
  'relation': {'cites': []},
  'ISSN': ['1045-6740', '1099-1530'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'},
   {'value': '1099-1530', 'type': 'electronic'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 6, 13]],
   'date-time': '2020-06-13T04:43:32Z',
   'timestamp': 1592023412286},
  'reference-count': 62,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 883,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2013, 4]]},
  'DOI': '10.1002/ppp.1777',
  'type': 'journal-article',
  'created': {'date-parts': [[2013, 6, 13]],
   'date-time': '2013-06-13T03:55:38Z',
   'timestamp': 1371095738000},
  'page': '120-130',
  'source': 'Crossref',
  'is-referenced-by-count': 37,
  'title': ['Recent Progress Regarding Permafrost Coasts'],
  'prefix': '10.1002',
  'volume': '24',
  'author': [{'given': 'H.',
    'family': 'Lantuit',
    'sequence': 'first',
    'affiliation': [{'name': 'Alfred Wegener Institute for Polar and Marine Research; Potsdam; Germany'}]},
   {'given': 'P. P.',
    'family': 'Overduin',
    'sequence': 'additional',
    'affiliation': [{'name': 'Alfred Wegener Institute for Polar and Marine Research; Potsdam; Germany'}]},
   {'given': 'S.',
    'family': 'Wetterich',
    'sequence': 'additional',
    'affiliation': [{'name': 'Alfred Wegener Institute for Polar and Marine Research; Potsdam; Germany'}]}],
  'member': '311',
  'published-online': {'date-parts': [[2013, 6, 12]]},
  'reference': [{'key': '10.1002/ppp.1777-BIB0001|ppp1777-cit-0001',
    'doi-asserted-by': 'crossref',
    'first-page': '141',
    'DOI': '10.1080/14786440708563715',
    'article-title': 'Some account of a journey to the frozen sea, and of the discovery of the remains of a mammoth',
    'volume': '29',
    'author': 'Adams',
    'year': '1807',
    'journal-title': 'Philosophical Magazine'},
   {'key': '10.1002/ppp.1777-BIB0002|ppp1777-cit-0002',
    'author': 'Aguirre',
    'first-page': '7',
    'year': '2008',
    'volume-title': 'Proceedings of the Ninth International Conference on Permafrost'},
   {'key': '10.1002/ppp.1777-BIB0003|ppp1777-cit-0003',
    'doi-asserted-by': 'crossref',
    'first-page': '243',
    'DOI': '10.2112/05-0572.1',
    'article-title': 'The A and m coefficients in the Bruun/Dean equilibrium profile equation seen from the Arctic',
    'volume': '24',
    'author': 'Are',
    'year': '2008',
    'journal-title': 'Journal of Coastal Research'},
   {'key': '10.1002/ppp.1777-BIB0004|ppp1777-cit-0004',
    'doi-asserted-by': 'crossref',
    'first-page': '110',
    'DOI': '10.2112/05-0573.1',
    'article-title': 'The influence of cryogenic processes on the erosional Arctic shoreface',
    'volume': '24',
    'author': 'Are',
    'year': '2008',
    'journal-title': 'Journal of Coastal Research'},
   {'key': '10.1002/ppp.1777-BIB0005|ppp1777-cit-0005',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1080/10889378809377343',
    'article-title': 'Thermal abrasion of sea coast',
    'volume': '12',
    'author': 'Are',
    'year': '1988',
    'journal-title': 'Polar Geography and Geology'},
   {'key': '10.1002/ppp.1777-BIB0006|ppp1777-cit-0006',
    'doi-asserted-by': 'crossref',
    'first-page': '1629',
    'DOI': '10.1007/s00300-010-0800-5',
    'article-title': 'Two mechanisms of aquatic and terrestrial habitat change along an Alaskan Arctic coastline',
    'volume': '33',
    'author': 'Arp',
    'year': '2010',
    'journal-title': 'Polar Biology'},
   {'key': '10.1002/ppp.1777-BIB0007|ppp1777-cit-0007',
    'unstructured': 'Brown J Solomon S 2000 Arctic coastal dynamics - report of an international workshop, Woods Hole, MA, November 2-4, 1999',
    'DOI': '10.4095/211796',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0008|ppp1777-cit-0008',
    'first-page': '117',
    'article-title': 'Sea-level rise as a cause of shore erosion',
    'volume': '88',
    'author': 'Bruun',
    'year': '1962',
    'journal-title': 'Journal of the Waterways and Harbours Division'},
   {'key': '10.1002/ppp.1777-BIB0009|ppp1777-cit-0009',
    'author': 'Carter',
    'first-page': '286',
    'year': '2011',
    'volume-title': 'Solutions to Coastal Disasters 2011: Proceedings of the 2011 Solutions to Coastal Disasters Conference',
    'DOI': '10.1061/41185(417)26',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0010|ppp1777-cit-0010',
    'doi-asserted-by': 'crossref',
    'first-page': '1917',
    'DOI': '10.5194/bgd-8-1917-2011',
    'article-title': 'Seasonal and interannual variability of sedimentation and organic matter distribution in the Buor Khaya Gulf- the primary recipient of input from Lena River and coastal erosion in the SE Laptev Sea',
    'volume': '8',
    'author': 'Charkin',
    'year': '2011',
    'journal-title': 'Biogeosciences Discussions'},
   {'key': '10.1002/ppp.1777-BIB0011|ppp1777-cit-0011',
    'author': 'Doody',
    'first-page': '38',
    'year': '2004',
    'volume-title': 'Living with Coastal Erosion in Europe: Sediment and Space for Sustainability: Results from the EUROSION Study'},
   {'key': '10.1002/ppp.1777-BIB0012|ppp1777-cit-0012',
    'doi-asserted-by': 'crossref',
    'first-page': '2368',
    'DOI': '10.2134/jeq2007.0403',
    'article-title': 'Estimating the impact of seawater on the production of soil water-extractable organic carbon during coastal erosion',
    'volume': '37',
    'author': 'Dou',
    'year': '2008',
    'journal-title': 'Journal of Environmental Quality'},
   {'key': '10.1002/ppp.1777-BIB0013|ppp1777-cit-0013',
    'doi-asserted-by': 'crossref',
    'first-page': '328',
    'DOI': '10.1016/j.geoderma.2009.10.020',
    'article-title': 'Spatial variation of tundra soil organic carbon along the coastline of northern Alaska',
    'volume': '154',
    'author': 'Dou',
    'year': '2010',
    'journal-title': 'Geoderma'},
   {'key': '10.1002/ppp.1777-BIB0014|ppp1777-cit-0014',
    'first-page': '178',
    'year': '2011',
    'volume-title': 'State of the Arctic Coast 2010 - Scientific Review and Outlook'},
   {'key': '10.1002/ppp.1777-BIB0015|ppp1777-cit-0015',
    'unstructured': 'Gibbs AE Harden EL Richmond BM Erikson LH 2011 Regional shoreline change and coastal erosion hazards in Arctic Alaska Solutions to Coastal Disasters 2011: Proceedings of the 2011 Solutions to Coastal Disasters Conference 258 272',
    'DOI': '10.1061/41185(417)24',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0016|ppp1777-cit-0016',
    'doi-asserted-by': 'crossref',
    'first-page': '174',
    'DOI': '10.2112/JCOASTRES-D-11-00031.1',
    'article-title': 'Historical and future coastal changes in northwest Alaska',
    'volume': '28',
    'author': 'Gorokhovich',
    'year': '2012',
    'journal-title': 'Journal of Coastal Research'},
   {'key': '10.1002/ppp.1777-BIB0017|ppp1777-cit-0017',
    'author': 'Günther',
    'first-page': '137',
    'year': '2012',
    'volume-title': 'Proceedings of the Tenth International Conference on Permafrost'},
   {'key': '10.1002/ppp.1777-BIB0018|ppp1777-cit-0018',
    'first-page': '507',
    'article-title': 'The influence of coastal morphology on shoreface sediment transport under storm-combined flows, Canadian Beaufort Sea',
    'volume': '17',
    'author': 'Héquette',
    'year': '2001',
    'journal-title': 'Journal of Coastal Research'},
   {'key': '10.1002/ppp.1777-BIB0019|ppp1777-cit-0019',
    'author': 'Hmiznikov',
    'first-page': '122',
    'year': '1937',
    'volume-title': "Severnyj morskoj put'. (Northern Sea Route)"},
   {'key': '10.1002/ppp.1777-BIB0020|ppp1777-cit-0020',
    'doi-asserted-by': 'crossref',
    'first-page': '1103',
    'DOI': '10.1139/T09-058',
    'article-title': 'Arctic coastal retreat through block failure',
    'volume': '46',
    'author': 'Hoque',
    'year': '2009',
    'journal-title': 'Canadian Geotechnical Journal'},
   {'key': '10.1002/ppp.1777-BIB0021|ppp1777-cit-0021',
    'author': 'Johnson',
    'first-page': '489',
    'year': '2003',
    'volume-title': 'Final Proceedings, 8th International Conference on Permafrost'},
   {'key': '10.1002/ppp.1777-BIB0022|ppp1777-cit-0022',
    'first-page': '361',
    'article-title': 'Modern erosion rates and loss of coastal features and sites, Beaufort Sea coastline, Alaska',
    'volume': '61',
    'author': 'Jones',
    'year': '2008',
    'journal-title': 'Arctic'},
   {'key': '10.1002/ppp.1777-BIB0023|ppp1777-cit-0023',
    'author': 'Jones',
    'volume': '36',
    'year': '2009a',
    'article-title': 'Increase in the rate and uniformity of coastline erosion in Arctic Alaska',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2008GL036205',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0024|ppp1777-cit-0024',
    'doi-asserted-by': 'crossref',
    'first-page': '129',
    'DOI': '10.1080/10889370903486449',
    'article-title': 'Erosional history of Cape Halkett and contemporary monitoring of bluff retreat, Beaufort Sea coast, Alaska',
    'volume': '32',
    'author': 'Jones',
    'year': '2009b',
    'journal-title': 'Polar Geography'},
   {'key': '10.1002/ppp.1777-BIB0025|ppp1777-cit-0025',
    'doi-asserted-by': 'crossref',
    'first-page': '69',
    'DOI': '10.1007/s00367-004-0188-8',
    'article-title': 'Classification of the Alaskan Beaufort Sea Coast and estimation of carbon and sediment inputs from coastal erosion',
    'volume': '25',
    'author': 'Jorgenson',
    'year': '2005',
    'journal-title': 'Geo-Marine Letters'},
   {'key': '10.1002/ppp.1777-BIB0026|ppp1777-cit-0026',
    'doi-asserted-by': 'crossref',
    'first-page': '143',
    'DOI': '10.1080/00167223.2010.10669504',
    'article-title': 'Coastal environments around Thule settlements in Northeast Greenland',
    'volume': '110',
    'author': 'Kroon',
    'year': '2010',
    'journal-title': 'Danish Journal of Geography'},
   {'key': '10.1002/ppp.1777-BIB0027|ppp1777-cit-0027',
    'author': 'Kroon',
    'volume': '3',
    'first-page': '2299',
    'year': '2011',
    'volume-title': 'The Proceedings of the Coastal Sediments 2011',
    'DOI': '10.1142/9789814355537_0172',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0028|ppp1777-cit-0028',
    'doi-asserted-by': 'crossref',
    'first-page': '84',
    'DOI': '10.1016/j.geomorph.2006.07.040',
    'article-title': 'Fifty years of coastal erosion and retrogressive thaw slump activity on Herschel Island, southern Beaufort Sea, Yukon Territory, Canada',
    'volume': '95',
    'author': 'Lantuit',
    'year': '2008',
    'journal-title': 'Geomorphology'},
   {'key': '10.1002/ppp.1777-BIB0029|ppp1777-cit-0029',
    'author': 'Lantuit',
    'first-page': '1025',
    'year': '2008',
    'volume-title': 'Ninth International Conference on Permafrost'},
   {'key': '10.1002/ppp.1777-BIB0030|ppp1777-cit-0030',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1016/j.margeo.2008.10.004',
    'article-title': 'Towards a calculation of organic carbon release from erosion of Arctic coasts using non-fractal coastline datasets',
    'volume': '257',
    'author': 'Lantuit',
    'year': '2009',
    'journal-title': 'Marine Geology'},
   {'key': '10.1002/ppp.1777-BIB0031|ppp1777-cit-0031',
    'doi-asserted-by': 'crossref',
    'first-page': '7341',
    'DOI': '10.3402/polar.v30i0.7341',
    'article-title': 'Coastal erosion dynamics on the permafrost-dominated Bykovsky Peninsula, north Siberia, 1951-2006',
    'volume': '30',
    'author': 'Lantuit',
    'year': '2011',
    'journal-title': 'Polar Research'},
   {'key': '10.1002/ppp.1777-BIB0032|ppp1777-cit-0032',
    'doi-asserted-by': 'crossref',
    'first-page': '383',
    'DOI': '10.1007/s12237-010-9362-6',
    'article-title': 'The Arctic Coastal Dynamics Database: A New Classification Scheme and Statistics on Arctic Permafrost Coastlines',
    'volume': '35',
    'author': 'Lantuit',
    'year': '2012a',
    'journal-title': 'Estuaries and Coasts'},
   {'key': '10.1002/ppp.1777-BIB0033|ppp1777-cit-0033',
    'doi-asserted-by': 'crossref',
    'first-page': '39',
    'DOI': '10.1002/ppp.1731',
    'article-title': 'Modern and Late Holocene Retrogressive Thaw Slump Activity on the Yukon Coastal Plain and Herschel Island, Yukon Territory, Canada',
    'volume': '23',
    'author': 'Lantuit',
    'year': '2012b',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1777-BIB0034|ppp1777-cit-0034',
    'author': 'Lantz',
    'volume': '35',
    'year': '2008',
    'article-title': 'Increasing rates of retrogressive thaw slump activity in the Mackenzie Delta region, NWT, Canada',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2007GL032433',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0035|ppp1777-cit-0035',
    'unstructured': 'Leffingwell EK 1919 The Canning River region, northern Alaska 251',
    'DOI': '10.3133/pp109',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0036|ppp1777-cit-0036',
    'doi-asserted-by': 'crossref',
    'first-page': '103',
    'DOI': '10.14430/arctic3536',
    'article-title': 'Notes on the shoreline recession along the coast of the Yukon Territory',
    'volume': '16',
    'author': 'Mackay',
    'year': '1963',
    'journal-title': 'Arctic'},
   {'key': '10.1002/ppp.1777-BIB0037|ppp1777-cit-0037',
    'unstructured': 'Mackay JR 1986 Fifty years (1935-1985) of coastal retreat west of Tuktoyaktuk, District of Mackenzie 727 735',
    'DOI': '10.4095/120445',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0038|ppp1777-cit-0038',
    'doi-asserted-by': 'crossref',
    'first-page': '107',
    'DOI': '10.3137/ao.450204',
    'article-title': 'Past and future forcing of Beaufort Sea coastal change',
    'volume': '45',
    'author': 'Manson',
    'year': '2007',
    'journal-title': 'Atmosphere-Ocean'},
   {'key': '10.1002/ppp.1777-BIB0039|ppp1777-cit-0039',
    'doi-asserted-by': 'crossref',
    'first-page': '583',
    'DOI': '10.1130/G23672A.1',
    'article-title': 'Quantitative remote sensing study indicates doubling of coastal erosion rate in past 50 yr along a segment of the Arctic coast of Alaska',
    'volume': '35',
    'author': 'Mars',
    'year': '2007',
    'journal-title': 'Geology'},
   {'key': '10.1002/ppp.1777-BIB0040|ppp1777-cit-0040',
    'author': 'Mason',
    'first-page': '73',
    'year': '2012',
    'volume-title': 'Pitfalls of Shoreline Stabilization',
    'DOI': '10.1007/978-94-007-4123-2_5',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0041|ppp1777-cit-0041',
    'doi-asserted-by': 'crossref',
    'first-page': '523',
    'DOI': '10.1890/08-2025.1',
    'article-title': 'Sensitivity of the carbon cycle in the Arctic to climate change',
    'volume': '79',
    'author': 'McGuire',
    'year': '2009',
    'journal-title': 'Ecological Monographs'},
   {'issue': 'F2',
    'key': '10.1002/ppp.1777-BIB0042|ppp1777-cit-0042',
    'doi-asserted-by': 'crossref',
    'DOI': '10.1029/2011JF002088',
    'article-title': 'Geoelectric observations of the degradation of nearshore submarine permafrost at Barrow (Alaskan Beaufort Sea)',
    'volume': '117',
    'author': 'Overduin',
    'year': '2012',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1777-BIB0043|ppp1777-cit-0043',
    'author': 'Overeem',
    'volume': '38',
    'year': '2011',
    'article-title': 'Sea ice loss enhances wave action at the Arctic coast',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2011GL048681',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0044|ppp1777-cit-0044',
    'author': 'Ping',
    'volume': '116',
    'year': '2011',
    'article-title': 'Soil carbon and material fluxes across the eroding Alaska Beaufort Sea coastline',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/2010JG001588',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0045|ppp1777-cit-0045',
    'doi-asserted-by': 'crossref',
    'first-page': '450',
    'DOI': '10.1007/s005310000113',
    'article-title': 'Coastal erosion vs. riverine sediment discharge in the Arctic shelf seas',
    'volume': '89',
    'author': 'Rachold',
    'year': '2000',
    'journal-title': 'International Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1777-BIB0046|ppp1777-cit-0046',
    'doi-asserted-by': 'crossref',
    'first-page': '33',
    'DOI': '10.1007/978-3-642-18912-8_2',
    'article-title': 'Modern terrigenous organic carbon input to the Arctic Ocean',
    'volume': '1',
    'author': 'Rachold',
    'year': '2004',
    'journal-title': 'The Organic Carbon Cycle in the Arctic Ocean'},
   {'key': '10.1002/ppp.1777-BIB0047|ppp1777-cit-0047',
    'doi-asserted-by': 'crossref',
    'first-page': '63',
    'DOI': '10.1007/s00367-004-0187-9',
    'article-title': 'Arctic coastal dynamics (ACD): an introduction',
    'volume': '25',
    'author': 'Rachold',
    'year': '2005',
    'journal-title': 'Geo-Marine Letters'},
   {'key': '10.1002/ppp.1777-BIB0048|ppp1777-cit-0048',
    'doi-asserted-by': 'crossref',
    'first-page': '122',
    'DOI': '10.1061/(ASCE)WW.1943-5460.0000106',
    'article-title': 'Process-Based Coastal Erosion Modeling for Drew Point, North Slope, Alaska',
    'volume': '138',
    'author': 'Ravens',
    'year': '2011',
    'journal-title': 'Journal of Waterway, Port, Coastal, and Ocean Engineering'},
   {'key': '10.1002/ppp.1777-BIB0049|ppp1777-cit-0049',
    'unstructured': 'Reimnitz E Graves SM Barnes PW 1985 Beaufort Sea coastal erosion, shoreline evolution, and sediment flux 67',
    'DOI': '10.3133/ofr85380',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1777-BIB0050|ppp1777-cit-0050',
    'doi-asserted-by': 'crossref',
    'first-page': '2407',
    'DOI': '10.5194/bg-8-2407-2011',
    'article-title': 'Carbon transport by the Lena River from its headwaters to the Arctic Ocean, with emphasis on fluvial input of terrestrial particulate organic carbon vs. carbon transport by coastal erosion',
    'volume': '8',
    'author': 'Semiletov',
    'year': '2011',
    'journal-title': 'Biogeosciences'},
   {'key': '10.1002/ppp.1777-BIB0051|ppp1777-cit-0051',
    'doi-asserted-by': 'crossref',
    'first-page': '127',
    'DOI': '10.1007/s00367-004-0194-x',
    'article-title': 'Spatial and temporal variability of shoreline change in the Beaufort-Mackenzie region, northwest territories, Canada',
    'volume': '25',
    'author': 'Solomon',
    'year': '2005',
    'journal-title': 'Geo-Marine Letters'},
   {'key': '10.1002/ppp.1777-BIB0052|ppp1777-cit-0052',
    'doi-asserted-by': 'crossref',
    'first-page': '115',
    'DOI': '10.1146/annurev.fl.27.010195.000555',
    'article-title': 'Of ocean waves and sea ice',
    'volume': '27',
    'author': 'Squire',
    'year': '1995',
    'journal-title': 'Annual Review of Fluid Mechanics'},
   {'key': '10.1002/ppp.1777-BIB0053|ppp1777-cit-0053',
    'doi-asserted-by': 'crossref',
    'first-page': '213',
    'DOI': '10.14430/arctic976',
    'article-title': 'Raised gravel beaches as proxy indicators of past sea-ice and wave conditions, Lowther Island, Canadian Arctic Archipelago',
    'volume': '63',
    'author': 'St Hilaire-Gravel',
    'year': '2010',
    'journal-title': 'Arctic'},
   {'key': '10.1002/ppp.1777-BIB0054|ppp1777-cit-0054',
    'doi-asserted-by': 'crossref',
    'first-page': '421',
    'DOI': '10.2112/JCOASTRES-D-11-00020.1',
    'article-title': 'Multitemporal analysis of a gravel-dominated coastline in the central Canadian Arctic Archipelago',
    'volume': '28',
    'author': 'St Hilaire-Gravel',
    'year': '2012',
    'journal-title': 'Journal of Coastal Research'},
   {'key': '10.1002/ppp.1777-BIB0055|ppp1777-cit-0055',
    'doi-asserted-by': 'crossref',
    'first-page': '79',
    'DOI': '10.1657/1523-0430-41.1.79',
    'article-title': 'Erosion of sediment and organic carbon from the Kara Sea coast',
    'volume': '41',
    'author': 'Streletskaya',
    'year': '2009',
    'journal-title': 'Arctic, Antarctic, and Alpine Research'},
   {'key': '10.1002/ppp.1777-BIB0056|ppp1777-cit-0056',
    'doi-asserted-by': 'crossref',
    'first-page': '239',
    'DOI': '10.2478/v10183-011-0017-5',
    'article-title': 'Schmidt hammer tests across a recently deglacierized rocky coastal zone in Spitsbergen - is there a “coastal amplification” of rock weathering in polar climates?',
    'volume': '32',
    'author': 'Strzelecki',
    'year': '2011a',
    'journal-title': 'Polish Polar Research'},
   {'key': '10.1002/ppp.1777-BIB0057|ppp1777-cit-0057',
    'doi-asserted-by': 'crossref',
    'first-page': '101',
    'DOI': '10.2478/v10117-011-0030-0',
    'article-title': 'Cold shores in warming times-current state and future challenges in High Arctic coastal geomorphological studies',
    'volume': '30',
    'author': 'Strzelecki',
    'year': '2011b',
    'journal-title': 'Quaestiones Geographicae'},
   {'key': '10.1002/ppp.1777-BIB0058|ppp1777-cit-0058',
    'author': 'Tweedie',
    'first-page': '425',
    'year': '2012',
    'volume-title': 'Proceedings of the Tenth International Conference on Permafrost'},
   {'key': '10.1002/ppp.1777-BIB0059|ppp1777-cit-0059',
    'doi-asserted-by': 'crossref',
    'first-page': '110',
    'DOI': '10.1007/s00367-004-0192-z',
    'article-title': 'Coastal Dynamics at the Barents and Kara Sea key sites',
    'volume': '25',
    'author': 'Vasiliev',
    'year': '2005',
    'journal-title': 'Geo-Marine Letters'},
   {'key': '10.1002/ppp.1777-BIB0060|ppp1777-cit-0060',
    'doi-asserted-by': 'crossref',
    'first-page': '137',
    'DOI': '10.1038/nature11392',
    'article-title': 'Activation of old carbon by erosion of coastal and subsea permafrost in Arctic Siberia',
    'volume': '489',
    'author': 'Vonk',
    'year': '2012',
    'journal-title': 'Nature'},
   {'key': '10.1002/ppp.1777-BIB0061|ppp1777-cit-0061',
    'author': 'Walker',
    'first-page': '49',
    'year': '2005',
    'volume-title': 'Encyclopedia of Coastal Science'},
   {'key': '10.1002/ppp.1777-BIB0062|ppp1777-cit-0062',
    'doi-asserted-by': 'crossref',
    'first-page': '474',
    'DOI': '10.1657/1938-4246-43.3.474',
    'article-title': 'Thermal erosion of a permafrost coastline: Improving process-based models using time-lapse photography',
    'volume': '43',
    'author': 'Wobus',
    'year': '2011',
    'journal-title': 'Arctic, Antarctic, and Alpine Research'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1777',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2019, 7, 15]],
   'date-time': '2019-07-15T08:16:37Z',
   'timestamp': 1563178597000},
  'score': 15.395377,
  'subtitle': ['Erosion of Permafrost Coasts'],
  'issued': {'date-parts': [[2013, 4]]},
  'references-count': 62,
  'journal-issue': {'published-print': {'date-parts': [[2013, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.1777',
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 7, 17]],
   'date-time': '2020-07-17T15:11:25Z',
   'timestamp': 1594998685121},
  'reference-count': 43,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 883,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2013, 4]]},
  'DOI': '10.1002/ppp.1774',
  'type': 'journal-article',
  'created': {'date-parts': [[2013, 4, 26]],
   'date-time': '2013-04-26T02:22:23Z',
   'timestamp': 1366942943000},
  'page': '131-137',
  'source': 'Crossref',
  'is-referenced-by-count': 33,
  'title': ['New Concepts in Geophysical Surveying and Data Interpretation for Permafrost Terrain'],
  'prefix': '10.1002',
  'volume': '24',
  'author': [{'given': 'Christian',
    'family': 'Hauck',
    'sequence': 'first',
    'affiliation': [{'name': 'Department of Geosciences; University of Fribourg; Fribourg; Switzerland'}]}],
  'member': '311',
  'published-online': {'date-parts': [[2013, 4, 25]]},
  'reference': [{'key': '10.1002/ppp.1774-BIB0001|ppp1774-cit-0001',
    'doi-asserted-by': 'crossref',
    'first-page': '479',
    'DOI': '10.1016/j.jhydrol.2009.05.011',
    'article-title': 'Estimating 3D variation in active-layer thickness beneath arctic streams using ground-penetrating radar',
    'volume': '373',
    'author': 'Brosten',
    'year': '2009',
    'journal-title': 'Journal of Hydrology'},
   {'key': '10.1002/ppp.1774-BIB0002|ppp1774-cit-0002',
    'doi-asserted-by': 'crossref',
    'first-page': 'E193',
    'DOI': '10.1190/1.2762224',
    'article-title': 'Cross-property relations between electrical conductivity and the seismic velocity of rocks',
    'volume': '72',
    'author': 'Carcione',
    'year': '2007',
    'journal-title': 'Geophysics'},
   {'key': '10.1002/ppp.1774-BIB0003|ppp1774-cit-0003',
    'author': 'Day-Lewis',
    'volume': '110',
    'year': '2005',
    'article-title': 'Applying petrophysical models to radar traveltime and electrical resistivity tomograms: resolution-dependent limitations',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/2004JB003569',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1774-BIB0004|ppp1774-cit-0004',
    'doi-asserted-by': 'crossref',
    'first-page': 'F02S90',
    'DOI': '10.1029/2006JF000585',
    'article-title': 'Geophysical mapping of ground ice using a combination of capacitive coupled resistivity and ground-penetrating radar, Northwest Territories, Canada',
    'volume': '113',
    'author': 'De Pascale',
    'year': '2008',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1774-BIB0005|ppp1774-cit-0005',
    'doi-asserted-by': 'crossref',
    'first-page': '1163',
    'DOI': '10.5194/tc-6-1163-2012',
    'article-title': 'P-wave velocity changes in freezing hard low-porosity rocks: a laboratory-based time-average model',
    'volume': '6',
    'author': 'Draebing',
    'year': '2012',
    'journal-title': 'The Cryosphere'},
   {'key': '10.1002/ppp.1774-BIB0006|ppp1774-cit-0006',
    'unstructured': 'Fortier R Savard C 2010 Engineering geophysical investigation of permafrost conditions underneath airfield embankments in northern Quebec (Canada)'},
   {'key': '10.1002/ppp.1774-BIB0007|ppp1774-cit-0007',
    'doi-asserted-by': 'crossref',
    'first-page': '367',
    'DOI': '10.1139/E08-004',
    'article-title': 'Internal structure and conditions of permafrost mounds at Umiujaq in Nunavik, Canada, inferred from field investigation and electrical resistivity tomography',
    'volume': '45',
    'author': 'Fortier',
    'year': '2008',
    'journal-title': 'Canadian Journal of Earth Sciences'},
   {'key': '10.1002/ppp.1774-BIB0008|ppp1774-cit-0008',
    'doi-asserted-by': 'crossref',
    'first-page': '720',
    'DOI': '10.1139/t10-101',
    'article-title': 'Impacts of permafrost degradation on a road embankment at Umiujaq in Nunavik (Quebec). Canada',
    'volume': '48',
    'author': 'Fortier',
    'year': '2011',
    'journal-title': 'Canadian Geotechnical Journal'},
   {'key': '10.1002/ppp.1774-BIB0009|ppp1774-cit-0009',
    'doi-asserted-by': 'crossref',
    'first-page': '2016',
    'DOI': '10.1029/2002GL014995',
    'article-title': 'Frozen ground monitoring using DC resistivity tomography',
    'volume': '29',
    'author': 'Hauck',
    'year': '2002',
    'journal-title': 'Geophysical Research Letters'},
   {'key': '10.1002/ppp.1774-BIB0010|ppp1774-cit-0010',
    'author': 'Hauck',
    'first-page': '240',
    'year': '2008',
    'volume-title': 'Applied Geophysics in Periglacial Environments',
    'DOI': '10.1017/CBO9780511535628',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1774-BIB0011|ppp1774-cit-0011',
    'doi-asserted-by': 'crossref',
    'first-page': '453',
    'DOI': '10.5194/tc-5-453-2011',
    'article-title': 'A new model for estimating subsurface ice content based on combined electrical and seismic data sets',
    'volume': '5',
    'author': 'Hauck',
    'year': '2011',
    'journal-title': 'The Cryosphere'},
   {'key': '10.1002/ppp.1774-BIB0012|ppp1774-cit-0012',
    'doi-asserted-by': 'crossref',
    'first-page': '351',
    'DOI': '10.1002/ppp.601',
    'article-title': 'Internal structure and ice content of Reichenkar rock glacier (Stubai Alps, Austria) assessed by geophysical investigations',
    'volume': '18',
    'author': 'Hausmann',
    'year': '2007',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1774-BIB0013|ppp1774-cit-0013',
    'doi-asserted-by': 'crossref',
    'first-page': '243',
    'DOI': '10.5194/tc-4-243-2010',
    'article-title': 'Time-lapse refraction seismic tomography for the detection of ground ice degradation',
    'volume': '4',
    'author': 'Hilbich',
    'year': '2010',
    'journal-title': 'The Cryosphere'},
   {'key': '10.1002/ppp.1774-BIB0014|ppp1774-cit-0014',
    'doi-asserted-by': 'crossref',
    'first-page': 'F01S90',
    'DOI': '10.1029/2007JF000799',
    'article-title': 'Monitoring mountain permafrost evolution using electrical resistivity tomography: A 7-year study of seasonal, annual, and long-term variations at Schilthorn, Swiss Alps',
    'volume': '113',
    'author': 'Hilbich',
    'year': '2008',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1774-BIB0015|ppp1774-cit-0015',
    'doi-asserted-by': 'crossref',
    'first-page': '269',
    'DOI': '10.1002/ppp.652',
    'article-title': 'Applicability of electrical resistivity tomography monitoring to coarse blocky and ice-rich permafrost landforms',
    'volume': '20',
    'author': 'Hilbich',
    'year': '2009',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1774-BIB0016|ppp1774-cit-0016',
    'doi-asserted-by': 'crossref',
    'first-page': '306',
    'DOI': '10.1002/ppp.732',
    'article-title': 'Automated time-lapse ERT for improved process analysis and monitoring of frozen ground',
    'volume': '22',
    'author': 'Hilbich',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1774-BIB0017|ppp1774-cit-0017',
    'doi-asserted-by': 'crossref',
    'first-page': '361',
    'DOI': '10.1002/ppp.728',
    'article-title': 'Degrading Mountain Permafrost in Southern Norway: Spatial and Temporal Variability of Mean Ground Temperatures, 1999-2009',
    'volume': '22',
    'author': 'Isaksen',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1774-BIB0018|ppp1774-cit-0018',
    'author': 'Kneisel',
    'first-page': '959',
    'year': '2008',
    'volume-title': 'Proceedings of the 9th International Conference on Permafrost, Fairbanks, Alaska'},
   {'key': '10.1002/ppp.1774-BIB0019|ppp1774-cit-0019',
    'doi-asserted-by': 'crossref',
    'first-page': '157',
    'DOI': '10.1002/ppp.616',
    'article-title': 'Advances in geophysical methods for permafrost investigations',
    'volume': '19',
    'author': 'Kneisel',
    'year': '2008',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1774-BIB0020|ppp1774-cit-0020',
    'author': 'Krautblatter',
    'volume': '115',
    'year': '2010',
    'article-title': 'Temperature-calibrated imaging of seasonal changes in permafrost rock walls by quantitative electrical resistivity tomography (Zugspitze, German/Austrian Alps)',
    'journal-title': 'Journal of Geophysical Research Earth Surface'},
   {'key': '10.1002/ppp.1774-BIB0021|ppp1774-cit-0021',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.2113/JEEG12.1.1',
    'article-title': 'Introduction to this special issue of JEEG; the geophysics of glacial and frozen materials',
    'volume': '12',
    'author': 'Kulessa',
    'year': '2007',
    'journal-title': 'Journal of Environmental and Engineering Geophysics'},
   {'key': '10.1002/ppp.1774-BIB0022|ppp1774-cit-0022',
    'first-page': '2967',
    'article-title': 'Internal structure and hydrological functions of an alpine proglacial moraine',
    'volume': '25',
    'author': 'Langston',
    'year': '2011',
    'journal-title': 'Hydrological Processes'},
   {'key': '10.1002/ppp.1774-BIB0023|ppp1774-cit-0023',
    'doi-asserted-by': 'crossref',
    'first-page': 'B165',
    'DOI': '10.1190/geo2011-0095.1',
    'article-title': 'Imaging groundwater beneath a rugged proglacial moraine',
    'volume': '76',
    'author': 'Lehmann-Horn',
    'year': '2011',
    'journal-title': 'Geophysics'},
   {'key': '10.1002/ppp.1774-BIB0024|ppp1774-cit-0024',
    'doi-asserted-by': 'crossref',
    'first-page': '320',
    'DOI': '10.1002/ppp.703',
    'article-title': 'Characteristics of discontinuous permafrost based on ground temperature measurements and electrical resistivity tomography, southern Yukon, Canada',
    'volume': '22',
    'author': 'Lewkowicz',
    'year': '2011',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1774-BIB0026|ppp1774-cit-0026',
    'doi-asserted-by': 'crossref',
    'first-page': '75A177',
    'DOI': '10.1190/1.3484194',
    'article-title': 'Recent advances in optimized geophysical survey design',
    'volume': '75',
    'author': 'Maurer',
    'year': '2010',
    'journal-title': 'Geophysics'},
   {'key': '10.1002/ppp.1774-BIB0027|ppp1774-cit-0027',
    'author': 'Milanovskyi',
    'first-page': '1221',
    'year': '2008',
    'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, Fairbanks, Alaska'},
   {'key': '10.1002/ppp.1774-BIB0028|ppp1774-cit-0028',
    'author': 'Minsley',
    'volume': '39',
    'year': '2012',
    'article-title': 'Airborne electromagnetic imaging of discontinuous permafrost',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2011GL050079',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1774-BIB0029|ppp1774-cit-0029',
    'doi-asserted-by': 'crossref',
    'first-page': '403',
    'DOI': '10.1190/1.1444545',
    'article-title': 'Estimating depth of investigation in DC resistivity and IP surveys',
    'volume': '64',
    'author': 'Oldenburg',
    'year': '1999',
    'journal-title': 'Geophysics'},
   {'key': '10.1002/ppp.1774-BIB0030|ppp1774-cit-0030',
    'author': 'Oldenburg',
    'first-page': '89',
    'year': '2005',
    'volume-title': 'Near-surface Geophysics',
    'DOI': '10.1190/1.9781560801719.ch5',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1774-BIB0031|ppp1774-cit-0031',
    'author': 'Overduin',
    'volume': '117',
    'year': '2012',
    'article-title': 'Geoelectric observations of the degradation of nearshore submarine permafrost at Barrow (Alaskan Beaufort Sea)',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/2011JF002088',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1774-BIB0032|ppp1774-cit-0032',
    'author': 'Parameswaran',
    'first-page': '1363',
    'year': '2008',
    'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, Fairbanks, Alaska'},
   {'key': '10.1002/ppp.1774-BIB0033|ppp1774-cit-0033',
    'doi-asserted-by': 'crossref',
    'first-page': 'B187',
    'DOI': '10.1190/geo2010-0353.1',
    'article-title': 'Imaging permafrost velocity structure using high resolution 3D seismic tomography',
    'volume': '76',
    'author': 'Ramachandran',
    'year': '2011',
    'journal-title': 'Geophysics'},
   {'key': '10.1002/ppp.1774-BIB0034|ppp1774-cit-0034',
    'doi-asserted-by': 'crossref',
    'first-page': '117',
    'DOI': '10.3997/1873-0604.2011029',
    'article-title': 'Permafrost mapping using quasi-3D resistivity imaging, Murtèl, Swiss Alps',
    'volume': '10',
    'author': 'Rödder',
    'year': '2012',
    'journal-title': 'Near Surface Geophysics'},
   {'key': '10.1002/ppp.1774-BIB0035|ppp1774-cit-0035',
    'author': 'Scapozza',
    'first-page': '1583',
    'year': '2008',
    'volume-title': 'Proceedings of the 9th International Conference on Permafrost, Fairbanks, Alaska'},
   {'key': '10.1002/ppp.1774-BIB0036|ppp1774-cit-0036',
    'doi-asserted-by': 'crossref',
    'first-page': '208',
    'DOI': '10.1016/j.geomorph.2011.05.010',
    'article-title': 'Internal structure and permafrost distribution in two alpine periglacial talus slopes, Valais, Swiss Alps',
    'volume': '132',
    'author': 'Scapozza',
    'year': '2011',
    'journal-title': 'Geomorphology'},
   {'key': '10.1002/ppp.1774-BIB0037|ppp1774-cit-0037',
    'doi-asserted-by': 'crossref',
    'first-page': '325',
    'DOI': '10.1002/ppp.694',
    'article-title': 'Meltwater infiltration into the frozen active layer at an Alpine permafrost site',
    'volume': '21',
    'author': 'Scherler',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1774-BIB0038|ppp1774-cit-0038',
    'doi-asserted-by': 'crossref',
    'first-page': '327',
    'DOI': '10.3997/1873-0604.2008008',
    'article-title': 'The use of GPR to detect active layer in young periglacial terrain of Livingston Island, Maritime Antarctica',
    'volume': '6',
    'author': 'Schwamborn',
    'year': '2008',
    'journal-title': 'Near Surface Geophysics'},
   {'key': '10.1002/ppp.1774-BIB0039|ppp1774-cit-0039',
    'author': 'Scott',
    'first-page': '355',
    'year': '1990',
    'volume-title': 'Geotechnical and Environmental Geophysics',
    'DOI': '10.1190/1.9781560802785.ch13',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1774-BIB0040|ppp1774-cit-0040',
    'author': 'Sedov',
    'first-page': '1607',
    'year': '2008',
    'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, Fairbanks, Alaska'},
   {'key': '10.1002/ppp.1774-BIB0041|ppp1774-cit-0041',
    'doi-asserted-by': 'crossref',
    'first-page': '475',
    'DOI': '10.5194/tc-4-475-2010',
    'article-title': 'Monitoring of active layer dynamics at a permafrost site on Svalbard using multi-channel ground-penetrating radar',
    'volume': '4',
    'author': 'Westermann',
    'year': '2010',
    'journal-title': 'The Cryosphere'},
   {'key': '10.1002/ppp.1774-BIB0042|ppp1774-cit-0042',
    'first-page': '77',
    'article-title': 'Long-term time-lapse geoelectrical monitoring',
    'volume': '29',
    'author': 'Wilkinson',
    'year': '2011',
    'journal-title': 'First Break'},
   {'key': '10.1002/ppp.1774-BIB0043|ppp1774-cit-0043',
    'doi-asserted-by': 'crossref',
    'first-page': '428',
    'DOI': '10.1111/j.1365-246X.2012.05372.x',
    'article-title': 'Practical aspects of applied optimized survey design for electrical resistivity tomography',
    'volume': '189',
    'author': 'Wilkinson',
    'year': '2012',
    'journal-title': 'Geophysical Journal International'},
   {'key': '10.1002/ppp.1774-BIB0044|ppp1774-cit-0044',
    'doi-asserted-by': 'crossref',
    'first-page': '269',
    'DOI': '10.5194/tc-4-269-2010',
    'article-title': 'Multi-channel ground-penetrating radar to explore spatial variations in thaw depth and moisture content in the active layer of a permafrost site',
    'volume': '4',
    'author': 'Wollschläger',
    'year': '2010',
    'journal-title': 'The Cryosphere'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1774',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'}],
  'deposited': {'date-parts': [[2019, 7, 13]],
   'date-time': '2019-07-13T01:20:05Z',
   'timestamp': 1562980805000},
  'score': 15.395377,
  'subtitle': ['Geophysical Surveying in Permafrost Terrain'],
  'issued': {'date-parts': [[2013, 4]]},
  'references-count': 43,
  'journal-issue': {'published-print': {'date-parts': [[2013, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.1774',
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}],
  'subject': ['Earth-Surface Processes']},
 {'indexed': {'date-parts': [[2020, 7, 9]],
   'date-time': '2020-07-09T10:27:04Z',
   'timestamp': 1594290424175},
  'reference-count': 45,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 1248,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost and Periglac. Process.'],
  'published-print': {'date-parts': [[2012, 4]]},
  'DOI': '10.1002/ppp.1738',
  'type': 'journal-article',
  'created': {'date-parts': [[2012, 5, 2]],
   'date-time': '2012-05-02T23:35:44Z',
   'timestamp': 1336001744000},
  'page': '138-151',
  'source': 'Crossref',
  'is-referenced-by-count': 27,
  'title': ['Active Layer Characteristics At Ten Borehole Sites In Alpine Permafrost Terrain, Switzerland'],
  'prefix': '10.1002',
  'volume': '23',
  'author': [{'given': 'Evelyn',
    'family': 'Zenklusen Mutter',
    'sequence': 'first',
    'affiliation': [{'name': 'WSL Institute for Snow and Avalanche Research SLF; Davos Dorf; Switzerland'}]},
   {'given': 'Marcia',
    'family': 'Phillips',
    'sequence': 'additional',
    'affiliation': [{'name': 'WSL Institute for Snow and Avalanche Research SLF; Davos Dorf; Switzerland'}]}],
  'member': '311',
  'published-online': {'date-parts': [[2012, 5, 2]]},
  'reference': [{'key': '10.1002/ppp.1738-BIB1738-bib-0001|ppp1738-cit-0001',
    'doi-asserted-by': 'crossref',
    'first-page': '716',
    'DOI': '10.1109/TAC.1974.1100705',
    'article-title': 'A new look at the statistical model identification',
    'volume': '19',
    'author': 'Akaike',
    'year': '1973',
    'journal-title': 'IEEE Transactions on Automatic Control'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0002|ppp1738-cit-0002',
    'doi-asserted-by': 'crossref',
    'first-page': '279',
    'DOI': '10.1002/ppp.626',
    'article-title': 'Thawing permafrost and thicker active layers in sub-arctic Sweden',
    'volume': '19',
    'author': 'Åkerman',
    'year': '2008',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0003|ppp1738-cit-0003',
    'doi-asserted-by': 'crossref',
    'first-page': '217',
    'DOI': '10.1016/S0304-3800(02)00016-9',
    'article-title': 'Variability of seasonal thaw depth in permafrost regions: a stochastic modeling approach',
    'volume': '153',
    'author': 'Anisimov',
    'year': '2002',
    'journal-title': 'Ecological Modelling'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0004|ppp1738-cit-0004',
    'unstructured': 'Arenson LU Hauck C Hilbich C Seward L Yamamoto Y Springman SM 2010 Sub-surface heterogeneities in the Murtèl-Corvatsch rock glacier, Switzerland th 1494 1500'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0005|ppp1738-cit-0005',
    'doi-asserted-by': 'crossref',
    'first-page': '327',
    'DOI': '10.1016/S0921-8181(01)00098-4',
    'article-title': 'On the relationship between ground temperature histories and meteorological records: a report on the Pomquet station',
    'volume': '29',
    'author': 'Beltrami',
    'year': '2001',
    'journal-title': 'Global and Planetary Change'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0006|ppp1738-cit-0006',
    'doi-asserted-by': 'crossref',
    'first-page': '97',
    'DOI': '10.1002/ppp.679',
    'article-title': 'Short Communication: Practical Recommendations for Planning, Constructing and Maintaining Infrastructure in Mountain Permafrost',
    'volume': '21',
    'author': 'Bommer',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '3',
    'key': '10.1002/ppp.1738-BIB1738-bib-0007|ppp1738-cit-0007',
    'doi-asserted-by': 'crossref',
    'first-page': '166',
    'DOI': '10.1080/10889370009377698',
    'article-title': 'The circumpolar active layer monitoring (CALM) program: Research designs and initial results',
    'volume': '24',
    'author': 'Brown',
    'year': '2000',
    'journal-title': 'Polar Geography'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0008|ppp1738-cit-0008',
    'doi-asserted-by': 'crossref',
    'first-page': '411',
    'DOI': '10.1002/(SICI)1099-1530(199810/12)9:4<411::AID-PPP292>3.0.CO;2-6',
    'article-title': 'The Active Layer: Two Contrasting Definitions',
    'volume': '9',
    'author': 'Burn',
    'year': '1998',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0009|ppp1738-cit-0009',
    'doi-asserted-by': 'crossref',
    'first-page': '155',
    'DOI': '10.1002/ppp.489',
    'article-title': 'Meteorological Control on Interannual Spatial and Temporal Variations in Snow Cover and GroundThawing in Two Northeast Greenlandic Circumpolar-Active-Layer-Monitoring (CALM) Sites',
    'volume': '15',
    'author': 'Christiansen',
    'year': '2004',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0010|ppp1738-cit-0010',
    'doi-asserted-by': 'crossref',
    'first-page': 'D05101',
    'DOI': '10.1029/2003JD004245',
    'article-title': 'Interdecadal changes in seasonal freeze and thaw depths in Russia',
    'volume': '109',
    'author': 'Frauenfeld',
    'year': '2004',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0011|ppp1738-cit-0011',
    'doi-asserted-by': 'crossref',
    'first-page': 'F02S18',
    'DOI': '10.1029/2006JF000547',
    'article-title': 'Permafrost in steep bedrock slopes and its temperature-related destabilization following climate change',
    'volume': '112',
    'author': 'Gruber',
    'year': '2007',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0012|ppp1738-cit-0012',
    'author': 'Gruber',
    'first-page': '33',
    'year': '2009',
    'volume-title': 'Permafrost Soils',
    'DOI': '10.1007/978-3-540-69371-0_3',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0013|ppp1738-cit-0013',
    'author': 'Gruber',
    'volume': '1',
    'first-page': '557',
    'year': '2008',
    'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, University of Alaska Fairbanks, 29 June-3 July'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0014|ppp1738-cit-0014',
    'doi-asserted-by': 'crossref',
    'first-page': 'L13504',
    'DOI': '10.1029/2004GL020051',
    'article-title': 'Permafrost thaw and destabilization of Alpine rock walls in the hot summer of 2003',
    'volume': '31',
    'author': 'Gruber',
    'year': '2004',
    'journal-title': 'Geophysical Research Letters'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0015|ppp1738-cit-0015',
    'doi-asserted-by': 'crossref',
    'first-page': '84',
    'DOI': '10.1080/00291950510020664',
    'article-title': 'Installation of a shallow borehole network and monitoring of the ground thermal regime of a high alpine discontinuous permafrost environment, Eastern Swiss Alps',
    'volume': '59',
    'author': 'Hanson',
    'year': '2005',
    'journal-title': 'Norsk Geografisk Tidsskrift-Norwegian Journal of Geography'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0016|ppp1738-cit-0016',
    'author': 'Harlan',
    'first-page': '103',
    'year': '1978',
    'volume-title': 'Geotechnical Engineering for Cold Regions'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0017|ppp1738-cit-0017',
    'doi-asserted-by': 'crossref',
    'first-page': '107',
    'DOI': '10.1002/(SICI)1099-1530(199804/06)9:2<107::AID-PPP277>3.0.CO;2-G',
    'article-title': 'Thermal Regimes Beneath Coarse Blocky Materials',
    'volume': '9',
    'author': 'Harris',
    'year': '1998',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': 'D2',
    'key': '10.1002/ppp.1738-BIB1738-bib-0018|ppp1738-cit-0018',
    'doi-asserted-by': 'crossref',
    'first-page': '8168',
    'DOI': '10.1029/2001JD000927',
    'article-title': 'Spatial and temporal patterns of active layer thickness at Circumpolar Active Layer Monitoring (CALM) sites in northern Alaska, 1995-2000',
    'volume': '108',
    'author': 'Hinkel',
    'year': '2003',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0019|ppp1738-cit-0019',
    'doi-asserted-by': 'crossref',
    'first-page': '293',
    'DOI': '10.1016/S0921-8181(01)00096-0',
    'article-title': 'Patterns of soil temperature and moisture in the active layer and upper permafrost at Barrow, Alaska: 1993-1999',
    'volume': '29',
    'author': 'Hinkel',
    'year': '2001',
    'journal-title': 'Global and Planetary Change'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0020|ppp1738-cit-0020',
    'author': 'Hoelzle',
    'volume': '1',
    'first-page': '419',
    'year': '2003',
    'volume-title': 'Proceedings of the Eighth International Conference on Permafrost, 21-25 July, Zurich, Switzerland'},
   {'issue': '11',
    'key': '10.1002/ppp.1738-BIB1738-bib-0021|ppp1738-cit-0021',
    'doi-asserted-by': 'crossref',
    'first-page': '1170',
    'DOI': '10.1007/s11430-006-2003-z',
    'article-title': 'Thermal regimes and degradation modes of permafrost along the Qinghai-Tibet Highway',
    'volume': '49',
    'author': 'Jin',
    'year': '2006',
    'journal-title': 'Science in China Series D: Earth Sciences'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0022|ppp1738-cit-0022',
    'doi-asserted-by': 'crossref',
    'first-page': '275',
    'DOI': '10.1016/S0921-8181(01)00095-9',
    'article-title': 'Non-conductive heat transfer associated with frozen soils',
    'volume': '29',
    'author': 'Kane',
    'year': '2001',
    'journal-title': 'Global and Planetary Change'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0023|ppp1738-cit-0023',
    'author': 'Keller',
    'volume': '1',
    'first-page': '332',
    'year': '1993',
    'volume-title': 'Proceedings of the Sixth International Conference on Permafrost, 5-9 July, Beijing, China'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0024|ppp1738-cit-0024',
    'doi-asserted-by': 'crossref',
    'first-page': '283',
    'DOI': '10.1002/ppp.500',
    'article-title': 'Temperatures in Two Boreholes at Flüela Pass, Eastern Swiss Alps: the Effect of Snow Redistribution on Permafrost Distribution Patterns in High Mountain Areas',
    'volume': '15',
    'author': 'Luetschg',
    'year': '2004',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '187',
    'key': '10.1002/ppp.1738-BIB1738-bib-0025|ppp1738-cit-0025',
    'doi-asserted-by': 'crossref',
    'first-page': '696',
    'DOI': '10.3189/002214308786570881',
    'article-title': 'A sensitivity study of factors influencing warm/thin permafrost in the Swiss Alps',
    'volume': '54',
    'author': 'Luetschg',
    'year': '2008',
    'journal-title': 'Journal of Glaciology'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0026|ppp1738-cit-0026',
    'author': 'Lunardini',
    'volume': '1',
    'first-page': '40',
    'year': '1978',
    'volume-title': 'Proceedings of the Third International Conference on Permafrost, 10-13 July, Edmonton, Alberta, Canada'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0027|ppp1738-cit-0027',
    'doi-asserted-by': 'crossref',
    'first-page': '123',
    'DOI': '10.1002/ppp.484',
    'article-title': 'Active-layer Spatial and Temporal Variability at European Russian Circumpolar-Active-Layer-Monitoring (CALM) sites',
    'volume': '15',
    'author': 'Mazhitova',
    'year': '2004',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'issue': '2',
    'key': '10.1002/ppp.1738-BIB1738-bib-0028|ppp1738-cit-0028',
    'doi-asserted-by': 'crossref',
    'first-page': '179',
    'DOI': '10.2307/1552606',
    'article-title': 'Variability of Active-Layer Thickness at Multiple Spatial Scales, North-Central Alaska, USA',
    'volume': '31',
    'author': 'Nelson',
    'year': '1999',
    'journal-title': 'Arctic, Antarctic, and Alpine Research'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0029|ppp1738-cit-0029',
    'author': 'Oht',
    'volume': '2',
    'first-page': '845',
    'year': '2003',
    'volume-title': 'Proceedings of the Eighth International Conference on Permafrost, 21-25 July, Zurich, Switzerland'},
   {'issue': '3',
    'key': '10.1002/ppp.1738-BIB1738-bib-0030|ppp1738-cit-0030',
    'doi-asserted-by': 'crossref',
    'first-page': '274',
    'DOI': '10.2307/1552106',
    'article-title': 'The Response of Near-Surface Permafrost to Seasonal Regime Transitions in Tundra Terrain',
    'volume': '28',
    'author': 'Outcalt',
    'year': '1996',
    'journal-title': 'Arctic and Alpine Research'},
   {'issue': '7',
    'key': '10.1002/ppp.1738-BIB1738-bib-0031|ppp1738-cit-0031',
    'first-page': '1509',
    'article-title': 'The Zero-Curtain Effect: Heat and Mass Transfer Across an Isothermal Region in Freezing Soil',
    'volume': '26',
    'author': 'Outcalt',
    'year': '1990',
    'journal-title': 'Water Resources Research'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0032|ppp1738-cit-0032',
    'author': 'PERMOS',
    'first-page': '13',
    'year': '2007',
    'volume-title': 'Glaciological Report Permafrost No. 4/5 of the Cryospheric Commission of the Swiss Academy of Sciences and Department of Geography, University of Zurich'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0033|ppp1738-cit-0033',
    'author': 'PERMOS',
    'first-page': '19',
    'year': '2010',
    'volume-title': 'Glaciological Report Permafrost No. 8/9 of the Cryospheric Commission of the Swiss Academy of Sciences'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0034|ppp1738-cit-0034',
    'author': 'Phillips',
    'volume': '2',
    'first-page': '1417',
    'year': '2008',
    'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, University of Alaska Fairbanks, 29 June-3 July'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0035|ppp1738-cit-0035',
    'doi-asserted-by': 'crossref',
    'first-page': '32',
    'DOI': '10.1016/j.coldregions.2006.08.014',
    'article-title': 'Monitoring and reconstruction of a chairlift midway station in creeping permafrost terrain, Grächen, Swiss Alps',
    'volume': '47',
    'author': 'Phillips',
    'year': '2007',
    'journal-title': 'Cold Regions Science and Technology'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0036|ppp1738-cit-0036',
    'doi-asserted-by': 'crossref',
    'first-page': '1',
    'DOI': '10.1002/ppp.638',
    'article-title': 'Rapid Degradation of Ground Ice in a Ventilated Talus Slope: Flüela Pass, Swiss Alps',
    'volume': '20',
    'author': 'Phillips',
    'year': '2009',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0037|ppp1738-cit-0037',
    'author': 'Riseborough',
    'volume': '2',
    'first-page': '1487',
    'year': '2008',
    'volume-title': 'Proceedings of the Ninth International Conference on Permafrost, University of Alaska Fairbanks, 29 June-3 July'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0038|ppp1738-cit-0038',
    'doi-asserted-by': 'crossref',
    'first-page': '177',
    'DOI': '10.1080/00291950510020574',
    'article-title': 'First results of investigations on hydrothermal processes within the active layer above alpine permafrost in steep terrain',
    'volume': '59',
    'author': 'Rist',
    'year': '2005',
    'journal-title': 'Norsk Geografisk Tidsskrift-Norwegian Journal of Geography'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0039|ppp1738-cit-0039',
    'doi-asserted-by': 'crossref',
    'first-page': '325',
    'DOI': '10.1002/ppp.694',
    'article-title': 'Meltwater Infiltration into the Frozen Active Layer at an Alpine Permafrost Site',
    'volume': '21',
    'author': 'Scherler',
    'year': '2010',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0040|ppp1738-cit-0040',
    'doi-asserted-by': 'crossref',
    'first-page': '5',
    'DOI': '10.1002/ppp.518',
    'article-title': 'The Transient Layer: Implications for Geocryology and Climate-Change Science',
    'volume': '16',
    'author': 'Shur',
    'year': '2005',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0041|ppp1738-cit-0041',
    'doi-asserted-by': 'crossref',
    'first-page': '19',
    'DOI': '10.1002/ppp.511',
    'article-title': 'Recent Trends from Canadian Permafrost Thermal Monitoring Network Sites',
    'volume': '16',
    'author': 'Smith',
    'year': '2005',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0042|ppp1738-cit-0042',
    'doi-asserted-by': 'crossref',
    'first-page': '201',
    'DOI': '10.1002/ppp.651',
    'article-title': 'Active-Layer Characteristics and Summer Climatic Indices, Mackenzie Valley, Northwest Territories, Canada',
    'volume': '20',
    'author': 'Smith',
    'year': '2009',
    'journal-title': 'Permafrost and Periglacial Processes'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0043|ppp1738-cit-0043',
    'author': 'Watanabe',
    'volume': '2',
    'first-page': '1211',
    'year': '2003',
    'volume-title': 'Proceedings of the Eighth International Conference on Permafrost, 21-25 July, Zurich, Switzerland'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0044|ppp1738-cit-0044',
    'doi-asserted-by': 'crossref',
    'first-page': 'F04009',
    'DOI': '10.1029/2009JF001648',
    'article-title': 'Analysis of ground temperature trends in Alpine permafrost using generalized least squares',
    'volume': '115',
    'author': 'Zenklusen Mutter',
    'year': '2010',
    'journal-title': 'Journal of Geophysical Research'},
   {'key': '10.1002/ppp.1738-BIB1738-bib-0045|ppp1738-cit-0045',
    'doi-asserted-by': 'crossref',
    'first-page': 'RG4002',
    'DOI': '10.1029/2004RG000157',
    'article-title': 'Influence of the seasonal snow cover on the ground thermal regime: an overview',
    'volume': '43',
    'author': 'Zhang',
    'year': '2005',
    'journal-title': 'Reviews of Geophysics'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.1738',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'},
   {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.1738',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2018, 8, 5]],
   'date-time': '2018-08-05T12:26:13Z',
   'timestamp': 1533471973000},
  'score': 15.395377,
  'subtitle': ['Active Layer Development in Alpine Permafrost Terrain'],
  'issued': {'date-parts': [[2012, 4]]},
  'references-count': 45,
  'journal-issue': {'published-print': {'date-parts': [[2012, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.1738',
  'relation': {'cites': []},
  'ISSN': ['1045-6740'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'}]},
 {'indexed': {'date-parts': [[2020, 2, 20]],
   'date-time': '2020-02-20T08:43:27Z',
   'timestamp': 1582188207166},
  'reference-count': 184,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 2800,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost Periglac. Process.'],
  'published-print': {'date-parts': [[2008, 4]]},
  'DOI': '10.1002/ppp.619',
  'type': 'journal-article',
  'created': {'date-parts': [[2008, 5, 28]],
   'date-time': '2008-05-28T00:34:59Z',
   'timestamp': 1211934899000},
  'page': '107-136',
  'source': 'Crossref',
  'is-referenced-by-count': 77,
  'title': ['Remote sensing of permafrost-related problems and hazards'],
  'prefix': '10.1002',
  'volume': '19',
  'author': [{'given': 'Andreas',
    'family': 'Kääb',
    'sequence': 'first',
    'affiliation': []}],
  'member': '311',
  'published-online': {'date-parts': [[2008]]},
  'reference': [{'key': '10.1002/ppp.619-BIB1',
    'author': 'Alasset',
    'year': '2007',
    'unstructured': ', . 2007. InSAR monitoring of a landslide in a permafrost environment: constraints and results. Canadian Institute of Geomatics/International Society of Photogrammetry and Remote Sensing Conference on Geomatics for Disaster and Risk Management. 11pp.'},
   {'key': '10.1002/ppp.619-BIB2',
    'author': 'Applegarth',
    'volume': '82',
    'first-page': '388',
    'year': '2006',
    'journal-title': 'Geomorphology',
    'DOI': '10.1016/j.geomorph.2006.06.002',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB3',
    'author': 'Baltsavias',
    'volume': '17',
    'first-page': '243',
    'year': '2001',
    'journal-title': 'Photogrammetric Record',
    'DOI': '10.1111/0031-868X.00182',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB4',
    'first-page': '55',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': '1',
    'author': 'Bauer',
    'year': '2003',
    'unstructured': ', . 2003. Terrestrial laser scanning for rock glacier monitoring. In Eighth International Conference on Permafrost. Balkema: Lisse; 1, 55–60.'},
   {'key': '10.1002/ppp.619-BIB5',
    'author': 'Berthier',
    'volume': '31',
    'first-page': 'l17401',
    'year': '2004',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2004GL020706',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB6',
    'author': 'Berthier',
    'volume': '95',
    'first-page': '14',
    'year': '2005',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2004.11.005',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB7',
    'author': 'Berthier',
    'volume': '33',
    'first-page': 'l08502',
    'year': '2006',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2006GL025862',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB8',
    'first-page': '101',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': 'vol. 1',
    'author': 'Brown',
    'year': '2003',
    'unstructured': ', , . 2003. Long-term rates of coastal erosion and carbon input, Elson Lagoon, Barrow, Alaska. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 1, 101–106.'},
   {'key': '10.1002/ppp.619-BIB9',
    'author': 'Burger',
    'volume': '31',
    'first-page': '93',
    'year': '1999',
    'journal-title': 'Geomorphology',
    'DOI': '10.1016/S0169-555X(99)00074-4',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB10',
    'author': 'Burn',
    'volume': '37',
    'first-page': '967',
    'year': '2000',
    'journal-title': 'Canadian Journal of Earth Sciences',
    'DOI': '10.1139/e00-017',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB11',
    'author': 'Casson',
    'volume': '68',
    'first-page': '123',
    'year': '2003',
    'journal-title': 'Engineering Geology',
    'DOI': '10.1016/S0013-7952(02)00201-6',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB12',
    'author': 'Chen',
    'volume': '88',
    'first-page': '160',
    'year': '2006',
    'journal-title': 'Engineering Geology',
    'DOI': '10.1016/j.enggeo.2006.09.008',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB13',
    'author': 'Chiarle',
    'volume': '56',
    'first-page': '123',
    'year': '2007',
    'journal-title': 'Global and Planetary Change',
    'DOI': '10.1016/j.gloplacha.2006.07.003',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB14',
    'author': 'Christiansen',
    'volume': '32',
    'first-page': '102',
    'year': '2001',
    'journal-title': 'Annals of Glaciology',
    'DOI': '10.3189/172756401781819355',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB15',
    'author': 'Clague',
    'volume': '19',
    'first-page': '1763',
    'year': '2000',
    'journal-title': 'Quaternary Science Reviews',
    'DOI': '10.1016/S0277-3791(00)00090-1',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB16',
    'author': 'Colesanti',
    'volume': '68',
    'first-page': '3',
    'year': '2003',
    'journal-title': 'Engineering Geology',
    'DOI': '10.1016/S0013-7952(02)00195-3',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB17',
    'author': 'Corsini',
    'volume': '27',
    'first-page': '2351',
    'year': '2006',
    'journal-title': 'International Journal of Remote Sensing',
    'DOI': '10.1080/01431160600554405',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB18',
    'author': 'Coulibaly',
    'volume': '31',
    'first-page': '439',
    'year': '2005',
    'journal-title': 'Canadian Journal of Remote Sensing',
    'DOI': '10.5589/m05-028',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB19',
    'author': 'Couture',
    'year': '2006',
    'unstructured': '. 2006. Regional landslide mapping in a permafrost environment: landslide inventory database and case studies in the Mackenzie Valley, Northwest Territories Geophysical Research Abstract, European Geosciences Union 8, abstract 02982.'},
   {'key': '10.1002/ppp.619-BIB20',
    'author': 'Crosetto',
    'volume': '57',
    'first-page': '213',
    'year': '2002',
    'journal-title': 'ISPRS Journal of Photogrammetry and Remote Sensing',
    'DOI': '10.1016/S0924-2716(02)00107-7',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB21',
    'author': 'Crowley',
    'volume': '87',
    'first-page': '345',
    'year': '2003',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2003.08.003',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB22',
    'author': 'Cuartero',
    'volume': '43',
    'first-page': '404',
    'year': '2005',
    'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
    'DOI': '10.1109/TGRS.2004.841356',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB23',
    'author': 'Curiel',
    'volume': '56',
    'first-page': '261',
    'year': '2005',
    'journal-title': 'Acta Astronautica',
    'DOI': '10.1016/j.actaastro.2004.09.026',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB24',
    'author': 'Cutter',
    'volume': '59',
    'first-page': '153',
    'year': '2006',
    'journal-title': 'Journal of the British Interplanetary Society'},
   {'key': '10.1002/ppp.619-BIB25',
    'author': 'Davies',
    'volume': '101',
    'first-page': '427',
    'year': '2006a',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2005.08.007',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB26',
    'author': 'Davies',
    'volume': '59',
    'first-page': '158',
    'year': '2006b',
    'journal-title': 'Journal of the British Interplanetary Society'},
   {'key': '10.1002/ppp.619-BIB27',
    'author': 'Dean',
    'volume': '54',
    'first-page': '363',
    'year': '1988',
    'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
   {'key': '10.1002/ppp.619-BIB28',
    'author': 'Dehls',
    'year': '2002',
    'unstructured': ', . 2002. Ground deformation monitoring in the Ranafjord area of Norway by means of the permanent scatterers technique. IEEE Geoscience and Remote Sensing Symposium, 2002. 1, 203–207.'},
   {'key': '10.1002/ppp.619-BIB29',
    'author': 'Delacourt',
    'volume': '31',
    'first-page': 'l15619',
    'year': '2004',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2004GL020193',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB30',
    'author': 'Delacourt',
    'volume': '178',
    'first-page': '89',
    'year': '2007',
    'journal-title': 'Bulletin de la Societe Geologique de France',
    'DOI': '10.2113/gssgfbull.178.2.89',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB31',
    'author': 'Doggett',
    'volume': '101',
    'first-page': '447',
    'year': '2006',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2005.11.014',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB32',
    'author': 'Dozier',
    'volume': '32',
    'first-page': '465',
    'year': '2004',
    'journal-title': 'Annual Review of Earth and Planetary Sciences',
    'DOI': '10.1146/annurev.earth.32.101802.120404',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB33',
    'author': 'Dramis',
    'volume': '6',
    'first-page': '73',
    'year': '1995',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.3430060108',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB34',
    'author': 'Duguay',
    'year': '1995',
    'unstructured': '. 1995. Assessment of SPOT panchromatic imagery in the detection and identification of permafrost features, Fosheim Peninsula, Ellesmere Island, N.W.T. Seventeenth Canadian Symposium on Remote Sensing. Canadian Aeronautics and Space Institute, vol. 17, 8–14.'},
   {'key': '10.1002/ppp.619-BIB35',
    'author': 'Duguay',
    'first-page': '163',
    'year': '2005',
    'unstructured': '(eds). 2005. Remote Sensing in Northern Hydrology: Measuring Environmental Change. Geophysical Monograph. American Geophysical Union: Washington; 163.',
    'volume-title': 'Remote Sensing in Northern Hydrology: Measuring Environmental Change',
    'DOI': '10.1029/GM163',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB36',
    'doi-asserted-by': 'crossref',
    'first-page': '91',
    'DOI': '10.1029/163GM06',
    'volume-title': 'Remote Sensing in Northern Hydrology: Measuring Environmental Change',
    'volume': 'vol. 163',
    'author': 'Duguay',
    'year': '2005',
    'unstructured': ', , . 2005. Satellite remote sensing of permafrost and seasonally frozen ground. In Remote Sensing in Northern Hydrology: Measuring Environmental Change, (eds). Geophysical Monograph. American Geophysical Union: Washington; vol. 163, 91–118.'},
   {'key': '10.1002/ppp.619-BIB37',
    'author': 'Eldhuset',
    'volume': '24',
    'first-page': '1415',
    'year': '2003',
    'journal-title': 'International Journal of Remote Sensing',
    'DOI': '10.1080/01431160210153039',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB38',
    'author': 'Engeset',
    'volume': '36',
    'first-page': '1879',
    'year': '1998',
    'journal-title': 'IEEE Transactions on Geosciences and Remote Sensing',
    'DOI': '10.1109/36.729359',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB39',
    'author': 'Etzelmüller',
    'volume': '4',
    'first-page': '129',
    'year': '2000',
    'journal-title': 'Transactions in GIS',
    'DOI': '10.1111/1467-9671.00043',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB40',
    'author': 'Etzelmüller',
    'volume': '12',
    'first-page': '79',
    'year': '2001',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.384',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB41',
    'author': 'Fischer',
    'volume': '6',
    'first-page': '761',
    'year': '2006',
    'journal-title': 'Natural Hazards and Earth System Sciences',
    'DOI': '10.5194/nhess-6-761-2006',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB42',
    'author': 'Floricioiu',
    'volume': '39',
    'first-page': '2634',
    'year': '2001',
    'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
    'DOI': '10.1109/36.974998',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB43',
    'author': 'Ford',
    'volume': '57',
    'first-page': '389',
    'year': '2004',
    'journal-title': 'Arctic',
    'DOI': '10.14430/arctic516',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB44',
    'author': 'Foriero',
    'volume': '35',
    'first-page': '560',
    'year': '1998',
    'journal-title': 'Canadian Geotechnical Journal',
    'DOI': '10.1139/t98-024',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB45',
    'author': 'Frauenfelder',
    'volume': '49',
    'first-page': '145',
    'year': '2005',
    'journal-title': 'Zeitschrift für Geomorphologie'},
   {'key': '10.1002/ppp.619-BIB46',
    'author': 'French',
    'volume': '17',
    'first-page': '3037',
    'year': '1996',
    'journal-title': 'International Journal of Remote Sensing',
    'DOI': '10.1080/01431169608949126',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB47',
    'author': 'Frohn',
    'volume': '97',
    'first-page': '116',
    'year': '2005',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2005.04.022',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB48',
    'author': 'Geist',
    'year': '2003',
    'unstructured': ', . 2003. Airborne laser scanning technology and its potential for applications in glaciology. ISPRS Workshop on 3-D Reconstruction from Airborne Laserscanner and INSAR Data.'},
   {'key': '10.1002/ppp.619-BIB49',
    'author': 'Glenn',
    'volume': '73',
    'first-page': '131',
    'year': '2006',
    'journal-title': 'Geomorphology',
    'DOI': '10.1016/j.geomorph.2005.07.006',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB50',
    'author': 'Granberg',
    'volume': '20',
    'first-page': '245',
    'year': '1994',
    'journal-title': 'Canadian Journal of Remote Sensing'},
   {'key': '10.1002/ppp.619-BIB51',
    'author': 'Grippa',
    'volume': '34',
    'year': '2007',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2007GL030165',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB52',
    'author': 'Grosse',
    'volume': '16',
    'first-page': '163',
    'year': '2005',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.509',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB53',
    'first-page': '23',
    'volume-title': 'Greenhouse-impact on Cold-climate Ecosystems and Landscapes',
    'volume': '22',
    'author': 'Haeberli',
    'year': '1992a',
    'unstructured': '1992a. Possible effects of climatic change on the evolution of Alpine permafrost. In Greenhouse-impact on Cold-climate Ecosystems and Landscapes, (eds). Catena Supplement 22: 23–35.'},
   {'key': '10.1002/ppp.619-BIB54',
    'author': 'Haeberli',
    'volume': '3',
    'first-page': '111',
    'year': '1992b',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.3430030208',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB55',
    'doi-asserted-by': 'crossref',
    'first-page': '167',
    'DOI': '10.1079/9780851995984.0167',
    'volume-title': 'Environmental Change and Geomorphic Hazards in Forests',
    'volume': 'vol 9',
    'author': 'Haeberli',
    'year': '2002',
    'unstructured': '. 2002. Natural hazards in forests: glacier and permafrost effects as related to climate change. In: (ed.), Environmental Change and Geomorphic Hazards in Forests. IUFRO Research Series. CABI Publishing: Wallingford/New York; vol 9, 167–202.'},
   {'key': '10.1002/ppp.619-BIB56',
    'author': 'Haeberli',
    'first-page': '303',
    'year': '1990',
    'unstructured': ', , . 1990. Investigation of 1987 debris flows in the Swiss Alps: general concept and geophysical soundings. In Hydrology in Mountainous Regions II, Artificial Reservoirs, Water and Slopes, IAHS Publication No. 194. IAHS: Wallingford; 303–310.',
    'volume-title': 'Hydrology in Mountainous Regions II, Artificial Reservoirs, Water and Slopes'},
   {'key': '10.1002/ppp.619-BIB57',
    'author': 'Haeberli',
    'volume': '47',
    'first-page': '111',
    'year': '2001',
    'journal-title': 'Journal of Glaciology',
    'DOI': '10.3189/172756501781832575',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB58',
    'author': 'Haeberli',
    'volume': '47',
    'first-page': '111',
    'year': '2005',
    'journal-title': 'Journal of Glaciology',
    'DOI': '10.3189/172756501781832575',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB59',
    'author': 'Harris',
    'first-page': '215',
    'year': '2005',
    'unstructured': '2005. Climate change, mountain permafrost degradation and geotechnical hazard. In: (eds.), Global Change and Mountain Regions (A State of Knowledge Overview). Advances in Global Change Research. Springer: Dordrecht; 215–224.',
    'volume-title': 'Global Change and Mountain Regions (A State of Knowledge Overview)',
    'DOI': '10.1007/1-4020-3508-X_22',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB60',
    'author': 'Harris',
    'volume': '18',
    'first-page': '105',
    'year': '2007',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.573',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB61',
    'author': 'Harris',
    'volume': '32',
    'first-page': '341',
    'year': '2006',
    'journal-title': 'Canadian Journal of Remote Sensing',
    'DOI': '10.5589/m06-029',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB62',
    'author': 'Hauber',
    'year': '2000',
    'unstructured': ', , , , . 2000. Digital and automated high resolution stereo mapping of the Sonnblick glacier (Austria) with HRSC-A. EARSeL-SIG-Workshop Land Ice and Snow, 246–254.'},
   {'key': '10.1002/ppp.619-BIB63',
    'author': 'Hilley',
    'volume': '304',
    'first-page': '1952',
    'year': '2004',
    'journal-title': 'Science',
    'DOI': '10.1126/science.1098821',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB64',
    'author': 'Hinkel',
    'volume': '16',
    'first-page': '327',
    'year': '2005',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.532',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB65',
    'author': 'Hinkel',
    'volume': '112',
    'first-page': 'f02s16',
    'year': '2007',
    'journal-title': 'Journal of Geophysical Research-Earth Surface',
    'DOI': '10.1029/2006JF000584',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB66',
    'first-page': '465',
    'volume-title': 'Seventh International Conference on Permafrost',
    'volume': '57',
    'author': 'Hoelzle',
    'year': '1998',
    'unstructured': ", , . 1998. Surface movement and internal deformation of ice-rock mixtures within rock glaciers in the Upper Engadin, Switzerland. In Seventh International Conference on Permafrost, Centre d'études nordiques de Université Laval, Collection Nordicana 57, Quebec, Canada; 465–472."},
   {'key': '10.1002/ppp.619-BIB67',
    'author': 'Huggel',
    'volume': '39',
    'first-page': '316',
    'year': '2002',
    'journal-title': 'Canadian Geotechnical Journal',
    'DOI': '10.1139/t01-099',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB68',
    'author': 'Huggel',
    'volume': '5',
    'first-page': '173',
    'year': '2005',
    'journal-title': 'Natural Hazards and Earth System Sciences',
    'DOI': '10.5194/nhess-5-173-2005',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB69',
    'author': 'Ip',
    'volume': '101',
    'first-page': '463',
    'year': '2006',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2005.12.018',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB70',
    'author': 'Janeras',
    'year': '2004',
    'unstructured': ', , , , , , . 2004. LIDAR applications to rock fall hazard assessment in Vall de Núria. 4th ICA Mountain Cartography Workshop. Institut Cartografic de Catalunya. vol. 8.'},
   {'key': '10.1002/ppp.619-BIB71',
    'first-page': '489',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': 'vol.1',
    'author': 'Johnson',
    'year': '2003',
    'unstructured': ', , . 2003. Erosion progression and adaptation strategy in a northern coastal community. In Eighth International Conference on Permafrost. Balkema: vol.1, 489–494.'},
   {'key': '10.1002/ppp.619-BIB72',
    'author': 'Jorgenson',
    'volume': '33',
    'first-page': 'l02503',
    'year': '2006',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2005GL024960',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB73',
    'author': 'Joughin',
    'volume': '36',
    'first-page': '25',
    'year': '1999',
    'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
    'DOI': '10.1109/36.655315',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB74',
    'author': 'JTC1',
    'year': '2004',
    'unstructured': 'JTC1. 2004. ISSMGE, ISRM and IAEG Joint Technical Committee on Landslides and Engineered Slopes (JTC1): ISSMGE TC32 - Technical Committee on Risk Assessment and Management Glossary of Risk Assessment Terms – Version 1, July 2004.'},
   {'key': '10.1002/ppp.619-BIB75',
    'author': 'Kääb',
    'volume': '57',
    'first-page': '39',
    'year': '2002',
    'journal-title': 'ISPRS Journal of Photogrammetry and Remote Sensing',
    'DOI': '10.1016/S0924-2716(02)00114-4',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB76',
    'author': 'Kääb',
    'volume': '94',
    'first-page': '463',
    'year': '2005a',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2004.11.003',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB77',
    'author': 'Kääb',
    'year': '2005b',
    'unstructured': '2005b. Remote Sensing of Mountain Glaciers and Permafrost Creep, Schriftenreihe Physische Geographie. Glaziologie und Geomorphodynamik. 48. University of Zurich, Zurich.'},
   {'key': '10.1002/ppp.619-BIB78',
    'author': 'Kääb',
    'volume': '33',
    'first-page': '385',
    'year': '2001',
    'journal-title': 'Arctic, Antarctic, and Alpine Research',
    'DOI': '10.1080/15230430.2001.12003445',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB79',
    'author': 'Kääb',
    'volume': '16',
    'first-page': '187',
    'year': '2005',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.507',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB80',
    'author': 'Kääb',
    'volume': '11',
    'first-page': '315',
    'year': '2000',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/1099-1530(200012)11:4<315::AID-PPP365>3.0.CO;2-J',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB81',
    'author': 'Kääb',
    'volume': '8',
    'first-page': '409',
    'year': '1997',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/(SICI)1099-1530(199710/12)8:4<409::AID-PPP267>3.0.CO;2-C',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB82',
    'author': 'Kääb',
    'volume': '84117',
    'first-page': '121',
    'year': '2003',
    'journal-title': 'EOS Transactions, American Geophysical Union'},
   {'key': '10.1002/ppp.619-BIB83',
    'author': 'Kääb',
    'volume': '5',
    'first-page': '527',
    'year': '2005a',
    'journal-title': 'Natural Hazards and Earth System Sciences',
    'DOI': '10.5194/nhess-5-527-2005',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB84',
    'author': 'Kääb',
    'first-page': '225',
    'year': '2005b',
    'unstructured': ', . 2005b. Glacier and permafrost hazards in high mountains. In: (eds), Global Change and Mountain Regions (A State of Knowledge Overview). Advances in Global Change Research. Springer: Dordrecht; 225–234.',
    'volume-title': 'Global Change and Mountain Regions (A State of Knowledge Overview)',
    'DOI': '10.1007/1-4020-3508-X_23',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB85',
    'author': 'Kääb',
    'volume': '56',
    'first-page': '172',
    'year': '2007',
    'journal-title': 'Global and Planetary Change',
    'DOI': '10.1016/j.gloplacha.2006.07.005',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB86',
    'author': 'Kane',
    'volume': '27',
    'first-page': '25',
    'year': '1996',
    'journal-title': 'Nordic Hydrology',
    'DOI': '10.2166/nh.1996.0017',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB87',
    'author': 'Kaufmann',
    'volume': '37',
    'first-page': '119',
    'year': '2002',
    'journal-title': 'Grazer Schriften der Geographie und Raumforschung'},
   {'key': '10.1002/ppp.619-BIB88',
    'first-page': '525',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': 'vol. 1',
    'author': 'Kaufmann',
    'year': '2003',
    'unstructured': '. 2003. Quantitative analysis of rock glacier creep by means of digital photogrammetry using multi-temporal aerial photographs: two case studies in the Austrian Alps. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 1, 525–530.'},
   {'key': '10.1002/ppp.619-BIB89',
    'author': 'Kaufmann',
    'year': '2004',
    'unstructured': '. 2004. Documentation of the retreat of a small debris-covered cirque glacier (Goessnitzkees, Austrian Alps) by means of terrestrial photogrammetry. 4th ICA Mountain Cartography Workshop. Institut Cartografic de Catalunya. vol. 8, 65–76.'},
   {'key': '10.1002/ppp.619-BIB90',
    'author': 'Kennett',
    'volume': '24',
    'first-page': '293',
    'year': '1997',
    'journal-title': 'Annals of Glaciology',
    'DOI': '10.1017/S0260305500012337',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB91',
    'first-page': '537',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': 'vol. 1',
    'author': 'Kenyi',
    'year': '2003',
    'unstructured': '. 2003. Measuring rock glacier surface deformation using SAR interferometry. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 1, 537–541.'},
   {'key': '10.1002/ppp.619-BIB92',
    'author': 'Kerle',
    'volume': '26',
    'first-page': '140',
    'year': '2002',
    'journal-title': 'Disasters',
    'DOI': '10.1111/1467-7717.00197',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB93',
    'first-page': '543',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': 'vol. 1',
    'author': 'Kershaw',
    'year': '2003',
    'unstructured': '2003. Permafrost landform degradation over more than half a century, Macmillan/Caribou Pass region, NWT/Yukon, Canada. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 1, 543–548.'},
   {'key': '10.1002/ppp.619-BIB94',
    'author': 'Kim',
    'year': '1996',
    'unstructured': '. 1996. Passive microwave freeze/thaw classification for wet tundra regions. IEEE Geoscience and Remote Sensing Symposium, 1996. vol. 4, 2267–2269.'},
   {'key': '10.1002/ppp.619-BIB95',
    'author': 'Kimura',
    'volume': '66',
    'first-page': '337',
    'year': '2000',
    'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
   {'key': '10.1002/ppp.619-BIB96',
    'author': 'Kneisel',
    'volume': '18',
    'first-page': '259',
    'year': '2007',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.593',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB97',
    'author': 'Komarov',
    'year': '2002',
    'unstructured': ', . 2002. SAR polarimetry for permafrost active layer freeze/thaw processes. IEEE Geoscience and Remote Sensing Symposium, 2002. vol. 5, 2654–2656.'},
   {'key': '10.1002/ppp.619-BIB98',
    'author': 'König',
    'volume': '39',
    'first-page': '1',
    'year': '2001',
    'journal-title': 'Reviews of Geophysics',
    'DOI': '10.1029/1999RG000076',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB99',
    'author': 'Koopmans',
    'volume': '48',
    'first-page': '28',
    'year': '1993',
    'journal-title': 'ISPRS Journal of Photogrammetry and Remote Sensing',
    'DOI': '10.1016/0924-2716(93)90053-P',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB100',
    'author': 'Lantuit',
    'volume': '5',
    'first-page': '413',
    'year': '2005',
    'journal-title': 'Natural Hazards and Earth System Sciences',
    'DOI': '10.5194/nhess-5-413-2005',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB101',
    'first-page': '667',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': '2',
    'author': 'Lerjen',
    'year': '2003',
    'unstructured': ', , . 2003. Local distribution pattern of discontinuous mountain permafrost. A. process study at Flüela Pass, Swiss Alps. In Eighth International Conference on Permafrost. Balkema: Lisse; 2, 667–672.'},
   {'key': '10.1002/ppp.619-BIB102',
    'author': 'Leverington',
    'volume': '8',
    'first-page': '207',
    'year': '1997',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/(SICI)1099-1530(199732)8:2<205::AID-PPP252>3.0.CO;2-5',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB103',
    'author': 'Lewkowicz',
    'volume': '25',
    'first-page': '34',
    'year': '1999',
    'journal-title': 'Canadian Journal of Remote Sensing',
    'DOI': '10.1080/07038992.1999.10855261',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB104',
    'author': 'Lewkowicz',
    'volume': '69',
    'first-page': '275',
    'year': '2005a',
    'journal-title': 'Geomorphology',
    'DOI': '10.1016/j.geomorph.2005.01.011',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB105',
    'author': 'Lewkowicz',
    'volume': '16',
    'first-page': '115',
    'year': '2005b',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.522',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB106',
    'author': 'Li',
    'volume': '67',
    'first-page': '1283',
    'year': '2001',
    'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
   {'key': '10.1002/ppp.619-BIB107',
    'author': 'Lougeay',
    'first-page': '487',
    'year': '1974',
    'unstructured': '1974. Detection of buried glacial and ground ice with thermal infrared remote sensing. In: (Eds.), Advanced Concepts and Techniques in the Study of Snow and Ice Resources. National Academy of Sciences: Washington, DC; 487–494.',
    'volume-title': 'Advanced Concepts and Techniques in the Study of Snow and Ice Resources'},
   {'key': '10.1002/ppp.619-BIB108',
    'author': 'Lougeay',
    'volume': '48',
    'first-page': '269',
    'year': '1982',
    'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
   {'key': '10.1002/ppp.619-BIB109',
    'author': 'Lutz',
    'year': '2003',
    'unstructured': ', . 2003. Investigations of airborne laser scanning signal intensity on glacial surfaces - utilizing comprehensive laser geometry modelling and orthophoto surface modelling (A case study: Svartisheibreen, Norway). ISPRS Workshop on 3-D Reconstruction from Airborne Laserscanner and INSAR Data.'},
   {'key': '10.1002/ppp.619-BIB110',
    'author': 'Luzi',
    'volume': '27',
    'first-page': '2331',
    'year': '2006',
    'journal-title': 'International Journal of Remote Sensing',
    'DOI': '10.1080/01431160600554975',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB111',
    'author': 'Lyle',
    'year': '2006',
    'unstructured': '. 2006. Influence of degrading permafrost on landslide processes: Little Salmon Lake, Yukon Territory, Canada. ECI Conference on Geohazards, paper 4.'},
   {'key': '10.1002/ppp.619-BIB112',
    'author': 'Mantovani',
    'volume': '15',
    'first-page': '213',
    'year': '1996',
    'journal-title': 'Geomorphology',
    'DOI': '10.1016/0169-555X(95)00071-C',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB113',
    'author': 'Mars',
    'volume': '35',
    'first-page': '583',
    'year': '2007',
    'journal-title': 'Geology',
    'DOI': '10.1130/G23672A.1',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB114',
    'author': 'McKillop',
    'volume': '56',
    'first-page': '153',
    'year': '2007',
    'journal-title': 'Global and Planetary Change',
    'DOI': '10.1016/j.gloplacha.2006.07.004',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB115',
    'author': 'McMichael',
    'volume': '18',
    'first-page': '2371',
    'year': '1997',
    'journal-title': 'International Journal of Remote Sensing',
    'DOI': '10.1080/014311697217666',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB116',
    'author': 'Metternicht',
    'volume': '98',
    'first-page': '284',
    'year': '2005',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2005.08.004',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB117',
    'author': 'Mironov',
    'year': '2005',
    'unstructured': ', , . 2005. Freeze-thaw processes radar remote sensing modeling and image processing. IEEE Geoscience and Remote Sensing Symposium, 2005. vol. 1, 608–611.'},
   {'key': '10.1002/ppp.619-BIB118',
    'author': 'Moorman',
    'year': '1998',
    'unstructured': '. 1998. Detecting ground ice melt with interferometric synthetic aperture radar. 20th Canadian Symposium on Remote Sensing. Calgary, Alberta, 10–13 May, 1998.'},
   {'key': '10.1002/ppp.619-BIB119',
    'author': 'Nagler',
    'year': '2002',
    'unstructured': ', . 2002. Feasibility of DInSAR for mapping complex motion fields of Alpine ice- and rock-glaciers. In Third International Symposium on Retrieval of Bio- and Geophysical Parameters from SAR Data for Land Application. ESA - SP. vol. 475, 377–382.'},
   {'key': '10.1002/ppp.619-BIB120',
    'author': 'Nelson',
    'volume': '410',
    'first-page': '889',
    'year': '2001',
    'journal-title': 'Nature',
    'DOI': '10.1038/35073746',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB121',
    'author': 'Nelson',
    'volume': '26',
    'first-page': '203',
    'year': '2002',
    'journal-title': 'Natural Hazards',
    'DOI': '10.1023/A:1015612918401',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB122',
    'author': 'Noetzli',
    'volume': '10',
    'first-page': '161',
    'year': '2006',
    'journal-title': 'Computational Geosciences',
    'DOI': '10.1007/s10596-005-9017-z',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB123',
    'author': 'Noferini',
    'volume': '4',
    'first-page': '659',
    'year': '2007',
    'journal-title': 'IEEE Geoscience and Remote Sensing Letters',
    'DOI': '10.1109/LGRS.2007.905118',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB124',
    'first-page': '833',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': 'vol. 2',
    'author': 'Nolan',
    'year': '2003',
    'unstructured': '. 2003. Evaluation of a new DEM of the Putuligayuk watershed for Arctic hydrologic applications. In Eighth International Conference on Permafrost. Balkema: Lisse; vol. 2, 833–838.'},
   {'key': '10.1002/ppp.619-BIB125',
    'author': 'Ødegård',
    'volume': '14',
    'first-page': '359',
    'year': '2004',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.467',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB126',
    'author': 'Ødegård',
    'volume': '53',
    'first-page': '226',
    'year': '1999',
    'journal-title': 'Norwegian Journal of Geography'},
   {'key': '10.1002/ppp.619-BIB127',
    'author': 'Ostir',
    'volume': '24',
    'first-page': '3983',
    'year': '2003',
    'journal-title': 'International Journal of Remote Sensing',
    'DOI': '10.1080/0143116031000103826',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB128',
    'author': 'Otto',
    'volume': '31',
    'first-page': '179',
    'year': '2007',
    'journal-title': 'Progress in Physical Geography',
    'DOI': '10.1177/0309133307076479',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB129',
    'author': 'Peddle',
    'volume': '44',
    'first-page': '67',
    'year': '1993',
    'journal-title': 'Remote Sensing and Environment',
    'DOI': '10.1016/0034-4257(93)90103-5',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB130',
    'author': 'Pilgrim',
    'volume': '33',
    'first-page': '291',
    'year': '1996',
    'journal-title': 'Survey Review',
    'DOI': '10.1179/sre.1996.33.259.291',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB131',
    'author': 'Pitkänen',
    'first-page': '769',
    'year': '2004',
    'journal-title': 'ISPRS International Archives of Photogrammetry, Remote Sensing and Spatial Information Sciences'},
   {'key': '10.1002/ppp.619-BIB132',
    'author': 'Quincey',
    'volume': '29',
    'first-page': '475',
    'year': '2005',
    'journal-title': 'Progress in Physical Geography',
    'DOI': '10.1191/0309133305pp456ra',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB133',
    'author': 'Quincey',
    'volume': '56',
    'first-page': '137',
    'year': '2007',
    'journal-title': 'Global and Planetary Change',
    'DOI': '10.1016/j.gloplacha.2006.07.013',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB134',
    'author': 'Rabatel',
    'year': '2007',
    'unstructured': ', , . 2007. Recent rock falls and rock avalanches in high-alpine rock walls affected by permafrost. A. case study in the Mont Blanc massif (2005–2006) Geophysical Research Abstract, European Geosciences Union 9, abstract 07130.'},
   {'key': '10.1002/ppp.619-BIB135',
    'author': 'Ranson',
    'year': '2004',
    'unstructured': ', , . 2004. Landcover attributes from ICESat GLAS data in central Siberia. IEEE Geoscience and Remote Sensing Symposium, 2004. vol. 2, 753–756.'},
   {'key': '10.1002/ppp.619-BIB136',
    'author': 'Ranzi',
    'year': '2004',
    'unstructured': ', , . 2004. Use of multispectral ASTER images for mapping debris-covered glaciers within the GLIMS project. IEEE International Geoscience and Remote Sensing Symposium. vol. 2, 1144–1147.'},
   {'key': '10.1002/ppp.619-BIB137',
    'author': 'Renouard',
    'volume': '4',
    'first-page': '103',
    'year': '1995',
    'journal-title': 'EARSeL Advances in Remote Sensing –– Topography from Space'},
   {'key': '10.1002/ppp.619-BIB138',
    'first-page': '187',
    'volume-title': 'Debris Covered Glaciers',
    'volume': '264',
    'author': 'Richardson',
    'year': '2000',
    'unstructured': '. 2000. Degradation of ice-cored moraine dams: implications for hazard development. In Debris Covered Glaciers, IAHS Publication 264. IAHS: Wallingford; 187–197.'},
   {'key': '10.1002/ppp.619-BIB139',
    'author': 'Rignot',
    'volume': '49',
    'first-page': '131',
    'year': '1994',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/0034-4257(94)90049-3',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB140',
    'author': 'Roer',
    'volume': '49',
    'first-page': '73',
    'year': '2005',
    'journal-title': 'Zeitschrift für Geomorphologie'},
   {'key': '10.1002/ppp.619-BIB141',
    'author': 'Rosser',
    'volume': '38',
    'first-page': '363',
    'year': '2005',
    'journal-title': 'Quarterly Journal of Engineering Geology and Hydrogeology',
    'DOI': '10.1144/1470-9236/05-008',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB142',
    'author': 'Rott',
    'volume': '14',
    'first-page': '217',
    'year': '1994',
    'journal-title': 'Advances in Space Research',
    'DOI': '10.1016/0273-1177(94)90218-6',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB143',
    'author': 'Rott',
    'year': '1999',
    'unstructured': '. 1999. Analysis of mass movement in alpine terrain by means of SAR interferometry. IEEE Geoscience and Remote Sensing Symposium, 1999; 1933–1936.'},
   {'key': '10.1002/ppp.619-BIB144',
    'author': 'Salisbury',
    'volume': '99',
    'first-page': '24235',
    'year': '1994',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/94JB00579',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB145',
    'author': 'Salzmann',
    'volume': '58',
    'first-page': '74',
    'year': '2004',
    'journal-title': 'Norwegian Journal of Geography'},
   {'key': '10.1002/ppp.619-BIB146',
    'author': 'Sauber',
    'volume': '32',
    'first-page': 'l23s01',
    'year': '2005',
    'journal-title': 'Geophysical Research Letters',
    'DOI': '10.1029/2005GL023943',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB147',
    'author': 'Schowengerdt',
    'year': '1997',
    'unstructured': '1997. Remote Sensing. Models and Methods for Image Processing — Second Edition. Academic Press: San Diego and Chestnut Hill.',
    'volume-title': 'Remote Sensing. Models and Methods for Image Processing — Second Edition'},
   {'key': '10.1002/ppp.619-BIB148',
    'author': 'Shengbo',
    'year': '2004',
    'unstructured': '2004. Permafrost classification on the Tibet Plateau based on surface emissivity retrieval from Terra-MODIS data. IEEE Geoscience and Remote Sensing Symposium, 2004. vol. 4, 2699–2702.'},
   {'key': '10.1002/ppp.619-BIB149',
    'author': 'Singhroy',
    'volume': '21',
    'first-page': '465',
    'year': '1998',
    'journal-title': 'Advances in Space Research',
    'DOI': '10.1016/S0273-1177(97)00882-X',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB150',
    'author': 'Singhroy',
    'year': '2007',
    'unstructured': ', , . 2007. InSAR monitoring of landslides on permafrost terrain in Canada. IEEE International Geoscience and Remote Sensing Symposium, 2007; 2451–2454.'},
   {'key': '10.1002/ppp.619-BIB151',
    'first-page': '1057',
    'volume-title': 'Eighth International Conference on Permafrost',
    'volume': '2',
    'author': 'Sjogren',
    'year': '2003',
    'unstructured': ', . 2003. The importance of temporal scale when mapping landscape change in permafrost environments using Interferometric Synthetic Aperture Radar. In Eighth International Conference on Permafrost. Balkema: Lisse; 2, 1057–1062.'},
   {'key': '10.1002/ppp.619-BIB152',
    'author': 'Smith',
    'volume': '308',
    'first-page': '1429',
    'year': '2005',
    'journal-title': 'Science',
    'DOI': '10.1126/science.1108142',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB153',
    'author': 'Stebler',
    'volume': '2',
    'first-page': '357',
    'year': '2005',
    'journal-title': 'IEEE Geoscience and Remote Sensing Letters',
    'DOI': '10.1109/LGRS.2005.851739',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB154',
    'author': 'Stockdon',
    'volume': '18',
    'first-page': '502',
    'year': '2002',
    'journal-title': 'Journal of Coastal Research'},
   {'key': '10.1002/ppp.619-BIB155',
    'author': 'Stow',
    'volume': '89',
    'first-page': '281',
    'year': '2004',
    'journal-title': 'Remote Sensing of Environment',
    'DOI': '10.1016/j.rse.2003.10.018',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB156',
    'author': 'Strom',
    'volume': '3',
    'first-page': '125',
    'year': '2006',
    'journal-title': 'Landslides',
    'DOI': '10.1007/s10346-005-0027-7',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB157',
    'author': 'Strozzi',
    'volume': '67',
    'first-page': '1261',
    'year': '2001',
    'journal-title': 'Photogrammetric Engineering and Remote Sensing'},
   {'key': '10.1002/ppp.619-BIB158',
    'author': 'Strozzi',
    'volume': '25',
    'first-page': '2919',
    'year': '2004',
    'journal-title': 'International Journal of Remote Sensing',
    'DOI': '10.1080/0143116042000192330',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB159',
    'author': 'Swanson',
    'volume': '28',
    'first-page': '217',
    'year': '1996',
    'journal-title': 'Arctic and Alpine Research',
    'DOI': '10.2307/1551763',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB160',
    'author': 'Tait',
    'volume': '79',
    'first-page': '61',
    'year': '2005',
    'journal-title': 'Engineering Geology',
    'DOI': '10.1016/j.enggeo.2004.10.010',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB161',
    'author': 'Tinti',
    'volume': '24',
    'first-page': '157',
    'year': '1999',
    'journal-title': 'Physics and Chemistry of the Earth, Part A-Solid Earth and Geodesy',
    'DOI': '10.1016/S1464-1895(99)00012-5',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB162',
    'author': 'Tobias',
    'volume': '46',
    'first-page': '101',
    'year': '2000',
    'journal-title': 'Acta Astronautica',
    'DOI': '10.1016/S0094-5765(99)00200-3',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB163',
    'author': 'Toutin',
    'volume': '40',
    'first-page': '2241',
    'year': '2002',
    'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
    'DOI': '10.1109/TGRS.2002.802878',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB164',
    'author': 'Toutin',
    'volume': '41',
    'first-page': '2102',
    'year': '2002',
    'journal-title': 'Optical Engineering',
    'DOI': '10.1117/1.1496111',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB165',
    'author': 'Tralli',
    'volume': '59',
    'first-page': '185',
    'year': '2005',
    'journal-title': 'ISPRS Journal of Photogrammetry and Remote Sensing',
    'DOI': '10.1016/j.isprsjprs.2005.02.002',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB166',
    'author': 'Ufimtsev',
    'volume': '18',
    'first-page': '167',
    'year': '1998',
    'journal-title': 'Natural Hazards',
    'DOI': '10.1023/A:1008052217740',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB167',
    'author': 'Vachon',
    'year': '1996',
    'unstructured': ', , , , . 1996. Airborne and Spaceborne SAR Interferometry: Application to the Athabasca Glacier Area. IEEE Geoscience and Remote Sensing Symposium 1996. 2255–2257.'},
   {'key': '10.1002/ppp.619-BIB168',
    'author': 'van Asselen',
    'volume': '78',
    'first-page': '309',
    'year': '2006',
    'journal-title': 'Geomorphology',
    'DOI': '10.1016/j.geomorph.2006.01.037',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB169',
    'author': 'Vonder Mühll',
    'volume': '12',
    'first-page': '27',
    'year': '2001',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.382',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB170',
    'author': 'Walder',
    'volume': '108',
    'first-page': '2236',
    'year': '2003',
    'journal-title': 'Journal of Geophysical Research',
    'DOI': '10.1029/2001JB000707',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB171',
    'author': 'Wang',
    'year': '1999',
    'unstructured': '. 1999. Detection of winter frost heaving of the active layer of arctic permafrost using SAR differential interferometry. IEEE Geoscience and Remote Sensing Symposium. 1946–1948.'},
   {'key': '10.1002/ppp.619-BIB172',
    'author': 'Wangensteen',
    'volume': '80',
    'first-page': '59',
    'year': '2006',
    'journal-title': 'Geomorphology',
    'DOI': '10.1016/j.geomorph.2006.01.034',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB173',
    'author': 'Wangensteen',
    'volume': '26',
    'first-page': '14',
    'year': '2007',
    'journal-title': 'Polar Research',
    'DOI': '10.1111/j.1751-8369.2007.00002.x',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB174',
    'author': 'Watanabe',
    'volume': '15',
    'first-page': '293',
    'year': '1995',
    'journal-title': 'Mountain Research and Development',
    'DOI': '10.2307/3673805',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB175',
    'author': 'Wegmann',
    'volume': '9',
    'first-page': '23',
    'year': '1998',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/(SICI)1099-1530(199801/03)9:1<23::AID-PPP274>3.0.CO;2-Y',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB176',
    'author': 'Wei',
    'volume': '3',
    'first-page': '260',
    'year': '2006',
    'journal-title': 'Landslides',
    'DOI': '10.1007/s10346-006-0045-0',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB177',
    'author': 'Wessels',
    'volume': '34',
    'first-page': '399',
    'year': '2002',
    'journal-title': 'Annals of Glaciology',
    'DOI': '10.3189/172756402781817545',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB178',
    'author': 'Weydahl',
    'volume': '39',
    'first-page': '2029',
    'year': '2001',
    'journal-title': 'IEEE Transactions on Geoscience and Remote Sensing',
    'DOI': '10.1109/36.951093',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB179',
    'author': 'Whitworth',
    'volume': '38',
    'first-page': '285',
    'year': '2005',
    'journal-title': 'Quarterly Journal of Engineering Geology and Hydrogeology',
    'DOI': '10.1144/1470-9236/04-057',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB180',
    'author': 'Yoshikawa',
    'volume': '14',
    'first-page': '151',
    'year': '2003',
    'journal-title': 'Permafrost and Periglacial Processes',
    'DOI': '10.1002/ppp.451',
    'doi-asserted-by': 'crossref'},
   {'key': '10.1002/ppp.619-BIB181',
    'author': 'Zhen',
    'year': '2000',
    'unstructured': '. 2000. Permafrost mapping in the Tibet plateau using polarimetric SAR. IEEE Geoscience and Remote Sensing Symposium. vol. 5, 2024–2026.'},
   {'key': '10.1002/ppp.619-BIB182',
    'author': 'Zhen',
    'year': '2003',
    'unstructured': ', , . 2003. Frozen ground deformation monitoring using SAR interferometry. IEEE Geoscience and Remote Sensing Symposium. vol. 4, 2933–2935.'},
   {'key': '10.1002/ppp.619-BIB183',
    'author': 'Zhijun',
    'year': '1999',
    'unstructured': '. 1999. Detection of winter frost heaving of the active layer of Arctic permafrost using SAR differential interferograms. IEEE Geoscience and Remote Sensing Symposium. vol. 4, 1946–1948.'},
   {'key': '10.1002/ppp.619-BIB184',
    'author': 'Zimmermann',
    'volume': '22',
    'first-page': '59',
    'year': '1992',
    'journal-title': 'Catena Supplement'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.619',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'},
   {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.619',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2019, 2, 11]],
   'date-time': '2019-02-11T17:03:18Z',
   'timestamp': 1549904598000},
  'score': 15.334935,
  'issued': {'date-parts': [[2008]]},
  'references-count': 184,
  'journal-issue': {'published-print': {'date-parts': [[2008, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.619',
  'relation': {'cites': []},
  'ISSN': ['1045-6740', '1099-1530'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'},
   {'value': '1099-1530', 'type': 'electronic'}]},
 {'indexed': {'date-parts': [[2020, 1, 3]],
   'date-time': '2020-01-03T01:23:14Z',
   'timestamp': 1578014594847},
  'reference-count': 21,
  'publisher': 'Wiley',
  'issue': '2',
  'license': [{'URL': 'http://doi.wiley.com/10.1002/tdm_license_1.1',
    'start': {'date-parts': [[2015, 9, 1]],
     'date-time': '2015-09-01T00:00:00Z',
     'timestamp': 1441065600000},
    'delay-in-days': 8188,
    'content-version': 'tdm'}],
  'content-domain': {'domain': [], 'crossmark-restriction': False},
  'short-container-title': ['Permafrost Periglac. Process.'],
  'published-print': {'date-parts': [[1993, 4]]},
  'DOI': '10.1002/ppp.3430040203',
  'type': 'journal-article',
  'created': {'date-parts': [[2007, 2, 5]],
   'date-time': '2007-02-05T19:46:53Z',
   'timestamp': 1170704813000},
  'page': '99-111',
  'source': 'Crossref',
  'is-referenced-by-count': 27,
  'title': ['Climate and permafrost'],
  'prefix': '10.1002',
  'volume': '4',
  'author': [{'given': 'M. K.',
    'family': 'Gavrilova',
    'sequence': 'first',
    'affiliation': []}],
  'member': '311',
  'reference': [{'key': '10.1002/ppp.3430040203-BIB1',
    'author': 'Anisimov',
    'volume': '1',
    'first-page': '79',
    'year': '1989',
    'journal-title': 'Meteoroliia i gidrologiia'},
   {'key': '10.1002/ppp.3430040203-BIB2',
    'author': 'Balobaev',
    'first-page': '184',
    'year': '1983',
    'unstructured': 'and (1983). Changes in the permafrost zone caused by climatic changes and human activity. In Problemy geokriologii (in Russian). Nauka, Moscow, pp. 184–194.',
    'volume-title': 'Problemy geokriologii (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB3',
    'author': 'Budyko',
    'volume': '10',
    'first-page': '5',
    'year': '1988',
    'journal-title': 'Meteorologiia i klimatologiia'},
   {'key': '10.1002/ppp.3430040203-BIB4',
    'author': 'Gavrilova',
    'first-page': '120',
    'year': '1973',
    'unstructured': '(1973) Climate of Central Yakutia (in Russian). Yakutknogoizdat, Yakutsk, 120 pp.',
    'volume-title': 'Climate of Central Yakutia (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB5',
    'author': 'Gavrilova',
    'first-page': '12',
    'year': '1974',
    'unstructured': "(1974) Climatic factors in the formation and dynamics of permafrost. In Geokriologicheskiie usloviia Mongol'skoi Narodnoi Respubliki (in Russian). Nauka, Moscow, pp. 12–29.",
    'volume-title': "Geokriologicheskiie usloviia Mongol'skoi Narodnoi Respubliki (in Russian)"},
   {'key': '10.1002/ppp.3430040203-BIB6',
    'author': 'Gavrilova',
    'first-page': '40',
    'year': '1977',
    'unstructured': "(1977). Microclimatologists in the BAM area. In Chelovek i stikhiia' 78 (in Russian). Gidrometeoizdat, Leningrad, pp. 40–41.",
    'volume-title': "Chelovek i stikhiia' 78 (in Russian)"},
   {'key': '10.1002/ppp.3430040203-BIB7',
    'author': 'Gavrilova',
    'first-page': '214',
    'year': '1978',
    'unstructured': '(1978). Climate and Perennial Freezing of Rocks (in Russian). Nauka, Novosibirsk, 214 pp.',
    'volume-title': 'Climate and Perennial Freezing of Rocks (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB8',
    'author': 'Gavrilova',
    'first-page': '113',
    'year': '1981',
    'unstructured': '(1981). Present Climate and Permafrost on the Continents (in Russian). Nauka, Novosibirsk, 113 pp.',
    'volume-title': 'Present Climate and Permafrost on the Continents (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB9',
    'author': 'Gavrilova',
    'volume': '7',
    'first-page': '114',
    'year': '1984',
    'journal-title': 'Meteorologiia i klimatologiia'},
   {'key': '10.1002/ppp.3430040203-BIB10',
    'author': 'Gavrilova',
    'first-page': '146',
    'year': '1987',
    'unstructured': '(1987). Analysis of changes in natural-climatic conditions in Yakutia to the beginning of the next century. In Prirodnye usloviia osvaevaemykh reginov Sibiri (in Russian). Permafrost Institute SB AS, Yakutsk, pp. 146–159.',
    'volume-title': 'Prirodnye usloviia osvaevaemykh reginov Sibiri (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB11',
    'author': 'Gavrilova',
    'year': '1988a',
    'unstructured': '(1988a). Permafrost-climatic characteristics of different classes. In Permafrost 5th International Conference Proceedings, 2–5 August 1988, Trondheim, Norway. Tapir. Vol. 1, pp. 78–83.'},
   {'key': '10.1002/ppp.3430040203-BIB12',
    'author': 'Gavrilova',
    'first-page': '77',
    'year': '1988b',
    'unstructured': "(1988b). When did the cooling start in Yakutia? In Chelovek i stikhiia' 89 (in Russian). Gidrometeoizdat, Leningrad, pp. 77–78.",
    'volume-title': "Chelovek i stikhiia' 89 (in Russian)"},
   {'key': '10.1002/ppp.3430040203-BIB13',
    'author': 'Goltsberg',
    'first-page': '184',
    'year': '1972',
    'unstructured': '(ed.) (1972) World Agroclimatic Atlas (in Russian). Glavnoye upravlenie geodezii i kartografii, Gidrometeoizdat, Moscow-Leningrad, 184 pp.',
    'volume-title': 'World Agroclimatic Atlas (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB14',
    'author': 'Katasonov',
    'first-page': '88',
    'year': '1985',
    'unstructured': '(1985). Cryolithology and absolute dating of permafrost in Yakutia. In Metody rekonstruktsii paleoklimatov (in Russian). Nauka, Moscow, pp. 88–91.',
    'volume-title': 'Metody rekonstruktsii paleoklimatov (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB15',
    'author': 'Lungersgauzen',
    'volume': '108',
    'first-page': '707',
    'year': '1956',
    'journal-title': 'Dokl. AS USSR'},
   {'key': '10.1002/ppp.3430040203-BIB16',
    'author': 'Nauka',
    'first-page': '292',
    'year': '1974',
    'unstructured': '(1974). General Geocryology (in Russian). Nauka, Novosibirsk, 292 pp.',
    'volume-title': 'General Geocryology (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB17',
    'author': 'Priesnitz',
    'year': '1978',
    'unstructured': 'and (1978). An approach to the ecology of permafrost in Central Iceland. In Proceedings of the 3rd International Conference on Permafrost, 10–13 July 1978, Edmonton, Alberta, Canada. NRC, Ottawa. Vol. 1, pp. 473–479.'},
   {'key': '10.1002/ppp.3430040203-BIB18',
    'author': 'Rubinstein',
    'first-page': '268',
    'year': '1966',
    'unstructured': 'and (1966). Present Climatic Changes (in Russian). Gidrometeoizdat, Leningrad, 268 pp.',
    'volume-title': 'Present Climatic Changes (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB19',
    'author': 'Sinitsyn',
    'first-page': '248',
    'year': '1980',
    'unstructured': '(1980). Introduction to Palaeoclimatic Studies (in Russian). 2nd edn, Nedra, Leningrad, 248 pp.',
    'volume-title': 'Introduction to Palaeoclimatic Studies (in Russian)'},
   {'key': '10.1002/ppp.3430040203-BIB20',
    'author': 'Tarling',
    'first-page': '16',
    'year': '1980',
    'unstructured': '(1980). Geology and geophysics of glaciations. In Ismenenie klimata (Russian translation from English). Gidrometeoizdat, Leningrad, pp. 16–44.',
    'volume-title': 'Ismenenie klimata'},
   {'key': '10.1002/ppp.3430040203-BIB21',
    'author': 'Velichko',
    'first-page': '256',
    'year': '1973',
    'unstructured': '(1973). Natural Processes in the Pleistocene (in Russian). Nauka, Moscow, 256 pp.',
    'volume-title': 'Natural Processes in the Pleistocene (in Russian)'}],
  'container-title': ['Permafrost and Periglacial Processes'],
  'language': 'en',
  'link': [{'URL': 'https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1002%2Fppp.3430040203',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'text-mining'},
   {'URL': 'https://onlinelibrary.wiley.com/doi/full/10.1002/ppp.3430040203',
    'content-type': 'unspecified',
    'content-version': 'vor',
    'intended-application': 'similarity-checking'}],
  'deposited': {'date-parts': [[2018, 8, 4]],
   'date-time': '2018-08-04T20:55:53Z',
   'timestamp': 1533416153000},
  'score': 15.334935,
  'issued': {'date-parts': [[1993, 4]]},
  'references-count': 21,
  'journal-issue': {'published-print': {'date-parts': [[1993, 4]]},
   'issue': '2'},
  'URL': 'http://dx.doi.org/10.1002/ppp.3430040203',
  'relation': {'cites': []},
  'ISSN': ['1045-6740', '1099-1530'],
  'issn-type': [{'value': '1045-6740', 'type': 'print'},
   {'value': '1099-1530', 'type': 'electronic'}]}]

Above, we can see that the items contains the majority of information about our query on permafrost. It contains a list of all of the results - we can check this with the type command we used earlier. Since we only are looking at the first page, our items list has only 20 items in it.

type(permafrost['message']['items'])
list
len(permafrost['message']['items'])
20

Creating Tables#

When our data exists in dictionaries, it’s a little hard to explore and manipulate. In order to tackle this, we’ll create a dataframe of the information so that we can access it more easily.

df_permafrost = pd.DataFrame(permafrost['message']['items'])
df_permafrost.head() # show the first 5 rows
indexed reference-count publisher issue license content-domain short-container-title DOI type created ... subject publisher-location isbn-type published-print update-policy ISBN assertion short-title subtitle archive
0 {'date-parts': [[2020, 4, 15]], 'date-time': '... 18 Wiley 2 [{'URL': 'http://doi.wiley.com/10.1002/tdm_lic... {'domain': [], 'crossmark-restriction': False} [Permafrost Periglac. Process.] 10.1002/ppp.695 journal-article {'date-parts': [[2010, 6, 8]], 'date-time': '2... ... [Earth-Surface Processes] NaN NaN NaN NaN NaN NaN NaN NaN NaN
1 {'date-parts': [[2020, 6, 9]], 'date-time': '2... 308 Springer International Publishing NaN [{'URL': 'http://www.springer.com/tdm', 'start... {'domain': ['link.springer.com'], 'crossmark-r... NaN 10.1007/978-3-030-31379-1_5 book-chapter {'date-parts': [[2020, 1, 1]], 'date-time': '2... ... NaN Cham [{'value': '9783030313784', 'type': 'print'}, ... {'date-parts': [[2020]]} http://dx.doi.org/10.1007/springer_crossmark_p... [9783030313784, 9783030313791] [{'value': '2 January 2020', 'order': 1, 'name... NaN NaN NaN
2 {'date-parts': [[2020, 4, 10]], 'date-time': '... 0 Wiley NaN NaN {'domain': [], 'crossmark-restriction': False} NaN 10.1002/(issn)1099-1530 journal {'date-parts': [[2006, 3, 21]], 'date-time': '... ... [Earth-Surface Processes] NaN NaN NaN NaN NaN NaN [Permafrost Periglac. Process.] NaN NaN
3 {'date-parts': [[2020, 4, 8]], 'date-time': '2... 47 Wiley 4 [{'URL': 'http://doi.wiley.com/10.1002/tdm_lic... {'domain': [], 'crossmark-restriction': False} [Permafrost Periglac. Process.] 10.1002/ppp.464 journal-article {'date-parts': [[2003, 12, 19]], 'date-time': ... ... [Earth-Surface Processes] NaN NaN {'date-parts': [[2003, 10]]} NaN NaN NaN NaN NaN NaN
4 {'date-parts': [[2020, 4, 15]], 'date-time': '... 2 Wiley 4 [{'URL': 'http://doi.wiley.com/10.1002/tdm_lic... {'domain': [], 'crossmark-restriction': False} [Permafrost Periglac. Process.] 10.1002/ppp.711 journal-article {'date-parts': [[2010, 12, 30]], 'date-time': ... ... [Earth-Surface Processes] NaN NaN {'date-parts': [[2010, 10]]} NaN NaN NaN NaN NaN NaN

5 rows × 42 columns

There are a bunch of columns in our table, and we can’t see all of them by scrolling. Below, we can look at a list of the columns instead.

df_permafrost.columns
Index(['indexed', 'reference-count', 'publisher', 'issue', 'license',
       'content-domain', 'short-container-title', 'DOI', 'type', 'created',
       'page', 'source', 'is-referenced-by-count', 'title', 'prefix', 'volume',
       'author', 'member', 'published-online', 'reference', 'container-title',
       'language', 'link', 'deposited', 'score', 'issued', 'references-count',
       'journal-issue', 'URL', 'relation', 'ISSN', 'issn-type', 'subject',
       'publisher-location', 'isbn-type', 'published-print', 'update-policy',
       'ISBN', 'assertion', 'short-title', 'subtitle', 'archive'],
      dtype='object')

Container-title seems to stand in for Journal Title. Let’s look at what’s in the container title column:

journal_titles = df_permafrost['container-title']
journal_titles
0     [Permafrost and Periglacial Processes]
1                       [Thawing Permafrost]
2                                        NaN
3     [Permafrost and Periglacial Processes]
4     [Permafrost and Periglacial Processes]
5     [Permafrost and Periglacial Processes]
6     [Permafrost and Periglacial Processes]
7     [Permafrost and Periglacial Processes]
8     [Permafrost and Periglacial Processes]
9     [Permafrost and Periglacial Processes]
10    [Permafrost and Periglacial Processes]
11    [Permafrost and Periglacial Processes]
12    [Permafrost and Periglacial Processes]
13    [Permafrost and Periglacial Processes]
14    [Permafrost and Periglacial Processes]
15    [Permafrost and Periglacial Processes]
16    [Permafrost and Periglacial Processes]
17    [Permafrost and Periglacial Processes]
18    [Permafrost and Periglacial Processes]
19    [Permafrost and Periglacial Processes]
Name: container-title, dtype: object

We can do the same for the publisher column.

df_permafrost['publisher']
0                                 Wiley
1     Springer International Publishing
2                                 Wiley
3                                 Wiley
4                                 Wiley
5                                 Wiley
6                                 Wiley
7                                 Wiley
8                                 Wiley
9                                 Wiley
10                                Wiley
11                                Wiley
12                                Wiley
13                                Wiley
14                                Wiley
15                                Wiley
16                                Wiley
17                                Wiley
18                                Wiley
19                                Wiley
Name: publisher, dtype: object

Data Retrieval#

We want to be able to retrieve more data from CrossRef. A single CrossRef query can return up to 1,000 results, and since our query has over 42,000 total results, we would need to make 43 queries. Remember at the beginning, we only had 20 results since we only grabbed the first page. The CrossRef API permits fetching results from multiple pages, so by setting cursor to * and cursor_max to 1000 we can grab 1000 queries at once. Querying all 42,000 results would take a long time, so for the purposes of this demonstration we are only using 1000. If you have more time, you could query more results, but be aware that it will take a long time.

# this cell will take a while to run
cr_permafrost = cr.works(query="permafrost", cursor = "*", cursor_max = 1000, progress_bar = True, sort="score", order="desc")
100%|██████████| 49/49 [00:52<00:00,  1.07s/it]

We can check that we have the 1,000 messages, and indeed we do.

sum([len(k['message']['items']) for k in cr_permafrost])
1000

Remember before, when you created your own search query? Here, we’ll go through a few steps to get more results for your query. First, we’ll check how many total results your query has. Run the cell below to find out.

#query1['message']['total-results']

If there are fewer than 1000 results, then set cursor_max to the number of results. If there are more than 1000 results, set cursor_max to 1000 so that the code won’t take too long to run. Be sure to fill in query with the same search term you used earlier.

#Your example
#query1 = cr.works(query="queryname", cursor = "*", cursor_max = 1000, progress_bar = True, sort="score", order="desc")

In order to get all of the different results from our permafrost query, we need to extract them from cr_permafrost. Below, we create a list where each element is one result. cr_permafrost is a list consisting of pages, where we have 20 results per page. So cr_permafrost has 50 pages of 20 results each, giving us our 1000 results. In order to extract the info and have a list with each element be one results, we need to do some data manipulation.

#Confirm the number of pages
len(cr_permafrost)
50

In the cell below, we have 2 list comprehensions to get the results from our query. The first one creates a length 50 list that contains only the items instead of the entire dictionary, for each of the 50 pages. The second list comprehension extracts all of the items from the nested lists so that we have a single 1000 item list where each element is one result.

permafrost_items = [k['message']['items'] for k in cr_permafrost] # get items for all pages
permafrost_items = [item for sublist in permafrost_items for item in sublist] # restructure list

We’ll do the same for your query results so that you can have some fun plotting later in the notebook. Just uncomment and run the cell below.

#query_items = [k['message']['items'] for k in query1] # get items for all pages
#query_items = [item for sublist in query_items for item in sublist] # restructure list

More on Searches#

You may be curious about the cr.works function that we’ve been using to get our data. This is the function that processes your topical “search”. There are different arguments, and we’ve seen how changing these arguments can help us get more search results than just the first 20.

Also, before we asked you to limit your search term to a single word. This is not a hard restriction - we simply did this for simplicity. You can query terms that are more specific and include more words - try it out below! Keep in mind that the more specific your search query, the fewer results you may see. Feel free to play around with it.

longerquery = cr.works(query = 'labrador retriever')
longerquery['message']['total-results']
8137

Visualization#

Visualization is an important part of data analysis. Rather than looking at dictionaries and dataframes, we can see a visual summary of our data. In this section, we’ll go over different types of visualizations we can make based off of the different data we have. We’ll start by looking at the publishers. But first, we need to do some wrangling to get the data in a form that’s useful for us.

Grouping and Sorting by Journal#

In an earlier section, we took our query results and converted them from a dictionary to a dataframe. Below, we will do this for our list of 1000 permafrost_items, and then we can use the dataframe methods of grouping and sorting to get the counts of articles published by each publisher. We can also group by other columns, such as type or language.

In the cell below, we create a dataframe containing all 1000 of our permafrost query results.

permafrost_df = pd.DataFrame(permafrost_items)
permafrost_df.head(10)
indexed reference-count publisher issue content-domain short-container-title published-print DOI type created ... event institution accepted update-to review edition-number original-title chair approved degree
0 {'date-parts': [[2019, 11, 20]], 'date-time': ... 0 Informa UK Limited 3 {'domain': [], 'crossmark-restriction': False} [Geografiska Annaler. Series A, Physical Geogr... {'date-parts': [[1986]]} 10.2307/521451 journal-article {'date-parts': [[2006, 7, 5]], 'date-time': '2... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
1 {'date-parts': [[2019, 11, 20]], 'date-time': ... 0 Informa UK Limited 3 {'domain': [], 'crossmark-restriction': False} [Geografiska Annaler. Series A, Physical Geogr... {'date-parts': [[1986]]} 10.2307/521452 journal-article {'date-parts': [[2006, 7, 5]], 'date-time': '2... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
2 {'date-parts': [[2019, 12, 1]], 'date-time': '... 0 Informa UK Limited 2 {'domain': [], 'crossmark-restriction': False} [Norsk Geografisk Tidsskrift - Norwegian Journ... {'date-parts': [[2005, 6]]} 10.1080/00291950510038403 journal-article {'date-parts': [[2005, 9, 6]], 'date-time': '2... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
3 {'date-parts': [[2019, 12, 1]], 'date-time': '... 34 Informa UK Limited 2 {'domain': [], 'crossmark-restriction': False} [Norsk Geografisk Tidsskrift - Norwegian Journ... {'date-parts': [[2005, 6]]} 10.1080/00291950510020664 journal-article {'date-parts': [[2005, 9, 6]], 'date-time': '2... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
4 {'date-parts': [[2019, 12, 1]], 'date-time': '... 53 Informa UK Limited 2 {'domain': [], 'crossmark-restriction': False} [Norsk Geografisk Tidsskrift - Norwegian Journ... {'date-parts': [[2005, 6]]} 10.1080/00291950510038377 journal-article {'date-parts': [[2005, 9, 6]], 'date-time': '2... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
5 {'date-parts': [[2019, 12, 1]], 'date-time': '... 22 Informa UK Limited 2 {'domain': [], 'crossmark-restriction': False} [Norsk Geografisk Tidsskrift - Norwegian Journ... {'date-parts': [[2005, 6]]} 10.1080/00291950510020592 journal-article {'date-parts': [[2005, 9, 6]], 'date-time': '2... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
6 {'date-parts': [[2019, 12, 1]], 'date-time': '... 39 Informa UK Limited 2 {'domain': [], 'crossmark-restriction': False} [Norsk Geografisk Tidsskrift - Norwegian Journ... {'date-parts': [[2005, 6]]} 10.1080/00291950510038395 journal-article {'date-parts': [[2005, 9, 6]], 'date-time': '2... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
7 {'date-parts': [[2019, 12, 19]], 'date-time': ... 0 Kluwer Academic Publishers NaN {'domain': [], 'crossmark-restriction': False} NaN NaN 10.1007/1-4020-4513-1_170 book-chapter {'date-parts': [[2006, 2, 13]], 'date-time': '... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
8 {'date-parts': [[2019, 12, 24]], 'date-time': ... 0 PeerJ NaN {'domain': [], 'crossmark-restriction': False} NaN NaN 10.7287/peerj.preprints.27119 posted-content {'date-parts': [[2018, 8, 15]], 'date-time': '... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
9 {'date-parts': [[2020, 1, 1]], 'date-time': '2... 88 Wiley 2 {'domain': [], 'crossmark-restriction': False} [Permafrost Periglac. Process.] {'date-parts': [[1993, 4]]} 10.1002/ppp.3430040205 journal-article {'date-parts': [[2007, 2, 5]], 'date-time': '2... ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN

10 rows × 59 columns

While we are at it, we’ll convert your search query items into a data frame as well. Adapt the code in the cell to create a dataframe out of your query_items list.

# example
#query_df = pd.DataFrame(query_items)
#query_df.head()

Counts#

We can take the value_count to determine the number of times a given journal or work appears in our results. This will help us determine where research on our topic is commonly published.

journal = permafrost_df['container-title'].str[0].value_counts().rename_axis('titles').reset_index(name='counts')
journal
titles counts
0 Permafrost and Periglacial Processes 132
1 Canadian Journal of Earth Sciences 61
2 Canadian Geotechnical Journal 57
3 Cold Regions Science and Technology 26
4 Cold Regions Engineering 2019 24
... ... ...
300 Soil Mechanics and Foundation Engineering 1
301 KSCE Journal of Civil Engineering 1
302 Journal of Quaternary Science 1
303 Ecology. Economy. Informatics. System analysis... 1
304 Fall Meeting of the Society of Petroleum Engin... 1

305 rows × 2 columns

#Try repeating this for your query to see the top 20 titles.
#query_journals = query_df['container-title'].str[0].value_counts().rename_axis('titles').reset_index(name='counts')
#query_journals.head(20)

The journal dataframe above shows us that we have about 300 different titles, and a lot of them published only a few articles. The journal that appears most often published about 130 articles on our topic.

Bar Charts#

Now that we have a sorted dataframe with journal titles and the number of articles they each published on permafrost, we can use this dataframe to plot the journals with the 10 highest counts.

permafrost_journals_top10 = journal.head(10) # get first 10 publishers 

plt.figure(figsize=(20,8)) # set figure size

# create bar plot with publishers and counts
plt.bar(permafrost_journals_top10['titles'], permafrost_journals_top10['counts']) 

# rotate publisher names for readability
plt.xticks(permafrost_journals_top10['titles'], rotation='vertical', fontsize = 20) 

# labeling
plt.title('Journals that publish permafrost Articles', fontsize = 20) # set title
plt.xlabel('Journal Title', fontsize = 20) # set x label
plt.ylabel('Number of articles', fontsize = 20); # set y label
../_images/bb61b373ff4c975e75f09a24a1fdb9195799c694148b541cb13751d0c5ee7f3a.png

Before, we grouped by journal title. Keep in mind that we can group by other tags as well, such as type of article (type) or the language the article was published in (language). In the cell below, we use another method to group by either type or language and plot the resulting bar chart. Remember to sort your dataframe as well.

# types

permafrost_type_counts = permafrost_df.groupby('type').count()['indexed'].reset_index()
permafrost_type_counts = permafrost_type_counts.rename({'indexed':'count'}, axis = 1) # rename counts column

sorted_permafrost_type_counts = permafrost_type_counts.sort_values(by='count', ascending = False)
sorted_permafrost_type_counts
type count
5 journal-article 775
9 posted-content 71
10 proceedings-article 63
0 book-chapter 36
4 dissertation 18
11 report 17
6 journal-issue 10
1 book-part 3
8 peer-review 3
7 other 2
2 component 1
3 dataset 1
# types

plt.figure(figsize=(20,8)) # set figure size

# create bar plot with publishers and counts
plt.bar(sorted_permafrost_type_counts['type'], sorted_permafrost_type_counts['count']) 

# rotate publisher names for readability
plt.xticks(sorted_permafrost_type_counts['type'], rotation='vertical', fontsize = 20) 

# labeling
plt.title('Types of permafrost Published Works', fontsize = 20) # set title
plt.xlabel('Type', fontsize = 20) # set x label
plt.ylabel('Number of articles', fontsize = 20); # set y label
../_images/bdb06a8d8fd2daece85ed983d9fc7569b3b0ab8268b1b3b0e7468e895682ddff.png

If you’d like, you can use the cells below to create bar charts of publisher, language, or type for your own query by grouping and sorting your query_df dataframe! Feel free to reference the cells above for an example with permafrost_df.

# fill in the ...

#counts = permafrost_df.groupby('...').count()['indexed'].reset_index()
#counts = counts.rename({'indexed':'count'}, axis = 1) # rename counts column

#sorted_counts = counts.sort_values(by='count', ascending = False)
#sorted_counts
# fill in the ...

#plt.figure(figsize=(20,8)) # set figure size

# create bar plot 
#plt.bar(sorted_counts['...'], sorted_counts['count']) 

# rotate labels for readability
#plt.xticks(sorted_counts['...'], rotation='vertical', fontsize = 20) 

# labeling
#plt.title('...', fontsize = 20) # set title
#plt.xlabel('...', fontsize = 20) # set x label
#plt.ylabel('...', fontsize = 20); # set y label

Citations#

In scientific literature, we are often also interested in the number of references a journal article has, or the number of times the article was cited. Let’s see which articles have been cited the most - we can do this by sorting our dataframe by the is-referenced-by-count column. Our dataframe has 45 columns, but we’ll just focus on a few. We’ll look at the title, is-referenced-by-count, publisher, and published-print (the date it was published in print).

most_cited = permafrost_df.sort_values('is-referenced-by-count', ascending=False)
most_cited = most_cited[['title', 'is-referenced-by-count', 'container-title', 'published-print', 'DOI']]
most_cited
title is-referenced-by-count container-title published-print DOI
634 [Thermal response of the active layer to clima... 141 [Cold Regions Science and Technology] {'date-parts': [[1991, 5]]} 10.1016/0165-232x(91)90002-x
602 [Microclimatic Influences on Ground Temperatur... 137 [Canadian Journal of Earth Sciences] {'date-parts': [[1975, 8, 1]]} 10.1139/e75-129
625 [Importance of permafrost as a source of water... 131 [Ecological Research] {'date-parts': [[2002, 7]]} 10.1046/j.1440-1703.2002.00506.x
745 [Cyclic Development of Permafrost in the Peatl... 126 [Arctic and Alpine Research] {'date-parts': [[1993, 8]]} 10.2307/1551820
744 [Small-scale polygonal features on Mars: Seaso... 126 [Journal of Geophysical Research: Planets] {'date-parts': [[1997, 11, 25]]} 10.1029/97je02582
... ... ... ... ... ...
804 NaN 0 [Permafrost and Periglacial Processes] {'date-parts': [[2018, 7]]} 10.1002/ppp.v29.3
803 [Permafrost thaw increases methylmercury forma... 0 NaN NaN 10.5194/egusphere-egu2020-18536
802 [Modelling of hydrological processes in snowme... 0 [International Journal of Hydrology Science an... {'date-parts': [[2018]]} 10.1504/ijhst.2018.093598
801 [Towards a benchmark mechanical model for warm... 0 NaN NaN 10.5194/egusphere-egu2020-17616
851 [Radiocarbon dating of permafrost in Bely Isla... 0 [Криосфера Земли] {'date-parts': [[2018]]} 10.21782/kz1560-7496-2018-4(3-14)

1000 rows × 5 columns

Let’s look at the top 10 most cited articles.

most_cited.head(10)
title is-referenced-by-count container-title published-print DOI
634 [Thermal response of the active layer to clima... 141 [Cold Regions Science and Technology] {'date-parts': [[1991, 5]]} 10.1016/0165-232x(91)90002-x
602 [Microclimatic Influences on Ground Temperatur... 137 [Canadian Journal of Earth Sciences] {'date-parts': [[1975, 8, 1]]} 10.1139/e75-129
625 [Importance of permafrost as a source of water... 131 [Ecological Research] {'date-parts': [[2002, 7]]} 10.1046/j.1440-1703.2002.00506.x
745 [Cyclic Development of Permafrost in the Peatl... 126 [Arctic and Alpine Research] {'date-parts': [[1993, 8]]} 10.2307/1551820
744 [Small-scale polygonal features on Mars: Seaso... 126 [Journal of Geophysical Research: Planets] {'date-parts': [[1997, 11, 25]]} 10.1029/97je02582
594 [Thawing of the Active Layer on the Coastal Pl... 126 [Permafrost and Periglacial Processes] {'date-parts': [[1997, 1]]} 10.1002/(sici)1099-1530(199701)8:1<1::aid-ppp2...
376 [Importance of Cryoturbation in Redistributing... 109 [Soil Science Society of America Journal] {'date-parts': [[2007, 7]]} 10.2136/sssaj2006.0414n
276 [Permafrost monitoring and detection of climat... 107 [Permafrost and Periglacial Processes] {'date-parts': [[1996, 10]]} 10.1002/(sici)1099-1530(199610)7:4<301::aid-pp...
9 [Permafrost changes in Europe during the last ... 107 [Permafrost and Periglacial Processes] {'date-parts': [[1993, 4]]} 10.1002/ppp.3430040205
412 [Integrating peatlands and permafrost into a d... 105 [Global Biogeochemical Cycles] {'date-parts': [[2009, 9]]} 10.1029/2008gb003413

What is the most cited article, and when was it published? Do you think the date it was published has an effect on the number of times the article was referenced?

Replace this line with your answer

Visualizing the Number of Citations#

When looking at our most_cited table, we can see that the most number of times an article was referenced was 181, and the least was 0. Using a type of visualization called a histogram, we can look at the distribution of time an article was referenced. We’ll do this in the cell below.

plt.hist(most_cited['is-referenced-by-count'], bins = 30) # generate histogram

# labeling
plt.title('Distribution of Number of Times Cited for Permafrost Articles') # set title
plt.xlabel('Number of Times Cited') # set x label
plt.ylabel('Count'); # set y label
../_images/8d9c575f3b878e319739db572a2267593184222d82c4854b0d8841add661accb.png

We can see that this histogram is very skewed, with the majority of articles being cited fewer than 50 times. We can adjust the bins in order to see a better distribution, by specifying the sizes of the bins.

plt.hist(most_cited['is-referenced-by-count'], bins = [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]) # generate histogram

# labeling
plt.title('Distribution of Number of Times Cited for Permafrost Articles') # set title
plt.xticks([0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100], [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, '100+']) # set x axis tickmarks
plt.xlabel('Number of Times Cited') # set x label
plt.ylabel('Count'); # set y label
../_images/5095bd60bcc9bbd33783988b0c17357bdb5dc097bd5f2bb3c2652f7949ea625c.png

In the cells below, we’ve provided code to look at the number of times each article was cited for your query_df. In the following cell, try applying what you’ve just used to find the most cited article, the date it was published, and create a histogram showing the distribution for all articles.

#your example
#your_most_cited = query_df.sort_values('is-referenced-by-count', ascending=False)
#your_most_cited = your_most_cited[['title', 'is-referenced-by-count', 'container-title', 'published-print', 'DOI']]
#your_most_cited
# fill in the ...

#plt.hist(...['is-referenced-by-count'], bins = ...) # generate histogram

# labeling
#plt.title('...') # set title
#plt.xlabel('...') # set x label
#plt.ylabel('...'); # set y label

Queries Over Time#

For our final visualization, we will look at 2 queries over time. To expand our searches to 2 words, we will look at queries for permafrost melt and arctic methane, and look at the number of articles that were published by year. Since running queries takes a long time, and ideally we want to have more years to compare over time, we pre-ran the queries and saved the results into a csv which we’ll load in the cell below.

The following 8 cells show the code we used to generate the csv files.

cr_permafrost = cr.works(query="permafrost melt", cursor = "*", cursor_max = 5000, progress_bar = True, sort="score", order="desc")
100%|██████████| 249/249 [03:51<00:00,  1.08it/s]
permafrost_items = [k['message']['items'] for k in cr_permafrost] # get items for all pages
permafrost_items = [item for sublist in permafrost_items for item in sublist] # restructure list
permafrost_df = pd.DataFrame(permafrost_items)
permafrost_df.to_csv('permafrost_melt_5000.csv')
cr_arctic = cr.works(query="arctic methane", cursor = "*", cursor_max = 5000, progress_bar = True, sort="score", order="desc")
100%|██████████| 249/249 [03:42<00:00,  1.12it/s]
arctic_items = [k['message']['items'] for k in cr_arctic] # get items for all pages
arctic_items = [item for sublist in arctic_items for item in sublist] # restructure list
arctic_df = pd.DataFrame(arctic_items)
arctic_df.to_csv('arctic_methane_5000.csv')
#cr_query1 = cr.works(query="your first query", cursor = "*", cursor_max = 100, progress_bar = True, sort="score", order="desc")
#query1_items = [k['message']['items'] for k in cr_query1] # get items for all pages
#query1_items = [item for sublist in query1_items for item in sublist] # restructure list
#query1_df = pd.DataFrame(query1_items)
#query1_df.to_csv('query1.csv')
#cr_query2 = cr.works(query="your second query", cursor = "*", cursor_max = 100, progress_bar = True, sort="score", order="desc")
#query2_items = [k['message']['items'] for k in cr_query2] # get items for all pages
#query2_items = [item for sublist in query2_items for item in sublist] # restructure list
#query2_df = pd.DataFrame(query2_items)
#query2_df.to_csv('query2.csv')

Below, we’ll load in our query data and extract the year from the created column. Since we read in our data from a csv, our created column got converted to strings instead of dictionaries. We use the function ast.literal_eval() in order to convert the string back to a dictionary, and then access the year by indexing into date-parts.

arctic_df = pd.read_csv('arctic_methane_5000.csv')
permafrost_df = pd.read_csv('permafrost_melt_5000.csv')
#query1_df = pd.read_csv('query1.csv')
#query2_df = pd.read_csv('query2.csv')
arctic_years = [ast.literal_eval(k)['date-parts'][0][0] for k in arctic_df['created']] # extract year
permafrost_years = [ast.literal_eval(k)['date-parts'][0][0] for k in permafrost_df['created']] # extract year
#query1_years = [ast.literal_eval(k)['date-parts'][0][0] for k in query1_df['created']] # extract year
#query2_years = [ast.literal_eval(k)['date-parts'][0][0] for k in query2_df['created']] # extract year

In the cell below, we create a plot comparing the number of articles published for glacier melt and for permafrost melt per year. For year_counts_glacier and year_counts_permafrost, we use the python package Counter to return the counts of articles for each year. We sort by year so that our plot follows sequentially.

year_counts_arctic = dict(sorted((Counter(arctic_years)).items())) # create dictionary of glacier year counts
year_counts_permafrost = dict(sorted((Counter(permafrost_years)).items())) # create dictionary of permafrost year counts
plt.plot(list(year_counts_arctic.keys()),list(year_counts_arctic.values()), label = 'arctic methane')
plt.plot(list(year_counts_permafrost.keys()),list(year_counts_permafrost.values()), label = 'permafrost melt')
#plt.xticks(np.arange(2002, 2019))
plt.title('Number of articles published by year')
plt.xlabel('Year')
plt.ylabel('Count')
plt.legend();
../_images/ca59d2fc9a2a978c398b08842d95b4e6bdd4610279d936cfca1d7ad566ce9368.png

Our search results show a spike in articles related to methane in the arctic in 2008 and 2011, and a later set of spikes for articles about permafrost melt between 2016-2019. We would have to dig in a bit more to understand the implications of these peaks, but they do give you a place to start when exploring trending topics.

If you are interested, you could repeat the process of getting queries and edit the above code to compare two search terms that you are interested about.

year_counts_query1 = dict(sorted((Counter(query1_years)).items())) # create dictionary of glacier year counts
year_counts_query2 = dict(sorted((Counter(query2_years)).items())) # create dictionary of permafrost year counts
plt.plot(list(year_counts_query1.keys()),list(year_counts_query1.values()), label = 'query1')
plt.plot(list(year_counts_query2.keys()),list(year_counts_query2.values()), label = 'query2')
#plt.xticks(np.arange(2002, 2019))
plt.title('Number of articles published by year')
plt.xlabel('Year')
plt.ylabel('Count')
plt.legend();

Bibliography #


Notebook originally developed by: Keilyn Yuzuki, Anjali Unnithan

This chapter originated as a Data Science Module: http://data.berkeley.edu/education/modules