Skip to content

Commit

Permalink
8.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
semiautomaticgit committed Oct 8, 2023
1 parent d4f5748 commit e0633ec
Show file tree
Hide file tree
Showing 5 changed files with 16,641 additions and 16,638 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def description():


def version():
return 'Version 8.0.0 - Infinity'
return 'Version 8.0.1 - Infinity'


def icon():
Expand Down
4 changes: 2 additions & 2 deletions docs/repository.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version = '1.0' encoding = 'UTF-8'?>
<plugins>
<pyqgis_plugin name="Semi-Automatic Classification Plugin - master" version="8.0.0" plugin_id="284">
<pyqgis_plugin name="Semi-Automatic Classification Plugin - master" version="8.0.1" plugin_id="284">
<description><![CDATA[The Semi-Automatic Classification Plugin (SCP) allows for the supervised classification of remote sensing images, providing tools for the download, the preprocessing and postprocessing of images.]]></description>
<about><![CDATA[Developed by Luca Congedo, the Semi-Automatic Classification Plugin (SCP) allows for the supervised classification of remote sensing images, providing tools for the download, the preprocessing and postprocessing of images. Search and download is available for Landsat, Sentinel-2 images. Several algorithms are available for the land cover classification. This plugin requires the installation of Remotior Sensus, GDAL, OGR, Numpy, SciPy, and Matplotlib. For more information please visit https://fromgistors.blogspot.com .]]></about>
<version>8.0.0</version>
<version>8.0.1</version>
<qgis_minimum_version>3.0.0</qgis_minimum_version>
<qgis_maximum_version>3.99.0</qgis_maximum_version>
<homepage><![CDATA[https://fromgistors.blogspot.com/p/semi-automatic-classification-plugin.html]]></homepage>
Expand Down
5 changes: 4 additions & 1 deletion interface/signature_threshold_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
Allows for setting signature thresholds.
"""

from remotior_sensus.util import shared_tools
try:
from remotior_sensus.util import shared_tools
except Exception as error:
str(error)

cfg = __import__(str(__name__).split('.')[0] + '.core.config', fromlist=[''])

Expand Down
2 changes: 1 addition & 1 deletion metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name=Semi-Automatic Classification Plugin
qgisMinimumVersion=3.00
description=The Semi-Automatic Classification Plugin (SCP) allows for the supervised classification of remote sensing images, providing tools for the download, the preprocessing and postprocessing of images.
version=8.0.0
version=8.0.1
about=Developed by Luca Congedo, the Semi-Automatic Classification Plugin (SCP) allows for the supervised classification of remote sensing images, providing tools for the download, the preprocessing and postprocessing of images. Search and download is available for Landsat, Sentinel-2 images. Several algorithms are available for the land cover classification. This plugin requires the installation of Remotior Sensus, GDAL, OGR, Numpy, SciPy, and Matplotlib. For more information please visit https://fromgistors.blogspot.com .

author=Luca Congedo
Expand Down
Loading

0 comments on commit e0633ec

Please sign in to comment.