Skip to main content

Python package for analyzing A-DInSAR time series.

Project description

Wasar: Analysis of A-DInSAR time series.

image DOI

This package allows to analyze the ground deformation of a region and to compare it with other climatic variables, such as groundwater levels or rainfall. In addition, the inclusion of wavelet tools allows to analyze the main periodicities of the model variables and estimate cause-effect processes.

Introduction

Many regions worldwide are affected by ground subsidence phenomena. Abusive water withdrawal from aquifers is one the main factors than can lead to this kind of processes. Although ground motion monitoring can be performed with in-situ instruments, one of the most widely used techniques in the last decades is the Advanced Differential Interferometry Synthetic Aperture Radar (A-DInSAR). The A-DInSAR technique consists on the superposition of numerous SAR images of the same region of the Earth, thus obtaining an image of the ground motion occurring between the SAR images acquisitions. Analyzing multiple time series of ground movement in a given region, and comparing them with groundwater level variatons (or other variables), are the manin purposes of the present program.

Install

Released source packages are available on PyPi. You can simply install it as:

pip install wasar

Since geopandas dependencies could cause conflicts with other spatial packages, it's highly recommended to create first a new environment, as well as taking a look at the geopandas installation guidelines.

An optional package must be installed for the use of wavelet analysis. It's rpy2 package, and it can be simply installed via pip:

pip install rpy2


In case you find problems installing geopandas, here we leave the procedure we have used to install geopandas from the Anaconda Powershell Prompt:

  1. Create a new environment (in this example with the name enviname):

conda create --name enviname

  1. Activate the new environment:

conda activate enviname

  1. Install geopandas:

conda install -c conda-forge python=3.9 fiona shapely rasterio pyproj pandas jupyterlab jupyter geopandas

  1. Open a new jupyter notebook from your working directory:

jupyter notebook --notebook-dir=c:\working_directory

Dependencies

  • geopandas
  • pandas
  • matplotlib
  • folium

Contact

We are Miguel González Jiménez and Carolina Guardiola Albert. You can contact us just via GitHub or through our e-mails: miguigonn@gmail.com and c.guardiola@igme.es.

Get started

In the example folder you can find several tutorials that will help you to get started with the program. Also, the functions, classes and modules are fully explained in Spanish, so if you have doubts about their behavior, just use the built-in help, the ? mark or the tab button in Jupyter Notebook.

Example: help(wasar.Dataset.find_element) or wasar.Dataset.find_element? or wasar.Dataset.find_element + . + press tab

Licence

This project is licensed under the terms of the GNU General Public License v3.0

How to cite wasar

If you use the program, please cite it as follows:

Example

>>> import wasar
>>> Model = wasar.example.get_model()

>>> mymap = Model.mapa(LayerControl=False)
>>> Model.get('Asc').mapa(m=mymap)

map

A very useful tool of wasar are wavelet tools, which allow to perform frequency analysis of the time series.

The following example shows the common periodicities between a rainfall station and a piezometer, being the annual frequency the main common one.

>>> from wasar import Wavelet
>>> Doñana = wasar.example.get_model()

>>> piezometer = Doñana.get('Piezo_bbdd').take('104080065')
>>> piezometer = piezometer.pivot(index='Fechas',columns='Nombre', values='Valores')

>>> rainfall = Doñana.get('P').take('Almonte')

>>> Wavelet('M', piezometer, rainfall, dt=2, dj=1/20, lowerPeriod=2, upperPeriod=30)

wavelet

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wasar-0.0.4.tar.gz (901.0 kB view hashes)

Uploaded Source

Built Distribution

wasar-0.0.4-py3-none-any.whl (977.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page