-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix several issues in geoviewer #418
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
67aeabf
Fixes #412 and #417
adehecq 187d686
Fix error in previous commit. Clarify behavior for multi-band raster.
adehecq 5fe72ab
Improve tests for single bands. Add tests for 3 band rasters.
adehecq 8b906cb
Run precommit
adehecq b95cc9a
Minor edit to argparse
adehecq 52df36f
Merge branch 'main' into fix_geoviewer
adehecq 41c2cca
Add geoviewer.py to documentation
adehecq e42670f
Fix errors in previous commit
adehecq 0b8924e
Make needed changes to dev-environment and conf.py
adehecq 2e376ec
Add ref to CLI in quickstart
adehecq 711a6d7
Fix readthedocs complain
adehecq f469bfa
Fixing issues with conda environment
adehecq cfec2dc
Linting
adehecq 813efab
Test removing argparse command to see if doc buils
adehecq c88f397
Try without relative path
adehecq f0ea8a8
Try with path relative to doc/source
adehecq a7d2feb
Revert to previous way as relative path causes issues in test_doc.py
adehecq 08d3e41
Set matplotlib interpolation to None by default
adehecq f6c975c
Merge branch 'main' into fix_geoviewer
adehecq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
(cli)= | ||
# Command Line Interface | ||
|
||
This page lists all CLI functionalities of GeoUtils. | ||
These commands can be run directly from a terminal, without having to launch a Python console. | ||
|
||
## geoviewer.py | ||
|
||
```{eval-rst} | ||
.. argparse:: | ||
:filename: geoviewer.py | ||
:func: getparser | ||
:prog: geoviewer.py | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,6 +132,7 @@ analysis_examples/index | |
:maxdepth: 2 | ||
|
||
api | ||
cli | ||
background | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't forget, for development-specific dependencies, you have to mirror them manually in "setup.cfg [options.extras_require]" (there's a reminder in the
dev-environment
file and another one in a PR template when you open one, but it's been a while here!)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I missed that info in the
dev-environment.yml
file !