Metadata-Version: 2.1
Name: easepy
Version: 1.1.2
Summary: Python package for working with EASE grids.
License: MIT
Author: Karl Nordstrom
Author-email: karl.am.nordstrom@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: docs
Requires-Dist: numpy (>=1.22.2,<2.0.0)
Requires-Dist: pyproj (>=3.3.0,<4.0.0)
Description-Content-Type: text/markdown

# easepy

![test-main](https://github.com/karl-nordstrom/easepy/actions/workflows/python-test-main.yml/badge.svg)
![coverage-main](https://img.shields.io/codecov/c/github/karl-nordstrom/easepy)
![license](https://img.shields.io/github/license/karl-nordstrom/easepy)

A python package for working with EASE grids in geodetic coordinates.
The documentation is available at https://easepy.readthedocs.io/en/latest/.
The code is available at https://github.com/karl-nordstrom/easepy.

Installation
------------

    pip install easepy

Example usage
-------------

    import easepy
    ease = easepy.EaseGrid(resolution_m=25000, projection="Global")
    # Fetch grid cell centroids
    grid_lats, grid_lons = ease.geodetic_grid
    # Find corresponding cell indices for particular location(s)
    ease_indices, _ = ease.geodetic2ease(lat=46.7, lon=132.1)

Authors:

- Karl Nordstrom (<karl.am.nordstrom@gmail.com>)
- Giorgio Savastano (<giorgiosavastano@gmail.com>)

Please use github issues to make bug reports and request new functionality. Contributions are always welcome.

