Skip to content

Commit 2634d96

Browse files
BatchelorJBatchelorJ
BatchelorJ
authored and
BatchelorJ
committed
Removed GDAL from setup, added additional install info to README.md, update of license, contributors and order of README.md
1 parent e95db0f commit 2634d96

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

README.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,25 @@
44

55
This is a package of tools for manipulating geospatial datasets using Python and tested in Python 3.6.4.
66

7+
### Tutorials
8+
9+
See [here](https://github.com/GeoscienceAustralia/GeodePy/tree/master/docs/tutorials) for worked examples of common GeodePy functions and routines.
10+
711
### Dependencies
812

9-
This package requires the following non-standard Python modules installed:
13+
This package requires the following PyPI Packages installed:
1014

1115
```
1216
NumPy
17+
SciPy
1318
```
1419

20+
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.
21+
1522
### Testing
1623

1724
Run: `python -m unittest discover geodepy/tests/ --verbose`
1825

19-
### Tutorials
20-
21-
See [here](https://github.com/GeoscienceAustralia/GeodePy/tree/master/docs/tutorials) for worked examples of common GeodePy functions and routines.
22-
2326
## API
2427

2528
```
@@ -37,12 +40,13 @@ For subsequent updating run: `zappa update dev`
3740
* **Craig Harrison** - *Project Management* - [harry093](https://github.com/harry093)
3841
* **Josh Batchelor** - *Initial Work, Geodesy and Surveying* - [BatchelorJ](https://github.com/BatchelorJ)
3942
* **Jonathan Mettes** - *Testing, Integration and Deployment* - [jmettes](https://github.com/jmettes)
43+
* **Jack McCubbine** - *Height Module*
4044

4145
See also the list of [contributors](https://github.com/GeoscienceAustralia/geodepy/graphs/contributors) who participated in this project.
4246

4347
### License
4448

45-
Copyright 2018 Geoscience Australia
49+
Copyright 2018-2020 Geoscience Australia
4650

4751
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
4852

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
author_email='[email protected]',
1010
license='Apache License 2.0',
1111
packages=['geodepy'],
12-
install_requires=['numpy', 'scipy', 'gdal'])
12+
install_requires=['numpy', 'scipy'])

0 commit comments

Comments
 (0)