Skip to main content

A Python library for recovering the seascape around a set of geographical points, based on Xarray.

Project description

XScape

XScape

A Python library for recovering the seascape around a set of geographical points, based on Xarray.

Why XScape?

XScape can help you whenever you want to add environmental information to georeferenced events. The information may come from satellites, numerical models, or any field represented on a latitude/longitude grid.

The library was originally developed as part of the PPR Océan & Climat, a research project funded by the French government.

Installation

Installing XScape is as simple as running:

pip install xscape

You may also install the library directly by cloning the repository. Once you have it on your own machine, go into the XScape directory and run poetry install. The whole process can be done in three commands:

git clone https://github.com/Articoking/XScape.git
cd XScape
poetry install

If you want to contribute to the library, follow the specific installation instructions in the documentation.

Basic usage

To use XScape, you only need two things:

  • A list of points in a pandas DataFrame with lat and lon as columns.
  • An Xarray DataArray containing the "background" variable in a regular latitude/longitude grid.

Let's start by generating some points in the South Atlantic Ocean

import xarray as xr
import xscape as xscp

n_points = 10
points = xscp.generate_points(
    n_points,
    lon_range = (-50, 20),
    lat_range = (-60, 0)
    )

In this example, we'll use XScape functions to get Sea Surface Temperature data from GLORYS. To do that, we need to first define the size of the seascape we want to get around each point, in this case 1°. XScape uses this information to avoid requesting an area much larger than that covered by the points.

seascape_size = 1 # degrees

glorys_var = xscp.get_glorys_var(
    points,
    seascape_size,
    'thetao', # Temperature variable name
    start_datetime = "2000-01-01",
    end_datetime = "2000-12-31",
    )

glorys_var = glorys_var.isel(time=0, depth=0) # See note below

NOTE: XScape can also create seascapes with time and depth dimensions, through the seascape_timerange and get_column parameters in create_xscp_da() respectively. Consult the API documentation for more detail.

Finally, we create our "XScape DataArray" using the create_xscp_da() function:

xscp_da = xscp.create_xscp_da(
    points,
    seascape_size,
    glorys_var
)

This is a regular Xarray DataArray object with a special format that makes working with seascapes quite simple. For example, you can easily select the seascape that corresponds to the first point in your list:

first_point = points.iloc[0]
seascape = xscp_da.xscp.ss_sel(first_point)

For more information on the format of XScape DataArrays refer to the dedicated documentation page.

Related works

If XScape does not fit your needs, consider taking a look at geoenrich.

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

xscape-0.3.0.tar.gz (23.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xscape-0.3.0-py3-none-any.whl (24.2 kB view details)

Uploaded Python 3

File details

Details for the file xscape-0.3.0.tar.gz.

File metadata

  • Download URL: xscape-0.3.0.tar.gz
  • Upload date:
  • Size: 23.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.12.3 Linux/6.11.0-26-generic

File hashes

Hashes for xscape-0.3.0.tar.gz
Algorithm Hash digest
SHA256 ac77094dc2ecc482330fc884fe9fdd995f777a3705318f2452905682a4e90722
MD5 e31ff210c92670a94a1f5f4211290d90
BLAKE2b-256 2cce689ed26b9d49580863ba1dec666f280ee65284b25df198550fbc94436745

See more details on using hashes here.

File details

Details for the file xscape-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: xscape-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 24.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.12.3 Linux/6.11.0-26-generic

File hashes

Hashes for xscape-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 129b1e9fcd9b5f5705af24bad14b413c965c0f9d4d90b4c383d82068dc652012
MD5 b070dd4c8d004ab81116e26ca7bae4e7
BLAKE2b-256 ae9b6f5a8dc62ee947c692cf7da37c55f3125699cb947efcbc2d4568eddc58d7

See more details on using hashes here.

Supported by

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