Download presentation
Presentation is loading. Please wait.
Published byRaquel Bowlsby Modified over 9 years ago
1
Geoprocessing with GDAL and Numpy in Python Delong Zhao 11-03-2011
2
Geoprocessing with GDAL and Numpy in Python GDAL - Geospatial Data Abstraction Library Numpy - the N-dimensional array package for scientific computing with Python. Both of them are open source software Read raster dataset using GDAL Do some calculation using Numpy Output to geospatial dataset using GDAL
5
GDAL Supports about 100 raster formats – ArcInfo grids, ArcSDE raster, Imagine, Idrisi, – ENVI, GRASS, GeoTIFF – HDF4, HDF5 – USGS DOQ, USGS DEM – ECW, MrSID – TIFF, JPEG, JPEG2000, PNG, GIF, BMP – See http://www.gdal.org/formats_list.html
6
Numpy the fundamental package needed for scientific computing with Python. a powerful N-dimensional array object sophisticated (broadcasting) functions tools for integrating C/C++ and Fortran code useful linear algebra, Fourier transform, and random number capabilities. http://numpy.scipy.org/
7
Installation 1. Enthought python scientific computing package, includes numpy – http://www.enthought.com/ http://www.enthought.com/ 2. GDAL - Geospatial Data Abstraction Library – http://www.lfd.uci.edu/~gohlke/pythonlibs/ http://www.lfd.uci.edu/~gohlke/pythonlibs/ Or all of these has been installed on EOMF and Cybercommons servers
8
Tutorial http://itmetr.net/itmetr.cgi/PyIntro http://www.gis.usu.edu/~chrisg/python/2009 / http://www.gis.usu.edu/~chrisg/python/2009 / http://www.scipy.org/NumPy_for_Matlab_Us ers http://www.scipy.org/NumPy_for_Matlab_Us ers https://www.cfa.harvard.edu/~jbattat/comput er/python/science/idl-numpy.html https://www.cfa.harvard.edu/~jbattat/comput er/python/science/idl-numpy.html
9
Sample 1 Read two tif files (red band and nir band) Calculate Output NDVI in same projection and georeference as the input file. Numpy example
10
Algorithm development for global cropping intensity from 2000-2011 1-crop per year 2-crop per year 3-crop per year
11
(b) 6/11/99 rice field preparation (c) 7/3/99 2-weeks after rice transplanting (d) 9/6/99 rice plant heading Dynamics of winter wheat and paddy rice fields in Nanjing, Jiangsu, China winter wheat paddy rice
12
MODIS 8-day composites of surface reflectance product (MOD09A1) NDSINDVI, EVI, LSWI Snow mask Cloud mask Permanent water mask Evergreen vegetation mask Cropping intensity ( # of crops per year) Crop calendar (planting & harvesting dates) Inundation and paddy rice Temporal profile analysis of individual pixels
13
Cropping Intensity map in 2004 Global Mapping of Croplands
15
Python multiprocessing http://docs.python.org/library/multiprocessin g.html http://docs.python.org/library/multiprocessin g.html import multiprocessing pool = multiprocessing.Pool(processes=multiprocessing.cpu_count()) pool.map(doprocess,findfiles(root_dir))
16
Benchmark I did some benchmark. By using all 8 cpu and 16G memory on one eomf server can finish 1 MODIS tile NDVI, EVI, CLOUD,SNOW, LANDWATER, FLOOD, Drought products in 15 minutes. This means we can finish global 296 tiles 2000- 2011 MODIS data in 786 hours (32 days) with one server. And we have 6 computation servers, we can improve it to 6 days if all the servers can do the job.
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.