Skip to main content

Mapchete xarray output driver

Project description

This driver enables mapchete to write multidimensional arrays into a tile directory structure.

https://badge.fury.io/py/mapchete-xarray.svg https://travis-ci.org/ungarj/mapchete_xarray.svg?branch=master https://coveralls.io/repos/github/ungarj/mapchete_xarray/badge.svg?branch=master https://img.shields.io/pypi/pyversions/mapchete_xarray.svg

Usage

Example .mapchete file:

process: process.py
zoom_levels:
    min: 0
    max: 12
input:
output:
    format: xarray
    path: /some/output/path
    dtype: uint16
    bands: 3
    storage: zarr  # or netcdf
pyramid:
    grid: geodetic
    metatiling: 2

Example process file:

from dateutil import parser
import numpy as np
import xarray as xr


def execute(mp, stack_height=10):
    # create 4D arrays with current tile shape and dtype
    arrs = [
        np.ones((3, ) + mp.tile.shape, dtype="uint16")
        for _ in range(1, stack_height)
    ]

    # create timestamps for each array
    timestamps = [parser.parse("2018-04-0%s" % i) for i in range(1, stack_height)]

    # build xarray with time axis
    timeseries = xr.DataArray(
        np.stack(arrs), coords={'time': timestamps}, dims=('time', 'bands', 'x', 'y')
    )

    # return to write
    return timeseries

Installation

# install using pip:
pip install mapchete_xarray
# verify driver is vailable ('xarray' should be listed as output format):
mapchete formats

Current Limitations

  • no reprojection allowed

  • when reading from existing output, process metatiling must be smaller than xarray output metatiling

License

MIT License

Copyright (c) 2019-2020 EOX IT Services

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

mapchete_xarray-2021.11.0.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

mapchete_xarray-2021.11.0-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file mapchete_xarray-2021.11.0.tar.gz.

File metadata

  • Download URL: mapchete_xarray-2021.11.0.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for mapchete_xarray-2021.11.0.tar.gz
Algorithm Hash digest
SHA256 79f421ecad68d70d20f2da45b9e14fc574088da767d4f8c06af49f216da02eaf
MD5 a619f1b6ed9aec03fca8befd6e6af3ce
BLAKE2b-256 4d8f32c5ca54b0d04a8dc9aded78ea2616a259bcd3af7a6750959237de1467b5

See more details on using hashes here.

File details

Details for the file mapchete_xarray-2021.11.0-py3-none-any.whl.

File metadata

  • Download URL: mapchete_xarray-2021.11.0-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for mapchete_xarray-2021.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8ceb17efa273cbdd43eedd8adb36a5c8d8e6046c1283ba2ee680f30b027b58fd
MD5 f2a305bd607ac04ed6307d540b0dc460
BLAKE2b-256 be8b6be6437834e3880892bda343ee71f726969349ffc35a918625a1f7020c84

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