نتایج جستجو برای: watershed protection

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

2012
Pei-Te Chiueh Wei-Ting Shang Shang-Lien Lo

Watersheds are recognized as the most effective management unit for the protection of water resources. For surface water supplies that use water from upstream watersheds, evaluating threats to water quality and implementing a watershed management plan are crucial for the maintenance of drinking water safe for humans. The aim of this article is to establish a risk assessment model that provides ...

Journal: :Environmental management 2008
Christopher C Obropta Mehran Niazi Josef S Kardos

Environmental decision support systems (EDSSs) are an emerging tool used to integrate the evaluation of highly complex and interrelated physicochemical, biological, hydrological, social, and economic aspects of environmental problems. An EDSS approach is developed to address hot-spot concerns for a water quality trading program intended to implement the total maximum daily load (TMDL) for phosp...

Journal: :Applied and environmental microbiology 2002
Kristen L Jellison Harold F Hemond David B Schauer

Understanding the behavior of Cryptosporidium oocysts in the environment is critical to developing improved watershed management practices for protection of the public from waterborne cryptosporidiosis. Analytical methods of improved specificity and sensitivity are essential to this task. We developed a nested PCR-restriction fragment length polymorphism assay that allows detection of a single ...

Journal: :ISPRS Int. J. Geo-Information 2014
Diana Mitsova-Boneva

This research examines the impact of climate and land use change on watershed hydrology. Seasonal variability in mean streamflow discharge, 100-year flood, and 7Q10 low-flow of the East Fork Little Miami River watershed, Ohio was analyzed using simulated land cover change and climate projections for 2030. Future urban growth in the Greater Cincinnati area, Ohio, by the year 2030 was projected u...

2017
Xuekai Chen Xiaobo Liu Wenqi Peng Fei Dong Zhihua Huang Ruonan Wang

To enhance the quantitative simulation and integrated assessment of non-point source (NPS) pollution in plateau lakes in data-poor regions, a simple and practical NPS assessment method is developed by combining the improved export coefficient model (ECM) and the revised universal soil loss equation (RUSLE). This method is evaluated via application to the Chenghai Lake watershed (Yunnan Province...

Journal: :Environmental science & technology 2007
Kristen L Jellison Daniel L Distel Harold F Hemond David B Schauer

Cryptosporidium parvum and C. hominis are protozoan parasites responsible for cryptosporidiosis, an acute gastrointestinal illness that can be life-threatening for immunocompromised persons. Sources and genotypes of Cryptosporidium oocysts were investigated in two agricultural areas within the Wachusett Reservoir watershed, a drinking water source for Boston, Massachusetts. Two brooks (denoted ...

Journal: :international journal of environmental research 2012
y. x. feng g.p. luo c.f. li l. dai l. lu

this study aims to quantify the impacts of land use changes on ecosystem service value during large scale land development, and to provide key information for both economic development and policy makers for eco-environmental protection. the study area locates in manas river watershed which is a typical land development region in northwest china. landsat mss/tm/etm+ images in 1976, 1989, 1999 a...

Journal: :Environmental Modelling and Software 2014
Ping Yang Daniel P. Ames André Fonseca Danny Anderson Rupesh Shrestha Nancy F. Glenn Yang Cao

This paper examines the effect of raster cell size on hydrographic feature extraction and hydrological modeling using LiDAR derived DEMs. LiDAR datasets for three experimental watersheds were converted to DEMs at various cell sizes. Watershed boundaries and stream networks were delineated from each DEM and were compared to reference data. Hydrological simulations were conducted and the outputs ...

2004
Jaswinder Singh

In continuation of the efforts made by the Illinois State Water Survey to develop a detailed hydrologic and water quality simulation model of the entire Illinois River Basin, a hydrologic simulation model was developed for the Vermilion River Watershed (one of the major tributaries of the Illinois River) to simulate streamflows using available climatic data. The model was developed using Hydrol...

2012
Roy R. Gu Mahesh Sahu Xianggui Zhao

Contour filter strips planted with perennial vegetation can be used to improve surface and ground water quality by reducing pollutant, such as NO3-N, and sediment outflow from cropland to a river or lake. Meanwhile, the filter strips of perennial grass with biofuel potentials also have economic benefits of producing ethanol. In this study, The Soil and Water Assessment Tool (SWAT) model was app...

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

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

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"; } -->