Installation¶
There are two ways to install the Spatiotemporal LULC Analysis plugin.
Method 1: QGIS Plugin Manager (Recommended)¶
The easiest way to install the plugin is through the QGIS Plugin Manager:
- Open QGIS (version 3.28 or higher)
- Navigate to Plugins > Manage and Install Plugins...
- Click on the All tab
- Search for "Spatiotemporal LULC Analysis"
- Select the plugin and click Install Plugin
Enable Experimental Plugins
If you don't see the plugin in the list, you may need to enable experimental plugins:
- Go to the Settings tab in the Plugin Manager
- Check Show also experimental plugins
- Return to the All tab and search again
Method 2: Install from ZIP¶
If you prefer to install manually or want a specific version:
- Download the latest release ZIP from the GitHub Releases page
- Open QGIS
- Navigate to Plugins > Manage and Install Plugins...
- Click on Install from ZIP
- Browse to the downloaded ZIP file and click Install Plugin
Method 3: Development Installation¶
For developers who want to contribute or modify the plugin:
# Clone the repository
git clone https://github.com/raymukesh/spatiotemporal_lulc_analysis.git
# Copy to QGIS plugins directory
# Windows:
copy spatiotemporal_lulc_analysis "%APPDATA%\QGIS\QGIS3\profiles\default\python\plugins\"
# macOS:
cp -r spatiotemporal_lulc_analysis ~/Library/Application\ Support/QGIS/QGIS3/profiles/default/python/plugins/
# Linux:
cp -r spatiotemporal_lulc_analysis ~/.local/share/QGIS/QGIS3/profiles/default/python/plugins/
After copying, restart QGIS and enable the plugin through the Plugin Manager.
Verify Installation¶
After installation, verify the plugin is working:
- Look for Spatiotemporal LULC Analysis in the Plugins menu
- Click on it to open the analysis dock panel
- The dock should appear on the right side of your QGIS window
Installation Complete
If you see the dock panel with tabs for Inputs, Legend, Options, and Validation, the installation was successful.
System Requirements¶
| Requirement | Minimum |
|---|---|
| QGIS | 3.28+ |
| Operating System | Windows, macOS, or Linux |
| Additional Dependencies | None |
The plugin has no external Python dependencies - all required libraries are either bundled or included with QGIS.
Updating the Plugin¶
Via Plugin Manager¶
- Open Plugins > Manage and Install Plugins...
- Go to the Upgradable tab
- If an update is available, select the plugin and click Upgrade Plugin
Manual Update¶
- Uninstall the current version through Plugin Manager
- Download and install the new version using the ZIP method
Uninstallation¶
- Open Plugins > Manage and Install Plugins...
- Go to the Installed tab
- Select Spatiotemporal LULC Analysis
- Click Uninstall Plugin
Next Steps¶
Now that you have the plugin installed, proceed to the Quick Start guide to run your first analysis.