1 / 48

MONITORING

MONITORING. WEATHER. CLIMATE. SEISMIC ACTIVITY. TO. A SUSTAINABLE DEVELOPMENT AND A SAFER WORLD. EUMeTrain LSA SAF Week Ricardo Silva, IM. Session 2 – Messing around with the data. Who am I?. Ricardo Silva. Where do you come from?. How often do you use LSA SAF products?. Regularly.

kolton
Télécharger la présentation

MONITORING

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. MONITORING WEATHER CLIMATE SEISMIC ACTIVITY TO A SUSTAINABLE DEVELOPMENT AND A SAFER WORLD EUMeTrain LSA SAF Week Ricardo Silva, IM Session 2 – Messing around with the data

  2. Who am I? Ricardo Silva

  3. Where do you come from?

  4. How often do you use LSA SAF products? Regularly Occasionally Neverused, but plan to start

  5. Session 2 Summary • Obtaining LSA SAF products • General Product Information • Documentation • File structure • Quick Visualization using HDFView • GIS tools for visualization and analysis • Quantum GIS • GRASS GIS • ILWIS • Tool for georeferencing LSA SAF products • Using programming tools – Python

  6. Obtaining LSA SAF products • Near Real Time Dissemination via EUMETCast • Dissemination on-demand • http:landsaf.meteo.pt • Products are available for registered users • Registration is free of charge, but may take up to 3 working days for approval • Downloads use the FTP protocol • Several download methods according to desired temporal extent and download settings

  7. How do you obtain LSA SAF products? EUMETCast LSA SAF (website, FTP, helpdesk) Other?

  8. Obtaining LSA SAF products • Dissemination options • Ordering methods • Random slot ordering • The user can select individual time slots for several products • Automatic dissemination • Long series ordering • Ordering of long time series of products. • Requires human intervention and may take up to one week • Dissemination methods • LSA SAF FTP server • The order is placed in the LandSAF server for the user to download • User's personal FTP server • LSA SAF's system transfers the order directly to the user's FTP server

  9. Product Documentation • Product User Manual (PUM) • Main documentation source • Physical phenomena • Algorithm basis • Output data specifications • Etc. • Product Output Format (POF) • Details concerning description of metadata, file naming formats, etc. • Validation Report (VR) • Algorithm Theoretical Basis Document (ATBD)

  10. Product file structure • LSA SAF products use the HDF5 format • http://www.hdfgroup.org/ • Hierarchical Data Format (HDF) • Groups – Containers for datasets and other groups • Datasets – Multidimensional arrays of a homogeneous type • Attributes – Metadata on groups and datasets • HDF files: • Are self-describing. Complex data relationships and dependencies • Can contain binary data • Support n-dimensional datasets • Each element in the dataset may itself be a complex object

  11. Product file structure • LSA SAF HDF5 files: • A common set of attributes on the root group • general information • A dataset for the main product (LST, DSLF, etc) • Additional datasets for cell metadata (Quality flags, etc.) • Each dataset may have: • Specific attributes (Scaling factor, missing value, etc.) • Different dimensions (Most datasets are 2D) • Different data types (Most datasets are 16bit signed integers)

  12. Quick visualization of products • HDFView software http://www.hdfgroup.org/hdf-java-html/hdfview/index.html#download_hdfview • Java-based HDF Viewer • Inspection of a HDF5's structure and data • Visualize data in spreadsheet or image mode • Basic statistics, line plotting and histogram generation • Export to image formats

  13. Have you used HDFView before? Yes No HDFWhat?

  14. HDFView • Datasets • Attributes • Table View • Table options • Image view • Image options • Pixel values

  15. HDFView Inspecting file and dataset attributes

  16. HDFView • When visualizing products take note: • Cell values are unscaled • The 'missing value' values have no physical meaning • Product is not georeferenced (line, column coordinates only)

  17. GIS tools for visualization and analysis • Quantum GIS • User friendly interface • Many plugins created by the community • GRASS GIS • Many raster analysis modules • Python scripting • ILWIS • Direct import of LSASAF products through the GEONETCast toolbox • Other tools (ArcGIS, Mapinfo, SAGA, etc.)

  18. Quantum GIS • http://www.qgis.org/ • Open source multi-platform GIS software • User-friendly interface • Reads many input formats • Raster files, Vector files, Web services, etc • On-the-fly reprojection for vector and raster data • Large and friendly community of users and developers

  19. Quantum GIS Integration of different data sources

  20. Quantum GIS Quick inspection of relationships between data

  21. GRASS GIS • Geographic Resources Analysis Support System • http://grass.fbk.eu • Open source multi-platform GIS software • Hundreds of modules for raster and vector processing • Reads many input formats • Can read HDF5 directly (won't be georeferenced) • It is preferable to georeference the HDF5 file first

  22. GRASS GIS Modular and flexible user interface

  23. GRASS GIS • Raster calculator • Allows for computing a combination of logical and algebraic expressions • Example: Calculate the arithmetic mean LST values for a specific day (using hourly sample) • 24 raster files each with the LSA SAF LST product for the hourly timeslots Approach #1: Using only cells where there is enough data for the whole day (In GRASS, any math performed with NULL cells always results in a NULL value for these cells Approach #2: Using all the cells where there is at least one value in the day

  24. GRASS GIS Approach #1

  25. GRASS GIS Approach #2

  26. GRASS GIS • Most commands are available in two interfaces: • Graphical – Good for visualization and exploratory analysis • Command-line – Nice for automating repetitive tasks

  27. Are you used to creating small scripts for automating tasks? Yes Not really I might start using them In the future...

  28. GRASS GIS GRASS 6.4.1 (world4326):~ > python >>> # example importing all the LST geotiffs into GRASS >>> import grass.script as grass >>> from glob import glob >>> import os >>> import datetime as dt >>> >>> for path in glob('/home/geo2/test_data/lsasaf/modificados/georefs/*LST*.tif'): ... fName = os.path.basename(path) ... nameFields=fName.split('_') ... product, area = nameFields[3:5] ... timeslot = dt.datetime.strptime(nameFields[5], '%Y%m%d%H%M') ... newName = '_'.join((product, area, timeslot.strftime('%Y_%m_%d_%H_%M'))) ... grass.run_command('r.in.gdal', flags='oe', overwrite=True, input=path, output=newName) • Python scripting example: • Automatically import and rename 191 LST files for a given day

  29. ILWIS • Integrated Land and Water Information System • http://52north.org/communities/ilwis/ • Open Source GIS software • Available only for MS Windows (as of now) • Imports LSA SAF products, using the GEONETCast Toolbox • Several modules for raster and vector processing

  30. GEONETCast Toolbox • GEONETCast Toolbox • http://52north.org/communities/earth-observation/geonetcast-toolbox-software • Available as a toolbox for ILWIS • Developed by ITC – University of Twente • Enables easy access to and management of GEONETCast data • various satellite and environmental data and/or resulting products • Tailored for users running GEONETCast reception stations

  31. ILWIS/GEONETCast • Installation • Follow the GEONETCast Toolbox's user manual • Read section 1.1 and 1.2 CAREFULLY • Importing LSA SAF products • Beware of file names: • Files obtained through GEONETCast (EUMETCast) • S-LSA_-HDF5_LSASAF_MSG_LST_Euro_201111060000.bz2 • Everything will work OK • Files obtained through LSA SAF's on-demand dissemination • HDF5_LSASAF_MSG_LST_Euro_201111060000.bz2 • GEONETCast Toolbox expects the 'S-LSA_-' prefix and will throw errors • Solutions: • Uncompress → rename → recompress (time consuming and boring) • Modify the GEONETCast's batch import scripts • Contact LSA SAF's helpdesk and they'll send you the modified scripts

  32. ILWIS/GEONETCast Modular user interface, integrating the GEONETCast Toolbox

  33. ILWIS/GEONETCast Use native NGP projection of the LSA SAF products

  34. Have you used these GIS tools before? Yes, some of them No I might start using them In the future...

  35. LSA SAF Product Coordinate System • Normalized Geostationary Projection (NGP) • Projection of the underlying MSG LRIT source data • Important parameters for MSG satellite: • Satellite height above ellipsoid: 35785831 m • Central meridian: 0º • Documented on EUMETSAT's LRIT and HRIT Global Specification • http://www.eumetsat.int/groups/cps/documents/document/pdf_cgms_03.pdf

  36. LSA SAF Product Coordinate System • LSA SAF products hold coordinate system information in the attributes of the root group • But HDF5 files have no standard way of defining coordinate systems • It's hard to automatically import LSA SAF products into a Geographical Information System (GIS) software AND have the data correctly georeferenced

  37. Visualization of LSA SAF products GIS tools are nice for visualization, analysis map making, etc. HDFView is nice for a quick inspection Most GIS tools cannot recognize LSA SAF coordinate information Some GIS tools can open HDF5 directly BUT ... The files will not be projected It won't be possible to overlay different data UNLESS …

  38. LSASAF Georeferencer Tool • A graphical tool for georeferencing LSA SAF products • Still in-development, but already usable • Open development • Source code hosted on a public repository • https://github.com/ricardogsilva/LSASAF-georeferencer • Uses open source tools • Python, GDAL, Proj, Qt4 • Multi-platform

  39. LSASAF Georeferencer Tool • Convert LSASAF HDF5 files to GeoTiff • GeoTiff is a Tiff based interchange format for georeferenced raster imagery • Reproject from the NGP projection to other coordinate systems • Apply scaling factor and missing value information to the output file • Output GeoTiff files are suitable for further processing in GIS software • Process multiple files simultaneously • Also has a CLI interface, useful for scripting

  40. LSASAF Georeferencer Tool • Graphical Window usage example • Select the file(s) to process • Load file information • Choose the dataset(s) to be processed • Choose the output projection • Choose the output directory • Process the files

  41. LSASAF Georeferencer Tool # display usage information ricardo@geo2:~$ ./georef_hdf5.py -h # process all the LST files in ~/input_dir ricardo@geo2:~$ ./georef_hdf5.py -x -o ~/my_output_dir ~/input_dir/*LST* • Command line usage example

  42. Guess who is developing the LSA SAF Georeferencer Tool? Ricardo Silva (me) :) Some other dude... • Contributions, bug reports, etc. are very much welcome!

  43. Programming tools – Python • Python(x, y) • http://code.google.com/p/pythonxy/ • A (free) scientific and engineering development software for • numerical computations, • data analysis • data visualization • Bundles Python and a big set of extra modules in a single package • Includes modules for manipulating HDF5 files

  44. Programming tools – Python • Some useful python modules for working with LSA SAF products: • NumPy • The fundamental package needed for scientific computing with Python • Provides an N-dimensional array object and specialized data types and functions • Scipy • A library built to work with NumPy arrays • Provides efficient numerical routines for interpolation, statistics, linear algebra, etc. • Matplotlib • 2D plotting library which produces publication quality figures • PyTables • Package for managing HDF5 files • Designed to efficiently and easily cope with extremely large amounts of data • Gdal • A translator library for raster geospatial data formats. • Has read/write functionality for many raster formats (HDF4/5, GeoTiff, GRIB, netCDF, etc.) • Allows assigning georeferencing information

  45. Programming tools – Python ricardo@geo2:~$ python >>> import tables >>> import numpy as np >>> import matplotlib.pyplot as plt >>> product = tables.openFile('path_to_HDF5_file') # list attributes of the root group >>> product.root._v_attrs # list attributes of the LST dataset >>> product.root.LST.attrs # import the LST dataset into a 32bit float numpy array >>> lst = np.array(product.root.LST, dtype=np.float32) # convert missing values to nan and apply scaling factor >>> lst[lst == product.root.LST.attrs['MISSING_VALUE']] = np.nan >>> lst = lst / product.root.LST.attrs['SCALING_FACTOR'] # plot the data >>> plt.imshow(lst, interpolation='nearest') >>> plt.colorbar() >>> plt.show() • Example interactive session for manipulating a LST product

  46. Programming tools – Python • The script's output:

  47. END of session 2 Thank you for attending! Enjoy the rest of the LSA SAF week

More Related