NVlabs / earth2grid

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Earth2 Grid Utilities

img

Utilities for working geographic data defined on various grids.

Features:

  • regridding
  • Permissively licensed python healpix utilities

Grids currently supported:

  • regular lat lon
  • HealPIX

Install

git clone https://github.com/NVlabs/earth2grid.git
pip install --no-build-isolation earth2grid

Example

>>> import earth2grid
>>> import torch
... # level is the resolution
... level = 6
... hpx = earth2grid.healpix.Grid(level=level, pixel_order=earth2grid.healpix.XY())
... src = earth2grid.latlon.equiangular_lat_lon_grid(32, 64)
... z_torch = torch.cos(torch.deg2rad(torch.tensor(src.lat)))
... z_torch = z_torch.broadcast_to(src.shape)
>>> regrid = earth2grid.get_regridder(src, hpx)
>>> z_hpx = regrid(z_torch)
>>> z_hpx.shape
torch.Size([49152])
>>> nside = 2**level
... reshaped = z_hpx.reshape(12, nside, nside)
... lat_r = hpx.lat.reshape(12, nside, nside)
... lon_r = hpx.lon.reshape(12, nside, nside)
>>> reshaped.shape
torch.Size([12, 64, 64])

About

License:Apache License 2.0


Languages

Language:Python 80.4%Language:C++ 18.5%Language:Makefile 1.1%