Metadata-Version: 2.1
Name: lasrasterize
Version: 0.2.1
Summary: A command line tool and associated library used to convert lidar LAS files into GeoTIFF raster files.
Author-email: Brandon Martin-Anderso <badhill@gmail.com>
Description-Content-Type: text/markdown
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: laspy==2.5
Requires-Dist: rasterio>=1.2.10,<=1.3.9
Requires-Dist: numpy>=1.24
Requires-Dist: scipy>=1.11
Requires-Dist: pyproj>=3.6.0
Project-URL: homepage, https://github.com/bmander/lasrasterize

# lasrasterize

`lasrasterize` is a command line tool and associated library used to convert lidar LAS files into geotiff raster files.

## Installation

To install `lasrasterize`, clone the repository and run the setup script:

```bash
git clone https://github.com/bmander/lasrasterize.git
cd lasrasterize
pip install .
```

Alternatively, install from the python package index:

```bash
pip install lasrasterize
```

## Usage

Consult the `lasrasterize` help:

```bash
lasrasterize --help
```


## Development

To run the unit tests, use the following command from the base directory:

```bash
pytest .
```

## License

`lasrasterize` is released under the MIT license. See the LICENSE file for details.
