Skip to content

Commit d3a7654

Browse files
authored
Merge pull request #93 from GeoscienceAustralia/remove_gdal_install
Remove gdal install
2 parents 13f3fe7 + 0550ba7 commit d3a7654

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

Diff for: LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2018-2019 Geoscience Australia
189+
Copyright 2018-2020 Geoscience Australia
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

Diff for: 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* - [JackMcCubbineGA](https://github.com/JackMcCubbineGA)
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-2019 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

Diff for: 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)