SlideShare a Scribd company logo
1 of 6
Download to read offline
4/14/2016 Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications | Ramesh Dhungel | L…
https://www.linkedin.com/pulse/python­idle­integrated­development­learning­remote­sensing­dhungel?trk=prof­post 1/30
H­1B visa needed? ­ We specialize exclusively in employment based immigration visas. Call us.
Python IDLE (Integrated Development and Learning
Environment) for remote sensing, hydrological and
meteorological applications
Apr 14, 2016 87 views 0 Likes 0 Comments   
This post will discuss about Python IDLE (Integrated Development Environment
or Integrated Development and Learning Environment), especially for the
meteorological and hydrological applications. Image processing environment like
ERDAS Imagine, ENVI had been widely used in remote sensing community as
well as Matlab and R. But, there is a very little discussion about the Python IDLE
integrated with ArcGIS, basically with ArcScrit or ArcPy. It can be difficult to
implement looping and iterative process in ModelBuilder of ArcGIS, ERDAS
Imagine and ENVI, then the role comes of the Python IDLE. ERDAS Image
Model Maker can also be messy if you are developing complex algorithms. Python
IDLE not only can handle these complex processes in elegant way, but it will
provide a dynamic environment for advance algorithm development. I have been
working on the algorithm development of Land surface model using Python IDLE
to compute evapotranspiration (ET), agricultural water management, irrigation
Ramesh Dhungel
Water Resources, Remote Sensing and Land
Surface Modeler (LSM) (Ph.D. Civil Engineering)
Edit post View stats
Python IDLE (Integrated
Development and Learning
Environment) for remote…
sensing, hydrological andRamesh Dhungel
The Pros and Cons of Being
Super Rich
Ben Casnocha
What Happens When The
Internet Gets a Body?
John Battelle
Personification: The Future of
Marketing is Near…And It is
Facebook!?
David Yuan
Microsoft Sues the DOJ: Why
and What You Should Know
Greg Leffler
Trump is wrong about
unemployment, but he's not the
only one
Zachary Karabell
The Voyeur's Motel: the place
Pulse Publish a post
Home Profile My Network Jobs Interests Business Services Try Premium for free
 Advanced 
1
 Search for people, jobs, companies, and more...
4/14/2016 Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications | Ramesh Dhungel | L…
https://www.linkedin.com/pulse/python­idle­integrated­development­learning­remote­sensing­dhungel?trk=prof­post 2/30
scheduling, precision agriculture, geospatial modeling etc., which virtually
includes many boundary layer processes. This post will show some of the
important steps for developing complex algorithms using Python IDLE. These
algorithms are implemented while estimating ET for 3­hour time period.
Figure 1: Estimation of ET using NARR and METRIC model for 3­hour time
period for the entire months ( i.e.,  3 * 8 * 30 ) images of ET 
For two source surface energy balance model, please follow the
cartoon in the following post.
https://www.linkedin.com/pulse/pixel­scale­validation­ground­truth­satellite­
based­surface­dhungel?trk=pulse_spock­articles
Importing necessary modules:
import arcgisscripting
import os
import time
import sys
# Create a geoprocessor object, for example gp or rdh or something
gp = arcgisscripting.create(9.3)
4/14/2016 Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications | Ramesh Dhungel | L…
https://www.linkedin.com/pulse/python­idle­integrated­development­learning­remote­sensing­dhungel?trk=prof­post 3/30
# Check out ArcGIS Spatial Analyst extension license
gp.CheckOutExtension("Spatial")
# Overwrite existing outputs
gp.OverWriteOutput = 1
Here are some of the examples: As usual, these codes are part of codes developed
in this process, so only a portion is shown. 
 a) Reading the image  using Python IDLE:
ComDir = r'I:PapersMeterological_applicationsCommon'
DEM =os.path.join(ComDir, 'DEM_clipped_large.img')
b) Conditional sentences:
Theta_ref=os.path.join(ComDir,'theta_ref_.img')
Theta_ref_eqn = 'con( '+Soil_final+' == 0 , 0.360, con( '+Soil_final+' == 1 , 0.36,
con( '+Soil_final+' == 2 , 0.34, con( '+Soil_final+' == 3 , 0.329,'
Theta_ref_eqn+= 'con( '+Soil_final+' == 4 , 0.2, con( '+Soil_final+' == 5 , 0.2,
con( '+Soil_final+' == 6 , 0.30, con( '+Soil_final+' == 7, 0.360,'
Theta_ref_eqn+= 'con( '+Soil_final+' == 8 , 0.36, 0.36 ) ) ) ) ) ) ) ) )'
gp.SingleOutputMapAlgebra_sa(Theta_ref_eqn,Theta_ref)
c) Writing equations:
workDir =
r'I:PapersMeterological_applicationsCombined_Ess_Ec_interpolation_06112010'
 Water_flag = os.path.join(workDir, 'Water_flag.img')
 Water_flg_eqn= 'con(('+Landuse+' == 11) or ( '+NDVI+' 0), 1, 0)'
4/14/2016 Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications | Ramesh Dhungel | L…
https://www.linkedin.com/pulse/python­idle­integrated­development­learning­remote­sensing­dhungel?trk=prof­post 4/30
  gp.SingleOutputMapAlgebra_sa(Water_flg_eqn, Water_flag)
d) For and while looping (multi looping):
i= Current_satellite_passing_Index + 1
proceed with all the algorithms
H_Flux_new_soil = os.path.join(workDir,'sheat_new_soil_'+ str(i)+'.img') 
G_Flux_new_soil = os.path.join(workDir,'gheat_new_soil_'+ str(i)+'.img')
 while i = Next_satellite_passing_Index + 1 :
 else:
 Figure 2 shows an example the algorithm developed in the process:
e) Monitoring pixels in the simulation process using python shell:
   if DEBUG:
      PrintCellValue(gp,ETsoil_sec_pre,'tResult ­­ ETsoil_sec_pre: ')
      PrintCellValue(gp,ETveg_sec_pre,'tResult ­­ ETveg_sec_pre: ')
      PrintCellValue(gp,soilm_pre,'tResult ­­ soilm_pre: ')
4/14/2016 Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications | Ramesh Dhungel | L…
https://www.linkedin.com/pulse/python­idle­integrated­development­learning­remote­sensing­dhungel?trk=prof­post 5/30
Figure 3 shows the python shell while running the algorithm:
f) Extracting pixel or cell value from directory:
R_Rgl=(gp.GetCellValue( Rgl,'2601776.501 1325307.224  ', '1').getoutput(0))
myRgl = 'Rgl: '+ R_Rgl + 'n'
myfile.write(myRgl)
Write a table for certain cell value for entire simulation period:
 for i in range (i, 1359, 1):
   myOut = ','.join((str(i), R_Date, R_precip, R_irrigation, R_NDVI, R_fc,
R_In_short, R_EThour_com, R_EThour_com_final, R_ETrF_com, R_ETcor,
R_ETveg_hour, R_ETsoil_hour, R_ETcor_veg, R_ETcor_soil,
R_ETcor_com,'n'))
   myfile.write(myOut)
 myfile.close()
g) For real­time plotting options in Python IDLE, please look my
previous post:
4/14/2016 Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications | Ramesh Dhungel | L…
https://www.linkedin.com/pulse/python­idle­integrated­development­learning­remote­sensing­dhungel?trk=prof­post 6/30
Real­time simulation of the iterative calculation of the
satellite based surface energy fluxes
https://www.linkedin.com
White paper An iterative procedure is still used to converge fluxes in evapotranspiration (ET)
calculation in many ET models like METRIC (Allen et al., 2007), SEBAL (Bastiaanssen et al.,
1998) and SEBS (Su, 2002). In this post, a real­time simulation is shown to expedite the satellite
based surface energy balance fluxes in low wind speed condition.
Finally, once the image is processed, you can use ArcGIS or any other image
viewer to analyze the results. One of the drawbacks of Python IDLE might be the
need of ArcGIS license as it is integrated into ArcGIS.
For the further reading, please look these references:
Dhungel R, Allen R.G., Trezza R., Robison C. W., 2014. Comparison of Latent
Heat Flux Using Aerodynamic Methods and Using the Penman–Monteith
Method with Satellite­Based Surface Energy Balance. Remote Sensing.
6(9):8844­8877.
Using a Two Source Energy Balance model to compute evapotranspiration
between satellite overpasses: Simulation of ET using weather and Satellite data
(Under Review). Meteorological Applications (MET­15­0095).
Dhungel, R., 2014. Time integration of evapotranspiration using a two source
surface energy balance model using NARR reanalysis weather data and satellite
based METRIC data. D. Dissertation, University of Idaho.
http://digital.lib.uidaho.edu/cdm/ref/collection/etd/id/829
Please keep on following for the updates of the post!!!!!!!!!!!

More Related Content

Viewers also liked

Crop Et And Implications For Irrigation
Crop Et And Implications For IrrigationCrop Et And Implications For Irrigation
Crop Et And Implications For Irrigationcarterjfranz
 
A sensitivity Analysis of Eddy Covariance Data Processing Methods for Evapotr...
A sensitivity Analysis of Eddy Covariance Data Processing Methods for Evapotr...A sensitivity Analysis of Eddy Covariance Data Processing Methods for Evapotr...
A sensitivity Analysis of Eddy Covariance Data Processing Methods for Evapotr...Troy Bernier
 
5 hydrology quantities-measures_instruments_activities
5   hydrology quantities-measures_instruments_activities5   hydrology quantities-measures_instruments_activities
5 hydrology quantities-measures_instruments_activitiesAboutHydrology Slides
 
TIME INTEGRATION OF EVAPOTRANSPIRATION USING A TWO SOURCE SURFACE ENERGY BALA...
TIME INTEGRATION OF EVAPOTRANSPIRATION USING A TWO SOURCE SURFACE ENERGY BALA...TIME INTEGRATION OF EVAPOTRANSPIRATION USING A TWO SOURCE SURFACE ENERGY BALA...
TIME INTEGRATION OF EVAPOTRANSPIRATION USING A TWO SOURCE SURFACE ENERGY BALA...Ramesh Dhungel
 
Session I: Water Consumption – Evapotranspiration (ET) Case Study Tunisia
Session I: Water Consumption – Evapotranspiration (ET) Case Study TunisiaSession I: Water Consumption – Evapotranspiration (ET) Case Study Tunisia
Session I: Water Consumption – Evapotranspiration (ET) Case Study TunisiaNENAwaterscarcity
 
Using Git Inside Eclipse, Pushing/Cloning from GitHub
Using Git Inside Eclipse, Pushing/Cloning from GitHubUsing Git Inside Eclipse, Pushing/Cloning from GitHub
Using Git Inside Eclipse, Pushing/Cloning from GitHubAboutHydrology Slides
 
Adding Confidence to Seasonal Drought Forecasts using reference evapotranspir...
Adding Confidence to Seasonal Drought Forecasts using reference evapotranspir...Adding Confidence to Seasonal Drought Forecasts using reference evapotranspir...
Adding Confidence to Seasonal Drought Forecasts using reference evapotranspir...DRIscience
 
2013 ASPRS Track, Developing an ArcGIS Toolbox for Estimating EvapoTranspirat...
2013 ASPRS Track, Developing an ArcGIS Toolbox for Estimating EvapoTranspirat...2013 ASPRS Track, Developing an ArcGIS Toolbox for Estimating EvapoTranspirat...
2013 ASPRS Track, Developing an ArcGIS Toolbox for Estimating EvapoTranspirat...GIS in the Rockies
 
Water science l2 cwr final full ed
Water science l2 cwr final full edWater science l2 cwr final full ed
Water science l2 cwr final full edRione Drevale
 
Cu07821 3 precipitation and evapotranspiration
Cu07821 3  precipitation and evapotranspirationCu07821 3  precipitation and evapotranspiration
Cu07821 3 precipitation and evapotranspirationHenk Massink
 

Viewers also liked (20)

Evapotranspiration Bed Wastewater Treatment and Gardening
Evapotranspiration Bed Wastewater Treatment and GardeningEvapotranspiration Bed Wastewater Treatment and Gardening
Evapotranspiration Bed Wastewater Treatment and Gardening
 
Crop Et And Implications For Irrigation
Crop Et And Implications For IrrigationCrop Et And Implications For Irrigation
Crop Et And Implications For Irrigation
 
11 modern-iuh
11   modern-iuh11   modern-iuh
11 modern-iuh
 
A sensitivity Analysis of Eddy Covariance Data Processing Methods for Evapotr...
A sensitivity Analysis of Eddy Covariance Data Processing Methods for Evapotr...A sensitivity Analysis of Eddy Covariance Data Processing Methods for Evapotr...
A sensitivity Analysis of Eddy Covariance Data Processing Methods for Evapotr...
 
5 hydrology quantities-measures_instruments_activities
5   hydrology quantities-measures_instruments_activities5   hydrology quantities-measures_instruments_activities
5 hydrology quantities-measures_instruments_activities
 
TIME INTEGRATION OF EVAPOTRANSPIRATION USING A TWO SOURCE SURFACE ENERGY BALA...
TIME INTEGRATION OF EVAPOTRANSPIRATION USING A TWO SOURCE SURFACE ENERGY BALA...TIME INTEGRATION OF EVAPOTRANSPIRATION USING A TWO SOURCE SURFACE ENERGY BALA...
TIME INTEGRATION OF EVAPOTRANSPIRATION USING A TWO SOURCE SURFACE ENERGY BALA...
 
14 snow hydrology-part1
14 snow hydrology-part114 snow hydrology-part1
14 snow hydrology-part1
 
Session I: Water Consumption – Evapotranspiration (ET) Case Study Tunisia
Session I: Water Consumption – Evapotranspiration (ET) Case Study TunisiaSession I: Water Consumption – Evapotranspiration (ET) Case Study Tunisia
Session I: Water Consumption – Evapotranspiration (ET) Case Study Tunisia
 
10 water in soil-rev 1
10   water in soil-rev 110   water in soil-rev 1
10 water in soil-rev 1
 
Introduction tohydrology c
Introduction tohydrology cIntroduction tohydrology c
Introduction tohydrology c
 
Introduction tohydrology b
Introduction tohydrology bIntroduction tohydrology b
Introduction tohydrology b
 
Using Git Inside Eclipse, Pushing/Cloning from GitHub
Using Git Inside Eclipse, Pushing/Cloning from GitHubUsing Git Inside Eclipse, Pushing/Cloning from GitHub
Using Git Inside Eclipse, Pushing/Cloning from GitHub
 
From land use to land cover: evapotraspiration assessment in a metropolitan r...
From land use to land cover: evapotraspiration assessment in a metropolitan r...From land use to land cover: evapotraspiration assessment in a metropolitan r...
From land use to land cover: evapotraspiration assessment in a metropolitan r...
 
4 introduction to uDig
4   introduction to uDig4   introduction to uDig
4 introduction to uDig
 
Adding Confidence to Seasonal Drought Forecasts using reference evapotranspir...
Adding Confidence to Seasonal Drought Forecasts using reference evapotranspir...Adding Confidence to Seasonal Drought Forecasts using reference evapotranspir...
Adding Confidence to Seasonal Drought Forecasts using reference evapotranspir...
 
3 introduction gis
3   introduction gis3   introduction gis
3 introduction gis
 
2013 ASPRS Track, Developing an ArcGIS Toolbox for Estimating EvapoTranspirat...
2013 ASPRS Track, Developing an ArcGIS Toolbox for Estimating EvapoTranspirat...2013 ASPRS Track, Developing an ArcGIS Toolbox for Estimating EvapoTranspirat...
2013 ASPRS Track, Developing an ArcGIS Toolbox for Estimating EvapoTranspirat...
 
Water science l2 cwr final full ed
Water science l2 cwr final full edWater science l2 cwr final full ed
Water science l2 cwr final full ed
 
2 hydro-geomorphology
2  hydro-geomorphology2  hydro-geomorphology
2 hydro-geomorphology
 
Cu07821 3 precipitation and evapotranspiration
Cu07821 3  precipitation and evapotranspirationCu07821 3  precipitation and evapotranspiration
Cu07821 3 precipitation and evapotranspiration
 

Similar to Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications

Running Emerging AI Applications on Big Data Platforms with Ray On Apache Spark
Running Emerging AI Applications on Big Data Platforms with Ray On Apache SparkRunning Emerging AI Applications on Big Data Platforms with Ray On Apache Spark
Running Emerging AI Applications on Big Data Platforms with Ray On Apache SparkDatabricks
 
APACHE SPARK PER IL MACHINE LEARNING: INTRODUZIONE ED UN CASO DI STUDIO_ Meet...
APACHE SPARK PER IL MACHINE LEARNING: INTRODUZIONE ED UN CASO DI STUDIO_ Meet...APACHE SPARK PER IL MACHINE LEARNING: INTRODUZIONE ED UN CASO DI STUDIO_ Meet...
APACHE SPARK PER IL MACHINE LEARNING: INTRODUZIONE ED UN CASO DI STUDIO_ Meet...Deep Learning Italia
 
Code Europe Spring 2018 - Mind the Gap
Code Europe Spring 2018 -  Mind the GapCode Europe Spring 2018 -  Mind the Gap
Code Europe Spring 2018 - Mind the GapRichard Abbuhl
 
Distributed Deep Learning At Scale On Apache Spark With BigDL
Distributed Deep Learning At Scale On Apache Spark With BigDLDistributed Deep Learning At Scale On Apache Spark With BigDL
Distributed Deep Learning At Scale On Apache Spark With BigDLYulia Tell
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Python vs. r for data science
Python vs. r for data sciencePython vs. r for data science
Python vs. r for data scienceHugo Shi
 
What Is The Future of Data Science With Python?
What Is The Future of Data Science With Python?What Is The Future of Data Science With Python?
What Is The Future of Data Science With Python?SofiaCarter4
 
IRJET- IOT Dune Buggy –Control it from Anywhere
IRJET- IOT Dune Buggy –Control it from AnywhereIRJET- IOT Dune Buggy –Control it from Anywhere
IRJET- IOT Dune Buggy –Control it from AnywhereIRJET Journal
 
IRJET- IOT Dune Buggy –Control it from Anywhere
IRJET-  	  IOT Dune Buggy –Control it from AnywhereIRJET-  	  IOT Dune Buggy –Control it from Anywhere
IRJET- IOT Dune Buggy –Control it from AnywhereIRJET Journal
 
Unleashing the Power of Generative AI.pdf
Unleashing the Power of Generative AI.pdfUnleashing the Power of Generative AI.pdf
Unleashing the Power of Generative AI.pdfeoinhalpin99
 
Dashboards for Business Intelligence
Dashboards for Business IntelligenceDashboards for Business Intelligence
Dashboards for Business IntelligencePetteriTeikariPhD
 
Python and its applications
Python and its applicationsPython and its applications
Python and its applicationsmohakmishra97
 
Unleashing the Power of Generative AI.pdf
Unleashing the Power of Generative AI.pdfUnleashing the Power of Generative AI.pdf
Unleashing the Power of Generative AI.pdfTomHalpin9
 
Mohamed rashad resume september 2020
Mohamed rashad resume september 2020Mohamed rashad resume september 2020
Mohamed rashad resume september 2020Mohamed Rashad
 

Similar to Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications (20)

Resume-Oct2019
Resume-Oct2019Resume-Oct2019
Resume-Oct2019
 
Running Emerging AI Applications on Big Data Platforms with Ray On Apache Spark
Running Emerging AI Applications on Big Data Platforms with Ray On Apache SparkRunning Emerging AI Applications on Big Data Platforms with Ray On Apache Spark
Running Emerging AI Applications on Big Data Platforms with Ray On Apache Spark
 
APACHE SPARK PER IL MACHINE LEARNING: INTRODUZIONE ED UN CASO DI STUDIO_ Meet...
APACHE SPARK PER IL MACHINE LEARNING: INTRODUZIONE ED UN CASO DI STUDIO_ Meet...APACHE SPARK PER IL MACHINE LEARNING: INTRODUZIONE ED UN CASO DI STUDIO_ Meet...
APACHE SPARK PER IL MACHINE LEARNING: INTRODUZIONE ED UN CASO DI STUDIO_ Meet...
 
Code Europe Spring 2018 - Mind the Gap
Code Europe Spring 2018 -  Mind the GapCode Europe Spring 2018 -  Mind the Gap
Code Europe Spring 2018 - Mind the Gap
 
Distributed Deep Learning At Scale On Apache Spark With BigDL
Distributed Deep Learning At Scale On Apache Spark With BigDLDistributed Deep Learning At Scale On Apache Spark With BigDL
Distributed Deep Learning At Scale On Apache Spark With BigDL
 
Mohamed-Rashad-Resume
Mohamed-Rashad-ResumeMohamed-Rashad-Resume
Mohamed-Rashad-Resume
 
Mohamed-Rashad-Resume
Mohamed-Rashad-ResumeMohamed-Rashad-Resume
Mohamed-Rashad-Resume
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
ING - Mind the Gap
ING - Mind the GapING - Mind the Gap
ING - Mind the Gap
 
Python vs. r for data science
Python vs. r for data sciencePython vs. r for data science
Python vs. r for data science
 
What Is The Future of Data Science With Python?
What Is The Future of Data Science With Python?What Is The Future of Data Science With Python?
What Is The Future of Data Science With Python?
 
Resume-Sept2019
Resume-Sept2019Resume-Sept2019
Resume-Sept2019
 
IRJET- IOT Dune Buggy –Control it from Anywhere
IRJET- IOT Dune Buggy –Control it from AnywhereIRJET- IOT Dune Buggy –Control it from Anywhere
IRJET- IOT Dune Buggy –Control it from Anywhere
 
IRJET- IOT Dune Buggy –Control it from Anywhere
IRJET-  	  IOT Dune Buggy –Control it from AnywhereIRJET-  	  IOT Dune Buggy –Control it from Anywhere
IRJET- IOT Dune Buggy –Control it from Anywhere
 
Unleashing the Power of Generative AI.pdf
Unleashing the Power of Generative AI.pdfUnleashing the Power of Generative AI.pdf
Unleashing the Power of Generative AI.pdf
 
Resume-Nov2019
Resume-Nov2019Resume-Nov2019
Resume-Nov2019
 
Dashboards for Business Intelligence
Dashboards for Business IntelligenceDashboards for Business Intelligence
Dashboards for Business Intelligence
 
Python and its applications
Python and its applicationsPython and its applications
Python and its applications
 
Unleashing the Power of Generative AI.pdf
Unleashing the Power of Generative AI.pdfUnleashing the Power of Generative AI.pdf
Unleashing the Power of Generative AI.pdf
 
Mohamed rashad resume september 2020
Mohamed rashad resume september 2020Mohamed rashad resume september 2020
Mohamed rashad resume september 2020
 

More from Ramesh Dhungel

Water Balance to Recharge Calculation: Implications for Watershed Management ...
Water Balance to Recharge Calculation: Implications for Watershed Management ...Water Balance to Recharge Calculation: Implications for Watershed Management ...
Water Balance to Recharge Calculation: Implications for Watershed Management ...Ramesh Dhungel
 
Pixel scale validation and ground truth of satellite-based surface energy flu...
Pixel scale validation and ground truth of satellite-based surface energy flu...Pixel scale validation and ground truth of satellite-based surface energy flu...
Pixel scale validation and ground truth of satellite-based surface energy flu...Ramesh Dhungel
 
Real-time simulation of the iterative calculation of the satellite based surf...
Real-time simulation of the iterative calculation of the satellite based surf...Real-time simulation of the iterative calculation of the satellite based surf...
Real-time simulation of the iterative calculation of the satellite based surf...Ramesh Dhungel
 
Assessment of Ecosystem Services in a Semi-arid Agriculture-dominant Area: Fr...
Assessment of Ecosystem Services in a Semi-arid Agriculture-dominant Area: Fr...Assessment of Ecosystem Services in a Semi-arid Agriculture-dominant Area: Fr...
Assessment of Ecosystem Services in a Semi-arid Agriculture-dominant Area: Fr...Ramesh Dhungel
 
Water:Remembered or Forgotten
Water:Remembered or ForgottenWater:Remembered or Forgotten
Water:Remembered or ForgottenRamesh Dhungel
 
Price Elasticity of Water Demand in a Small College Town: An Inclusion of Sys...
Price Elasticity of Water Demand in a Small College Town: An Inclusion of Sys...Price Elasticity of Water Demand in a Small College Town: An Inclusion of Sys...
Price Elasticity of Water Demand in a Small College Town: An Inclusion of Sys...Ramesh Dhungel
 
Comparison of Latent Heat Flux Using Aerodynamic Methods and Using the Penman...
Comparison of Latent Heat Flux Using Aerodynamic Methods and Using the Penman...Comparison of Latent Heat Flux Using Aerodynamic Methods and Using the Penman...
Comparison of Latent Heat Flux Using Aerodynamic Methods and Using the Penman...Ramesh Dhungel
 
WATER RESOURCE SUSTAINABILITY OF THE PALOUSE REGION: A SYSTEMS APPROACH
WATER RESOURCE SUSTAINABILITY OF THE PALOUSE REGION: A SYSTEMS APPROACHWATER RESOURCE SUSTAINABILITY OF THE PALOUSE REGION: A SYSTEMS APPROACH
WATER RESOURCE SUSTAINABILITY OF THE PALOUSE REGION: A SYSTEMS APPROACHRamesh Dhungel
 
Water Resource Sustainability of the Palouse Region: A Systems Approach
Water Resource Sustainability of the Palouse Region: A Systems ApproachWater Resource Sustainability of the Palouse Region: A Systems Approach
Water Resource Sustainability of the Palouse Region: A Systems ApproachRamesh Dhungel
 

More from Ramesh Dhungel (9)

Water Balance to Recharge Calculation: Implications for Watershed Management ...
Water Balance to Recharge Calculation: Implications for Watershed Management ...Water Balance to Recharge Calculation: Implications for Watershed Management ...
Water Balance to Recharge Calculation: Implications for Watershed Management ...
 
Pixel scale validation and ground truth of satellite-based surface energy flu...
Pixel scale validation and ground truth of satellite-based surface energy flu...Pixel scale validation and ground truth of satellite-based surface energy flu...
Pixel scale validation and ground truth of satellite-based surface energy flu...
 
Real-time simulation of the iterative calculation of the satellite based surf...
Real-time simulation of the iterative calculation of the satellite based surf...Real-time simulation of the iterative calculation of the satellite based surf...
Real-time simulation of the iterative calculation of the satellite based surf...
 
Assessment of Ecosystem Services in a Semi-arid Agriculture-dominant Area: Fr...
Assessment of Ecosystem Services in a Semi-arid Agriculture-dominant Area: Fr...Assessment of Ecosystem Services in a Semi-arid Agriculture-dominant Area: Fr...
Assessment of Ecosystem Services in a Semi-arid Agriculture-dominant Area: Fr...
 
Water:Remembered or Forgotten
Water:Remembered or ForgottenWater:Remembered or Forgotten
Water:Remembered or Forgotten
 
Price Elasticity of Water Demand in a Small College Town: An Inclusion of Sys...
Price Elasticity of Water Demand in a Small College Town: An Inclusion of Sys...Price Elasticity of Water Demand in a Small College Town: An Inclusion of Sys...
Price Elasticity of Water Demand in a Small College Town: An Inclusion of Sys...
 
Comparison of Latent Heat Flux Using Aerodynamic Methods and Using the Penman...
Comparison of Latent Heat Flux Using Aerodynamic Methods and Using the Penman...Comparison of Latent Heat Flux Using Aerodynamic Methods and Using the Penman...
Comparison of Latent Heat Flux Using Aerodynamic Methods and Using the Penman...
 
WATER RESOURCE SUSTAINABILITY OF THE PALOUSE REGION: A SYSTEMS APPROACH
WATER RESOURCE SUSTAINABILITY OF THE PALOUSE REGION: A SYSTEMS APPROACHWATER RESOURCE SUSTAINABILITY OF THE PALOUSE REGION: A SYSTEMS APPROACH
WATER RESOURCE SUSTAINABILITY OF THE PALOUSE REGION: A SYSTEMS APPROACH
 
Water Resource Sustainability of the Palouse Region: A Systems Approach
Water Resource Sustainability of the Palouse Region: A Systems ApproachWater Resource Sustainability of the Palouse Region: A Systems Approach
Water Resource Sustainability of the Palouse Region: A Systems Approach
 

Recently uploaded

High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 

Recently uploaded (20)

High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 

Python IDLE (Integrated Development and Learning Environment) for remote sensing, hydrological and meteorological applications