Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@

- Fix clean command.
Closes issue `#21 <https://github.com/bopen/elevation/issues/21>`_.
- Add docstrings for all Pyhton API functions.
- Add docstrings for all Python API functions.
Closes issue `#15 <https://github.com/bopen/elevation/issues/15>`_.


0.9.11 (2016-09-23)
-------------------

- Revert the default product back to ``SRTM1`` by downloading from the
`Amazon Terrain Tiles on AWS servcie <https://aws.amazon.com/public-data-sets/terrain>`_.
`Amazon Terrain Tiles on AWS service <https://aws.amazon.com/public-data-sets/terrain>`_.
Closes issue `#18 <https://github.com/bopen/elevation/issues/18>`_.


Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

This project is Free and Open Source Software released under the terms of the
`Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_.
`Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0>`_.
Contributions are highly welcomed and appreciated. Every little help counts, so do not hesitate!

.. highlight: console
Expand All @@ -25,8 +25,8 @@ Tests can be run with `pytest <https://pytest.org>`_ and `tox <https://tox.readt
please ensure the coverage at least stays the same before you submit a pull request.


Keeping dependencies uptodate
-----------------------------
Keeping dependencies up-to-date
-------------------------------

Testing in done on version pinned dependencies to ensure reproducibility,
in order to update the pinned version to the latest version run::
Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
https://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

Expand Down Expand Up @@ -192,7 +192,7 @@
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ The following dependencies need to be installed and working:
- `GNU make <https://www.gnu.org/software/make/>`_
- `curl <https://curl.haxx.se/>`_
- unzip
- `gunzip <http://www.gzip.org/>`_
- `GDAL command line tools <http://www.gdal.org/>`_
- `gunzip <https://www.gzip.org/>`_
- `GDAL command line tools <https://www.gdal.org/>`_

The following command runs some basic checks and reports common issues::

Expand Down Expand Up @@ -63,7 +63,7 @@ for example if you have a georeference image ``MyImage.tif`` you can clip the co

$ eio clip -o MyImage-DEM.tif --reference MyImage.tif # enable with: $ pip install rasterio

The ``--reference`` option can take also verctor data as input::
The ``--reference`` option can take also vector data as input::

$ eio clip -o MyShapefile-DEM.tif --reference MyShapefile.shp # enable with: $ pip install fiona

Expand Down Expand Up @@ -138,7 +138,7 @@ Project resources
-----------------

============= =========================================================
Documentation http://elevation.bopen.eu
Documentation https://elevation.bopen.eu
Support https://stackoverflow.com/search?q=python+elevation
Development https://github.com/bopen/elevation
Download https://pypi.org/project/elevation
Expand All @@ -159,13 +159,13 @@ If you encounter any problems, please file an issue along with a detailed descri

Authors:

- B-Open Solutions srl - `@bopen <https://github.com/bopen>`_ - http://bopen.eu
- B-Open Solutions srl - `@bopen <https://github.com/bopen>`_ - https://bopen.eu
- Alessandro Amici - `@alexamici <https://github.com/alexamici>`_


License
-------

Elevation is free and open source software
distributed under the terms of the `Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_.
distributed under the terms of the `Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0>`_.

7 changes: 3 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# elevation documentation build configuration file
#
Expand Down Expand Up @@ -56,9 +55,9 @@ def _warn_node(self, msg, node, **kwargs):
master_doc = 'index'

# General information about the project.
project = u'elevation'
copyright = u'2016-2021 B-Open Solutions srl'
author = u'B-Open Solutions srl'
project = 'elevation'
copyright = '2016-2021 B-Open Solutions srl'
author = 'B-Open Solutions srl'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
2 changes: 1 addition & 1 deletion docs/design.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Logical components:
Version goals
-------------

This project strives to adhere to `semantic versioning <http://semver.org>`_.
This project strives to adhere to `semantic versioning <https://semver.org>`_.


1.1.0 (upcoming release)
Expand Down
6 changes: 2 additions & 4 deletions elevation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
6 changes: 2 additions & 4 deletions elevation/cli.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
6 changes: 2 additions & 4 deletions elevation/datasource.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
6 changes: 2 additions & 4 deletions elevation/spatial.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
6 changes: 2 additions & 4 deletions elevation/util.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
Expand All @@ -31,7 +30,7 @@ def read(fname):
author='B-Open Solutions srl, Alessandro Amici',
author_email='info@bopen.eu',
license='Apache License Version 2.0',
url='http://elevation.bopen.eu',
url='https://elevation.bopen.eu',
description="Python script to download global terrain digital elevation models, "
"SRTM 30m DEM and SRTM 90m DEM.",
long_description=read('README.rst'),
Expand Down
5 changes: 1 addition & 4 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
#
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu

import subprocess

Expand Down
5 changes: 1 addition & 4 deletions tests/test_datasource.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
#
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu

import subprocess

Expand Down
5 changes: 1 addition & 4 deletions tests/test_util.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016-2021 B-Open Solutions srl - http://bopen.eu
#
# Copyright (c) 2016-2021 B-Open Solutions srl - https://bopen.eu

import os
import subprocess
Expand Down