Skip to main content

A Google Earth Engine extension for Xarray.

Project description

Xee: Xarray + Google Earth Engine

Xee Logo

An Xarray extension for Google Earth Engine.

How to use

Install with pip (distributions on PyPi will come soon):

pip install git+https://github.com/google/xee.git

Then, authenticate Earth Engine:

earthengine authenticate --quiet

Next, initialize the EE client with the high volume API:

ee.Initialize(opt_url='https://earthengine-highvolume.googleapis.com')

Open any Earth Engine ImageCollection by specifying the Xarray engine as 'ee':

ds = xarray.open_dataset('ee://ECMWF/ERA5_LAND/HOURLY', engine='ee')

Open all bands in a specific projection (not the Xee default):

ds = xarray.open_dataset('ee://ECMWF/ERA5_LAND/HOURLY', engine='ee',
                         crs='EPSG:4326', scale=0.25)

Open an ImageCollection (maybe, with EE-side filtering or processing):

ic = ee.ImageCollection('ECMWF/ERA5_LAND/HOURLY').filterDate('1992-10-05', '1993-03-31')
ds = xarray.open_dataset(ic, engine='ee', crs='EPSG:4326', scale=0.25)

Open an ImageCollection with a specific EE projection or geometry:

ic = ee.ImageCollection('ee://ECMWF/ERA5_LAND/HOURLY').filterDate('1992-10-05', '1993-03-31')
leg1 = ee.Geometry.Rectangle(113.33, -43.63, 153.56, -10.66)
ds = xarray.open_dataset(
    ic,
    engine='ee',
    projection=ic.first().select(0).projection(),
    geometry=leg1
)

Open multiple ImageCollections into one xarray.Dataset, all with the same projection:

ds = xarray.open_mfdataset(['ee://ECMWF/ERA5_LAND/HOURLY', 'ee://NASA/GDDP-CMIP6'],
                           engine='ee', crs='EPSG:4326', scale=0.25)

See examples/ or docs for more uses and integrations.

License

This is not an official Google product.

Copyright 2023 Google LLC

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

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

xee-0.0.0.tar.gz (22.0 kB view details)

Uploaded Source

Built Distribution

xee-0.0.0-py3-none-any.whl (23.7 kB view details)

Uploaded Python 3

File details

Details for the file xee-0.0.0.tar.gz.

File metadata

  • Download URL: xee-0.0.0.tar.gz
  • Upload date:
  • Size: 22.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for xee-0.0.0.tar.gz
Algorithm Hash digest
SHA256 b719e78d8e940b302c68a0c15bc37a0ea64efb6dc1499c0ff63dca5a1cdc920b
MD5 dbd2287045ad8afea6213ba8582e68ec
BLAKE2b-256 3ee290662217782ba8d2c59b1eb4bdbe1274c01df1afeaf24b0b1159e92c95c2

See more details on using hashes here.

File details

Details for the file xee-0.0.0-py3-none-any.whl.

File metadata

  • Download URL: xee-0.0.0-py3-none-any.whl
  • Upload date:
  • Size: 23.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for xee-0.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a2c7934f6b34c9b238a26258b05c79538b3b0e7113a8802036b581ea518c2bed
MD5 d801de7b025fa4f0f086d1dfdcffa265
BLAKE2b-256 cbc4825b14000c05932898a079b83c00f9d51cc702f061c54e45f21e292fce48

See more details on using hashes here.

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