Skip to content

Commit

Permalink
8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
semiautomaticgit committed Oct 8, 2023
1 parent e0633ec commit 5983318
Show file tree
Hide file tree
Showing 5 changed files with 15,821 additions and 15,814 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.1 - Infinity'
return 'Version 8.0.2 - 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.1" plugin_id="284">
<pyqgis_plugin name="Semi-Automatic Classification Plugin - master" version="8.0.2" 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.1</version>
<version>8.0.2</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
8 changes: 6 additions & 2 deletions interface/download_products_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ def find_images():

# download image metadata
def perform_query():
cfg.download_table = None
product_name = cfg.dialog.ui.landsat_satellite_combo.currentText()
date_from_qt = cfg.dialog.ui.dateEdit_from.date()
date_to_qt = cfg.dialog.ui.dateEdit_to.date()
Expand Down Expand Up @@ -292,7 +291,12 @@ def perform_query():
cfg.ui_utils.remove_progress_bar()
if output.check:
product_table = output.extra['product_table']
cfg.download_table = product_table
if cfg.download_table is None:
cfg.download_table = product_table
else:
cfg.download_table = cfg.rs.table_manager.stack_product_table(
product_list=[cfg.download_table, product_table]
)
else:
return False
table = cfg.dialog.ui.download_images_tableWidget
Expand Down
5 changes: 4 additions & 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.1
version=8.0.2
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 All @@ -13,6 +13,9 @@ icon=semiautomaticclassificationplugin.png

changelog=

8.0.2
-fixed download HLS

8.0.0
-new version based on Remotior Sensus (i.e. a Python library developed for remote sensing) as main processing framework
-the whole code has been substantially rewritten and improved
Expand Down
Loading

0 comments on commit 5983318

Please sign in to comment.