diff --git a/LICENSE b/LICENSE index 1999bc7..54f763e 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2019 Geoscience Australia + Copyright 2018-2020 Geoscience Australia Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 1332bf5..815c409 100644 --- a/README.md +++ b/README.md @@ -4,22 +4,25 @@ This is a package of tools for manipulating geospatial datasets using Python and tested in Python 3.6.4. +### Tutorials + +See [here](https://github.com/GeoscienceAustralia/GeodePy/tree/master/docs/tutorials) for worked examples of common GeodePy functions and routines. + ### Dependencies -This package requires the following non-standard Python modules installed: +This package requires the following PyPI Packages installed: ``` NumPy +SciPy ``` +Additionally, the geodepy.height module requires the GDAL library (tested using GDAL 3.0.4). For more information, see [here](https://gdal.org/index.html) for information about GDAL, [here](https://anaconda.org/conda-forge/gdal) for Anaconda support for GDAL and [here](http://www.gisinternals.com/release.php) for GDAL Binaries for Windows. + ### Testing Run: `python -m unittest discover geodepy/tests/ --verbose` -### Tutorials - -See [here](https://github.com/GeoscienceAustralia/GeodePy/tree/master/docs/tutorials) for worked examples of common GeodePy functions and routines. - ## API ``` @@ -37,12 +40,13 @@ For subsequent updating run: `zappa update dev` * **Craig Harrison** - *Project Management* - [harry093](https://github.com/harry093) * **Josh Batchelor** - *Initial Work, Geodesy and Surveying* - [BatchelorJ](https://github.com/BatchelorJ) * **Jonathan Mettes** - *Testing, Integration and Deployment* - [jmettes](https://github.com/jmettes) +* **Jack McCubbine** - *Height Module* - [JackMcCubbineGA](https://github.com/JackMcCubbineGA) See also the list of [contributors](https://github.com/GeoscienceAustralia/geodepy/graphs/contributors) who participated in this project. ### License -Copyright 2018-2019 Geoscience Australia +Copyright 2018-2020 Geoscience Australia Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/setup.py b/setup.py index a662067..7734c8b 100644 --- a/setup.py +++ b/setup.py @@ -9,4 +9,4 @@ author_email='geodesy@ga.gov.au', license='Apache License 2.0', packages=['geodepy'], - install_requires=['numpy', 'scipy', 'gdal']) + install_requires=['numpy', 'scipy'])