نتایج جستجو برای: median of northern atlantic

تعداد نتایج: 21183427  

Journal: :Proceedings of the National Academy of Sciences of the United States of America 2015
Miguel Bartolomé Ana Moreno Carlos Sancho Heather M Stoll Isabel Cacho Christoph Spötl Ánchel Belmonte R Lawrence Edwards Hai Cheng John C Hellstrom

Greenland Stadial 1 (GS-1) was the last of a long series of severe cooling episodes in the Northern Hemisphere during the last glacial period. Numerous North Atlantic and European records reveal the intense environmental impact of that stadial, whose origin is attributed to an intense weakening of the Atlantic Meridional Overturning Circulation in response to freshening of the North Atlantic. R...

2016
Michael J. W. Stokesbury Laura M. Logan-Chesney Montana F. McLean Colin F. Buhariwalla Anna M. Redden Jeffrey W. Beardsall Jeremy E. Broome Michael J. Dadswell

In the Bay of Fundy, Atlantic sturgeon from endangered and threatened populations in the USA and Canada migrate through Minas Passage to enter and leave Minas Basin. A total of 132 sub-adult and adult Atlantic sturgeon were tagged in Minas Basin during the summers of 2010-2014 using pressure measuring, uniquely coded, acoustic transmitters with a four or eight year life span. The aim of this st...

2016
A. J. Dickson M. J. Leng M. A. Maslin

A detailed record of benthic foraminifera carbon isotopes from the intermediate-depth South East Atlantic margin shows little glacial-interglacial variability between MIS-12 to MIS-10, suggesting that Northern Atlantic deepwaters consistently penetrated to at least 30 S. Millennialscale increases in either the mass or flux of northern-sourced deepwaters over the core site occurred alongside red...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 2011
Broxton W Bird Mark B Abbott Mathias Vuille Donald T Rodbell Nathan D Stansell Michael F Rosenmeier

Decadal and centennial mean state changes in South American summer monsoon (SASM) precipitation during the last 2,300 years are detailed using an annually resolved authigenic calcite record of precipitation δ(18)O from a varved lake in the Central Peruvian Andes. This unique sediment record shows that δ(18)O peaked during the Medieval Climate Anomaly (MCA) from A.D. 900 to 1100, providing evide...

1983
G. S. Jenkins

Introduction Conclusions References Tables Figures Back Close Abstract Introduction Conclusions References Tables Figures Back Close Abstract During the Northern hemisphere winter season, biomass burning is widespread in West Africa, yet the total tropospheric column ozone values (<30 DU) over much of the Tropical Atlantic Ocean (15 • N–5 • S) are relatively low. At the same time, the tro-posph...

2014
Raquel Nieto Rodrigo Castillo Anita Drumond

*Correspondence: Raquel Nieto, Environmental Physics Laboratory, Departamento de Física Aplicada, Facultade de Ciencias, Universidade de Vigo, Edif. Física, Campus As Lagoas S/N, 32004 Ourense, Spain e-mail: rnieto@uvigo.es Leaving aside the contribution made by recycling, it is the main oceanic moisture sources that are responsible for most of the precipitation that falls on the continents. Th...

Journal: :Science 2002
Nicolas Gruber Charles D Keeling Nicholas R Bates

The North Atlantic is believed to represent the largest ocean sink for atmospheric carbon dioxide in the Northern Hemisphere, yet little is known about its temporal variability. We report an 18-year time series of upper-ocean inorganic carbon observations from the northwestern subtropical North Atlantic near Bermuda that indicates substantial variability in this sink. We deduce that the carbon ...

2016
Jacob N. W. Howe Alexander M. Piotrowski Taryn L. Noble Stefan Mulitza Cristiano M. Chiessi Germain Bayon

Changes in deep ocean ventilation are commonly invoked as the primary cause of lower glacial atmospheric CO2. The water mass structure of the glacial deep Atlantic Ocean and the mechanism by which it may have sequestered carbon remain elusive. Here we present neodymium isotope measurements from cores throughout the Atlantic that reveal glacial-interglacial changes in water mass distributions. T...

2004
Jung-Hyun Kim Stephan J. Lorenz Gerrit Lohmann Seung-Il Nam Stefan Schouten Carsten Rühlemann Ralph R. Schneider

Holocene climate variability is investigated in the North Pacific and North Atlantic realms, using alkenone-derived sea-surface temperature (SST) records as well as a millennial scale simulation with a coupled atmosphere-ocean general circulation model (AOGCM). The alkenone SST data indicate a temperature increase over almost the entire North Pacific from 7 cal kyr BP to the present. A dipole p...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->