Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Integrate sentinelhub-py package #16

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[flake8]
ignore = E203, W503
exclude = .git, __pycache__, SentinelHub/resources.py
exclude = .git, __pycache__, SentinelHub/resources.py, SentinelHub/external, SentinelHub/zip_build
max-line-length= 120
max-complexity = 13
per-file-ignores =
Expand Down
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@

SentinelHub QGIS Plugin enables users to harness the power of [Sentinel Hub services](https://www.sentinel-hub.com/) directly from QGIS.

Since version `2.0.0` the plugin only works with QGIS 3 and Python version `>=3.5` while earlier versions support both QGIS 2 and QGIS 3.

## Install

SentinelHub QGIS Plugin is available in QGIS Official Plugin Repository. For install just open QGIS, select `Plugins -> Manage and Install Plugins` and search for the plugin.
SentinelHub QGIS Plugin is available in the official [QGIS Python Plugins Repository](https://plugins.qgis.org/plugins/SentinelHub/). For install just open QGIS, select `Plugins -> Manage and Install Plugins` and search for `SentinelHub` plugin.

In case of manual installation, you can download a [released version](https://github.com/sentinel-hub/sentinelhub-qgis-plugin/releases), unzip it into QGIS Plugin directory and enable the plugin under QGIS Installed Plugins.

Compatibility:

- versions `<2.0.0` support both QGIS 2 and QGIS 3,
- version `2.0.0` supports QGIS 3 and Python version `>=3.5,
- version `2.1.0` supports QGIS versions `>=3.22` and Python versions `>=3.8`.

In case of manual installation, you can download [latest release](https://github.com/sentinel-hub/sentinelhub-qgis-plugin/releases/latest), unzip it into QGIS Plugin directory and enable plugin under QGIS Installed Plugins.

## Usage

Expand Down
33 changes: 28 additions & 5 deletions SentinelHub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@
This script initializes the plugin, making it known to QGIS.
"""

WHEELS = [ # TODO: separate wheels requirements and import them from requirements file
"oauthlib",
"requests-oauthlib",
"click",
"aenum",
"tqdm",
"dataclasses-json",
"marshmallow",
"marshmallow-enum",
"packaging",
"typing-inspect",
"mypy-extensions",
"typing-extensions",
]


def classFactory(iface):
"""Load SentinelHub class from file SentinelHub.
Expand All @@ -29,13 +44,21 @@ def classFactory(iface):
# pylint: disable=import-outside-toplevel
# pylint: disable=unused-import

# The following initializes UI
from . import resources
from .utils.meta import ensure_import
from .utils.meta import configure_external_import_path, ensure_wheel_import

configure_external_import_path()
for package_name in WHEELS:
ensure_wheel_import(package_name)

ensure_import("oauthlib")
ensure_import("requests_oauthlib")
# TODO: this import is just for testing purpose:
import sentinelhub

from .exceptions import MessageType, show_message

show_message(f"Imported sentinelhub-py {sentinelhub.__version__} !!", MessageType.INFO)

# The following initializes UI
from . import resources
from .main import SentinelHubPlugin

return SentinelHubPlugin(iface)
4 changes: 2 additions & 2 deletions SentinelHub/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Mandatory items:
[general]
name=SentinelHub
qgisMinimumVersion=3.0
qgisMinimumVersion=3.22
qgisMaximumVersion=3.99
description=SentinelHub plugin enables users to harness the power of Sentinel Hub services directly from QGIS.
version=2.0.0
version=2.1.0
author=Sinergise
[email protected]

Expand Down
23 changes: 19 additions & 4 deletions SentinelHub/utils/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,37 @@
from qgis.utils import plugins_metadata_parser


def ensure_import(package_name):
def configure_external_import_path() -> None:
"""Adds path to the folder with external packages to the list of Python package import paths. This way if a package
doesn't exist in the Python environment used by QGIS it will be imported from the external folder.

Note that on Windows QGIS typically uses its own Python environment with an installation of most common Python
packages. But on Linux and macOS it typically uses the default system Python environment.
"""
plugin_dir = _get_main_dir()
external_path = os.path.join(plugin_dir, "external")

sys.path.append(external_path)


def ensure_wheel_import(package_name: str) -> None:
"""Ensures that a dependency package could be imported. It is either already available in the QGIS environment or
it is available in a subfolder `external` of this plugin and should be added to PATH
"""
package_name = package_name.replace("-", "_")

try:
__import__(package_name)
except ImportError as exception:
plugin_dir = _get_main_dir()
external_path = os.path.join(plugin_dir, "external")

for wheel_name in os.listdir(external_path):
if wheel_name.startswith(package_name):
for wheel_name in sorted(os.listdir(external_path)):
if wheel_name.startswith(package_name) and wheel_name.endswith(".whl"):
wheel_path = os.path.join(external_path, wheel_name)
sys.path.append(wheel_path)
return
raise ImportError(f"Package {package_name} not found") from exception
raise ImportError(f"A wheel of a package {package_name} not found in {external_path}") from exception


def _get_plugin_name(missing="SentinelHub"):
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[tool.black]
line-length = 120
preview = true
extend-exclude = "SentinelHub/resources.py|SentinelHub/external|SentinelHub/zip_build"

[tool.isort]
profile = "black"
known_first_party = "sentinelhub"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "LOCALFOLDER"]
line_length = 120
skip = ["SentinelHub/resources.py", "SentinelHub/external", "SentinelHub/zip_build"]

[tool.pylint]
ignore = [
"resources.py"
]
ignore = ["resources.py", "external", "zip_build"]

[tool.pylint.format]
max-line-length = 120
Expand Down
12 changes: 12 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
oauthlib
requests-oauthlib
click
aenum>=2.1.4
utm
tqdm
dataclasses-json
marshmallow
marshmallow-enum
packaging
typing-inspect
mypy-extensions
typing-extensions
sentinelhub