Earth Engine to xarray interface
Project description
What is wxee?
wxee was built to make processing gridded, mesoscale time series data quick and easy by integrating the data catalog and processing power of Google Earth Engine with the flexibility of xarray, with no complicated setup required. To accomplish this, wxee implements convenient methods for data processing, aggregation, downloading, and ingestion.
wxee can be found in the Earth Engine Developer Resources!
Features
Time series image collections to xarray, NetCDF, or GeoTIFF in one line of code
Climatological anomalies and temporal aggregation, interpolation, smoothing, and gap-filling in Earth Engine
Color composite plots from xarray datasets
Parallel processing for fast downloads
To see some of the capabilities of wxee and try it yourself, check out the interactive notebooks here!
Install
Pip
pip install wxee
Conda
conda install -c conda-forge wxee
From Source
git clone https://github.com/aazuspan/wxee
cd wxee
make install
Quickstart
Setup
Once you have access to Google Earth Engine, just import and initialize ee
and wxee
.
import ee
import wxee
wxee.Initialize()
Download Images
Download and conversion methods are extended to ee.Image
and ee.ImageCollection
using the
wx
accessor. Just import wxee
and use the wx
accessor.
xarray
ee.ImageCollection("IDAHO_EPSCOR/GRIDMET").wx.to_xarray()
NetCDF
ee.ImageCollection("IDAHO_EPSCOR/GRIDMET").wx.to_xarray(path="data/gridmet.nc")
GeoTIFF
ee.ImageCollection("IDAHO_EPSCOR/GRIDMET").wx.to_tif()
Create a Time Series
Additional methods for processing image collections in the time dimension are available through the TimeSeries
subclass.
A TimeSeries
can be created from an existing ee.ImageCollection
…
col = ee.ImageCollection("IDAHO_EPSCOR/GRIDMET")
ts = col.wx.to_time_series()
Or instantiated directly just like you would an ee.ImageCollection
!
ts = wxee.TimeSeries("IDAHO_EPSCOR/GRIDMET")
Aggregate Daily Data
Many weather datasets are in daily or hourly resolution. These can be aggregated to coarser resolutions using the aggregate_time
method of the TimeSeries
class.
ts = wxee.TimeSeries("IDAHO_EPSCOR/GRIDMET")
monthly_max = ts.aggregate_time(frequency="month", reducer=ee.Reducer.max())
Calculate Climatological Means
Long-term climatological means can be calculated using the climatology_mean
method of the TimeSeries
class.
ts = wxee.TimeSeries("IDAHO_EPSCOR/GRIDMET")
mean_clim = ts.climatology_mean(frequency="month")
Contribute
Bugs or feature requests are always appreciated! They can be submitted here.
Code contributions are also welcome! Please open an issue to discuss implementation, then follow the steps below. Developer setup instructions can be found in the docs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wxee-0.4.0.tar.gz
.
File metadata
- Download URL: wxee-0.4.0.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 893d751c2624063a7addf827a5689b6ff307e2b4f947caa5ddde53bac7636939 |
|
MD5 | 22dc0bae1ea16a27e43a1b0de21a20e6 |
|
BLAKE2b-256 | aa793bb221dc31ff19373c4c2cb4ee78b9874489ed0a376a20667710800b1f9a |
File details
Details for the file wxee-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: wxee-0.4.0-py3-none-any.whl
- Upload date:
- Size: 26.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a3008fe22d91d94f9813f955924f7a19eac31f050bbebc1c6d555ca5637a7eb |
|
MD5 | 62eca5d45f3898dae906ac0232214894 |
|
BLAKE2b-256 | 798f097523bd3f319eaa2172b50d4a375ecdfebb626e9baeada3043b0d0e02dd |