Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
resource_class: large

steps:
- checkout
- checkout:
method: blobless
- run:
name: Setting Up Environment with Miniforge
command: |
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repos:
exclude: tests/data/

- repo: https://github.com/PyCQA/isort
rev: "6.0.1"
rev: "7.0.0"
hooks:
- id: isort
name: sort imports
Expand All @@ -36,7 +36,7 @@ repos:
'--combine-as']

- repo: https://github.com/asottile/pyupgrade
rev: "v3.20.0"
rev: "v3.21.0"
hooks:
- id: pyupgrade
name: modernize python
Expand Down
14 changes: 3 additions & 11 deletions docs/QGIS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ The displacement time-series result can be exported as a QGIS-compatible format

### 1. QGIS with [InSAR Explorer](https://insar-explorer.readthedocs.io/) ###

The InSAR Explorer plugin supports both the GRD format and the shapefile format.
The InSAR Explorer plugin supports both the GRD format and the shapefile format. For more details, please refer to the [InSAR Explorer documentation](https://insar-explorer.readthedocs.io/).

#### a. Setup ####

1. Download and install [QGIS](https://qgis.org/en/site/) if you have not done so.
2. Install the plugin:
- Install within QGIS via "Plugins -> Manage and Install Plugins", then search for "InSAR Explorer".
- Alternatively, download the plugin as a *.zip file from [the plugin page](https://plugins.qgis.org/plugins/insar_explorer-dev/), and install it through "Plugins -> Manage and Install Plugins -> Install from ZIP".
2. Install the plugin: Install within QGIS via "Plugins -> Manage and Install Plugins", then search for "InSAR Explorer". Alternatively, download the plugin as a *.zip file from [the plugin page](https://plugins.qgis.org/plugins/insar_explorer-dev/), and install it through "Plugins -> Manage and Install Plugins -> Install from ZIP".
3. Launch the plugin: Access it from the toolbar or through "Plugins -> InSAR Explorer -> InSAR Explorer".

#### b. Usage for GRD files ####
Expand Down Expand Up @@ -52,20 +50,14 @@ ramp_color('RdBu', scale_linear(VEL, -20, 20, 0, 1))
<img width="1000" src="https://insarlab.github.io/figs/docs/mintpy/QGIS-InSAR-Explorer-point.png">
</p>

### d. More information ###

For more details on using the plugin, please refer to the [InSAR Explorer documentation](https://insar-explorer.readthedocs.io/).

### 2. QGIS with [PS Time Series Viewer](https://plugins.qgis.org/plugins/pstimeseries/)

The PS Time Series Viewer plugin supports the shapefile format only.

#### a. Setup

1. Download and install [QGIS](https://qgis.org/en/site/) if you have not done so.
2. Install the plugin:
- Install within QGIS via "Plugins -> Manage and Install Plugins", then search "PS Time Series Viewer".
- Alternatively, download the plugin as a *.zip file from [the plugin page](https://plugins.qgis.org/plugins/pstimeseries/), and install it through “Plugins -> Manage and Install Plugins -> Install from ZIP”.
2. Install the plugin: Install within QGIS via "Plugins -> Manage and Install Plugins", then search "PS Time Series Viewer". Alternatively, download the plugin as a *.zip file from [the plugin page](https://plugins.qgis.org/plugins/pstimeseries/), and install it through “Plugins -> Manage and Install Plugins -> Install from ZIP”.

#### b. Usage

Expand Down
4 changes: 2 additions & 2 deletions docs/api/colormaps.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ All GMT cpt files, e.g. the 20 built-in colormaps shown below, can be recognized
<img width="600" src="https://docs.generic-mapping-tools.org/5.4/_images/GMT_App_M_1b.png">
</p>

### Colormaps from [cpt-city](http://soliton.vm.bytemark.co.uk/pub/cpt-city/views/totp-cpt.html) ###
### Colormaps from [cpt-city](http://seaviewsensing.com/pub/cpt-city/views/totp-cpt.html) ###

The following colormaps is included by default:

Expand All @@ -49,7 +49,7 @@ The following colormaps is included by default:
+ wiki-2.0
+ wiki-schwarzwald-d050
+ wiki-scotland
+ More at [cpt-city](http://soliton.vm.bytemark.co.uk/pub/cpt-city/views/totp-cpt.html)
+ More at [cpt-city](http://seaviewsensing.com/pub/cpt-city/views/totp-cpt.html)

### Colormaps from [Scientific Color-Maps](http://www.fabiocrameri.ch/colourmaps.php) by Fabio Crameri ###

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm[toml]>=8"]
requires = ["setuptools>=77.0", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -12,12 +12,11 @@ authors = [
requires-python = ">=3.8"

keywords = ["InSAR", "deformation", "time-series", "volcano", "tectonics", "geodesy", "geophysics", "remote-sensing"]
license = {text = "GPL-3.0-or-later"}
license = "GPL-3.0-or-later"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
Expand Down
Loading