Skip to content

Commit b856ea6

Browse files
8.1.6
1 parent 04b5472 commit b856ea6

5 files changed

Lines changed: 16412 additions & 16409 deletions

File tree

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def description():
3434

3535

3636
def version():
37-
return 'Version 8.1.5 - Infinity'
37+
return 'Version 8.1.6 - Infinity'
3838

3939

4040
def icon():

docs/repository.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version = '1.0' encoding = 'UTF-8'?>
22
<plugins>
3-
<pyqgis_plugin name="Semi-Automatic Classification Plugin - master" version="8.1.5" plugin_id="284">
3+
<pyqgis_plugin name="Semi-Automatic Classification Plugin - master" version="8.1.6" plugin_id="284">
44
<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>
55
<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>
6-
<version>8.1.5</version>
6+
<version>8.1.6</version>
77
<qgis_minimum_version>3.0.0</qgis_minimum_version>
88
<qgis_maximum_version>3.99.0</qgis_maximum_version>
99
<homepage><![CDATA[https://fromgistors.blogspot.com/p/semi-automatic-classification-plugin.html]]></homepage>

interface/download_products_tab.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def perform_query():
288288
float(cfg.dialog.ui.LX_lineEdit_3.text()),
289289
float(cfg.dialog.ui.LY_lineEdit_3.text())]
290290
)
291-
cfg.ui_utils.remove_progress_bar()
291+
cfg.ui_utils.remove_progress_bar(sound=False)
292292
if output.check:
293293
product_table = output.extra['product_table']
294294
if cfg.download_table is None:
@@ -506,7 +506,7 @@ def display_images():
506506
display_nasa_images(image_id)
507507
progress = progress + progress_step
508508
cfg.ui_utils.update_bar(progress, cfg.translate('Downloading ...'))
509-
cfg.ui_utils.remove_progress_bar()
509+
cfg.ui_utils.remove_progress_bar(sound=False)
510510
cfg.map_canvas.setRenderFlag(True)
511511
cfg.map_canvas.refresh()
512512

@@ -528,7 +528,7 @@ def table_click():
528528
elif (sat == cfg.rs.configurations.landsat_hls
529529
or sat == cfg.rs.configurations.sentinel2_hls):
530530
display_nasa_images(row, True)
531-
cfg.ui_utils.remove_progress_bar()
531+
cfg.ui_utils.remove_progress_bar(sound=False)
532532

533533

534534
""" Download """

metadata.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name=Semi-Automatic Classification Plugin
33
qgisMinimumVersion=3.00
44
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.
5-
version=8.1.5
5+
version=8.1.6
66
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 .
77

88
author=Luca Congedo
@@ -13,6 +13,9 @@ icon=semiautomaticclassificationplugin.png
1313

1414
changelog=
1515

16+
8.1.6
17+
-fixed finish sound
18+
1619
8.1.5
1720
-added information message when merging ROIs
1821
-minor fixes classification tab

0 commit comments

Comments
 (0)