Skip to content

Commit

Permalink
v23.5
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierCLL committed May 2, 2023
1 parent bf11666 commit 6e26140
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name=CCD-Plugin
description=Qgis plugin for Continuous Change Detection algorithm of a time series at a given coordinate
about=The CCD-Plugin utilizes PyCCD and data from Google Earth Engine to implement the Continuous Change Detection algorithm to analyze the trend and breakpoints of change over multi-year time series at a given coordinate.

version=23.3.30
version=23.5
qgisMinimumVersion=3.16
qgisMaximumVersion=3.99

Expand All @@ -15,8 +15,12 @@ tracker=https://github.com/SMByC/CCD-Plugin/issues
repository=https://github.com/SMByC/CCD-Plugin

changelog=
23.3.30:
- First stable version
23.5:
- Implemented several indices to the CCD data input through GEE: 'NBR', 'NDVI', 'EVI', 'EVI2', 'BRIGHTNESS', 'GREENNESS', 'WETNESS'
- Refactoring the plugin to convert it as dock widget instead of dialog, improving usability and the integration with Qgis
- Dynamic ticks for the axe date
- Define the zoom factor of the plot based on the dpi
- Store the cdd results to repaint the plot when the user change the band or index without reprocess it
- All commits in: https://github.com/SMByC/CCD-Plugin/commits

tags=gee,trends,change detection,ccdc,landsat,time series
Expand Down
2 changes: 1 addition & 1 deletion utils/extralibs.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def extract_zip(self):

def install():
# define the Qgis plugins directory and url by OS
url = "https://github.com/SMByC/CCD-Plugin/releases/download/23.3.30/"
url = "https://github.com/SMByC/CCD-Plugin/releases/download/23.5/"
py_version = 'py' + str(platform.python_version_tuple()[0]) + '.' + str(platform.python_version_tuple()[1])
if platform.system() == "Windows":
qgis_plugins_dir = os.path.join(os.path.expanduser('~'), 'AppData', 'Roaming', 'QGIS', 'QGIS3', 'profiles', 'default', 'python', 'plugins')
Expand Down

0 comments on commit 6e26140

Please sign in to comment.