Metadata-Version: 2.1
Name: nllgrid
Version: 1.5.1
Summary: Python class for reading and writing NonLinLoc grid files
Author-email: Claudio Satriano <satriano@ipgp.fr>
License: CeCILL Free Software License Agreement, Version 2.1
Project-URL: Homepage, https://github.com/claudiodsf/nllgrid
Platform: OS
Platform: Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy>=1.0
Requires-Dist: scipy>=0.16
Requires-Dist: pyproj

# NLLGrid

Python class for reading and writing [NonLinLoc] grid files.

(c) 2015-2024 Claudio Satriano, Natalia Poiata, Robert Pickle

[![changelog-badge]][changelog-link]
[![cf-badge]][cf-link]
[![PyPI-badge]][PyPI-link]
[![license-badge]][license-link]
[![docs-badge]][docs-link]

## Installation

### Using Anaconda

If you use [Anaconda], the latest release of nllgrid is available via
[conda-forge][cf-link].

To install, simply run:

    conda install -c conda-forge nllgrid

### Using pip and PyPI

The latest release of nllgrid is available on the
[Python Package Index][PyPI-link].

You can install it easily through `pip`:

    pip install nllgrid

### From nllgrid GitHub releases

Download the latest release from the
[releases page][releases-link],
in `zip` or `tar.gz` format, then:

    pip install nllgrid-X.Y.zip

or

    pip install nllgrid-X.Y.tar.gz

Where, `X.Y` is the version number (e.g., `1.3`).
You don't need to uncompress the release files yourself.

### From nllgrid GitHub repository

If you need a recent feature that is not in the latest release (see the
`unreleased` section in [CHANGELOG][changelog-link]), you want to use the source code from
the [nllgrid GitHub repository][github-repo].

For that, clone the project:

    git clone https://github.com/claudiodsf/nllgrid.git

(avoid using the "Download ZIP" option from the green "Code" button, since
version number is lost), then install the code from within the `nllgrid`
main directory by running:

    pip install .

(use `pip install -e .` to install in developer mode).

## Getting Started

### Reading a NLL grid

A NLL grid is composed of two files (`.hdr` and `.buf`).

To read a NLL grid, do:

```python
>>> from nllgrid import NLLGrid
>>> grd = NLLGrid('somegrid.hdr')
```

or, using the `.buf` filename:

```python
>>> grd = NLLGrid('somegrid.buf')
```

or even without any extension:

```python
>>> grd = NLLGrid('somegrid')
```

A grid description can be obtained by:

```python
>>> print(grd)
```

The grid data array is accessed by `grd.array`.
The grid can be plotted doing:

```python
>>> grd.plot()
```

Use Python introspection (e.g. `dir(grd)`) to see all the available
methods and attributes.


### Creating a NLL grid

Suppose that you have a 3D data array stored into a NumPy array
called `mydata`.

First, create an empty NLL grid object:

```python
>>> from nllgrid import NLLGrid
>>> grd = NLLGrid()
```

then, add the data array and information on grid sampling and grid
origin, e.g.:

```python
>>> grd.array = mydata
>>> grd.dx = 0.5  #km
>>> grd.dy = 0.5  #km
>>> grd.dz = 0.5  #km
>>> grd.x_orig = -10  #km
>>> grd.y_orig = -20. #km
>>> grd.z_orig = -1.  #km
```

Optionally, add a grid type and/or a geographic transformation:

```python
>>> grd.type = 'VELOCITY'
>>> grd.orig_lat = 40.63
>>> grd.orig_lon = 15.80
>>> grd.proj_name = 'LAMBERT'
>>> grd.first_std_paral = 38.
>>> grd.second_std_paral = 42.
>>> grd.proj_ellipsoid = 'WGS-84'
```

Finally, give a basename and write to disk:

```python
>>> grd.basename = 'mygrid'
>>> grd.write_hdr_file()
>>> grd.write_buf_file()
```

This will create the two files `mygrid.hdr` and `mygrid.buf`.

If you want to save your grid in double precision (required for
instance by NLDiffLoc), change `grd.float_type` to `'DOUBLE'` before
saving the grid (default is `'FLOAT'`):

```python
>>> grd.float_type = 'DOUBLE'
```

Note that if you want to use your grid as input for NonLinLoc
`Grid2Time` code, the grid type has to be `SLOW_LEN` and your grid
array has to be transformed into slowness (in s/km) and multiplied
by the grid step (in km).

[changelog-badge]: https://img.shields.io/badge/Changelog-136CB6.svg
[changelog-link]: https://github.com/claudiodsf/nllgrid/blob/main/CHANGELOG.md
[cf-badge]: http://img.shields.io/conda/vn/conda-forge/nllgrid.svg
[cf-link]: https://anaconda.org/conda-forge/nllgrid
[PyPI-badge]: http://img.shields.io/pypi/v/nllgrid.svg
[PyPI-link]: https://pypi.python.org/pypi/nllgrid
[license-badge]: https://img.shields.io/badge/license-CeCILL--2.1-green
[license-link]: http://www.cecill.info/licences.en.html
[docs-badge]: https://readthedocs.org/projects/nllgrid/badge/?version=latest
[docs-link]: https://nllgrid.readthedocs.io/en/latest/?badge=latest

[NonLinLoc]: http://alomax.free.fr/nlloc
[Anaconda]: https://www.anaconda.com/products/individual
[releases-link]: https://github.com/claudiodsf/nllgrid/releases
[github-repo]: https://github.com/claudiodsf/nllgrid
