forked from jywarren/image-sequencer
-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Meta modules and add inputs to ndvi-colormap (#1432)
* fix meta module bug * fix create meta module and add inputs to ndvi-colormap Co-authored-by: Harsh Khandeparkar <34770591+HarshKhandeparkar@users.noreply.github.com> Co-authored-by: Jeffrey Warren <jeff@unterbahn.com>
- Loading branch information
1 parent
448848b
commit c453bbb
Showing
2 changed files
with
26 additions
and
7 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
{ | ||
"name": "ndvi-colormap", | ||
"description": "Sequentially Applies NDVI and Colormap steps", | ||
"inputs": {}, | ||
"inputs": { | ||
"filter": { | ||
"type": "select", | ||
"desc": "Filter color", | ||
"default": "red", | ||
"values": ["red", "blue"] | ||
}, | ||
"colormap": { | ||
"type": "select", | ||
"desc": "Name of the Colormap", | ||
"default": "default", | ||
"values": [ | ||
"default", | ||
"greyscale", | ||
"stretched", | ||
"fastie" | ||
] | ||
} | ||
}, | ||
"docs-link": "https://github.com/publiclab/image-sequencer/blob/main/docs/MODULES.md#ndvi-colormap-module" | ||
} |
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