Skip to content

Commit

Permalink
Merge pull request #7 from TUW-GEO/mosaic
Browse files Browse the repository at this point in the history
Experimental release
  • Loading branch information
cnavacch authored Feb 8, 2021
2 parents 477292d + df9ed17 commit 3191d84
Show file tree
Hide file tree
Showing 17 changed files with 1,527 additions and 1,771 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,6 @@ MANIFEST
.venv*/

# user defined
.scripts
.scripts
dump.py
tests/tmp
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ Contributors
* Claudio Navacchi (cnavacch) <[email protected]>
* Sebastian Hahn (sebhahn) <[email protected]>
* Bernhard Bauer-Marschallinger <[email protected]>
* Leonard Weydemann (lweydemann) <[email protected]>

6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

Version 0.1.1
=============
- WARNING: this is an experimental release
- Refactored IO classes
- New modules are only available as commented code chunks

Version 0.1.0
=============
- TU Wiens internal package `pyraster` was recreated as `veranda`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## Description
*veranda* stands for *"vector and raster data access"* and is a place for IO related classes and operations dealing
with vector and raster data. Currently, there is only one module `io`, which adds support for GeoTIFF (`geotiff`) and
NetCDF (`netcdf`) files and their image stack representations (`timestack`).
NetCDF (`netcdf`) files and their image stack representations (`stack`).

## Limitations and Outlook
Support for vector data is still missing, which could for instance include reading and writing Shape-Files or well-known
Expand All @@ -29,7 +29,7 @@ pip install veranda
```
**ATTENTION**: GDAL needs more OS support and has more dependencies then other packages and can therefore not be installed solely via pip.
Please have a look at https://pypi.org/project/GDAL/ what requirements are needed. Thus, for a fresh setup, an existing environment
with a Python and GDAL installation are expected.
with a Python and `gdal<=3.0.2` installation are expected.

### conda
The packages also comes along with one conda environment ``conda_environment.yml``.
Expand Down
8 changes: 3 additions & 5 deletions conda_environment.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
name: veranda
name: veranda_experimental
channels:
- conda-forge
dependencies:
- python=3.6
- gdal<=3.0.0
- gdal<=3.0.2
- numpy
- pandas
- pyproj
- dask
- xarray
- netcdf4
- matplotlib
- netcdf4
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
gdal<=3.0.0
numpy
cftime<1.1
pandas
pyproj
netCDF4
Expand Down
7 changes: 3 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ url = https://github.com/TUW-GEO/veranda
platforms = any
classifiers =

Development Status :: 4 - Beta
Development Status :: 1 - Planning
License :: OSI Approved :: MIT License
Topic :: Scientific/Engineering
Topic :: Software Development :: Version Control :: Git
Expand All @@ -36,7 +36,6 @@ package_dir =
setup_requires = pyscaffold>=3.2a0,<3.3a0
install_requires =
numpy
cftime<1.1
pandas
pyproj
netCDF4
Expand All @@ -61,9 +60,9 @@ exclude =
# PDF = ReportLab; RXP
# Add here test requirements (semicolon/line-separated)
testing =
pytest==3.8.2
pytest
pytest-cov
coverage==4.5.2
coverage

[options.entry_points]
# Add here console scripts like:
Expand Down
Loading

0 comments on commit 3191d84

Please sign in to comment.