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

Until the package is officially published, the only way of installing XScape is 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 currently has no way of obtaining seascapes with time or depth as dimensions, but that will be added in the future. For now, only 2D horizontal maps can be used to create seascapes.

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.1.0.tar.gz (18.8 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.1.0-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for xscape-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2cc83a543786257a960d66e681ec8a44e570149461ce098b7ef061f853dee517
MD5 68d2bcc880a0c18c77e6f5e93b936fa3
BLAKE2b-256 512149b9847dc93fa29589950a06bd9e454ae0b73b86f34305a2373616df41ff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for xscape-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 24f472f918eacce8b0dbe548a08105930f63f7aa4be33b936a776cf148a048ad
MD5 a16a1bfa0627c0426deeb3a8b44fce14
BLAKE2b-256 6826714efa6b617d06645defdef6c19ac9c8da34b8806b0c0877d6e968d12fe1

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