-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Only load localstate if params are not included in url request * Clear all params other than organizations * Update localStorage.ts * Removed if statement to force filter reset if url params are provided * Update localStorage.ts * Update localStorage.ts * Update localStorage.ts * Update localStorage.ts * Update thumbnail-config.json to use different api endpoint which better supports binary formats * Initial commit for RCM-ARD * Fixing logic to enable the loading of COG from rcm-ard collection * debug for rcm-ard * typo * Improve readability of imageUrls variable and add application/geotiff * typo * c;ode cleanup to determine if thumnail png or COG geotiff should be loaded * set max to 98th percentile to improve shading for rcm-ard * Invalidate localstorage after 5 minutes instead of checking params in url * Adjust padding to account for left search panel * Use longitude offset based on zoom level * add debug code * set new time for session after session expiry * bug fixes to localstorage * Update geosearch.tsx * adjust longitude offset * Update geosearch.tsx * Update geosearch.tsx * use getBoundsZoom to calculate best zoom level * Update geosearch.tsx * fix bug related to console output * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Removes bbox when paging. Zoom to extent of canada before zoom/panning * Create reset to initial map function * debug map reset * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Update geosearch.tsx * Add tooltip for rcm-ard in en/fr * Set min zoom to 4 to improve stability of the app * refactor display of eo and thumbnails on search page * Change default text * minor fixes * change rcm-ard polarization to new format * For colour ramp use 98th percentile instead of max * Change to draw bbox if tiling fails
- Loading branch information
Showing
12 changed files
with
412 additions
and
161 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
File renamed without changes.
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 @@ | ||
[ | ||
{ | ||
"label": "polarization.DEFAULT", | ||
"value": "" | ||
}, | ||
{ | ||
"label": "polarization.CHCV", | ||
"value": "CH + CV" | ||
}, | ||
{ | ||
"label": "polarization.HHHV", | ||
"value": "HH + HV" | ||
} | ||
] |
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,38 @@ | ||
[ | ||
{ | ||
"label": "polarization.DEFAULT", | ||
"value": "" | ||
}, | ||
{ | ||
"label": "polarization.VV", | ||
"value": "VV" | ||
}, | ||
{ | ||
"label": "polarization.VVVH", | ||
"value": "VV + VH" | ||
}, | ||
{ | ||
"label": "polarization.HH", | ||
"value": "HH" | ||
}, | ||
{ | ||
"label": "polarization.HHHV", | ||
"value": "HH + HV" | ||
}, | ||
{ | ||
"label": "polarization.HHHVVHVV", | ||
"value": "HH + HV + VH + VV" | ||
}, | ||
{ | ||
"label": "polarization.HHVV", | ||
"value": "HH + VV" | ||
}, | ||
{ | ||
"label": "polarization.HV", | ||
"value": "HV" | ||
}, | ||
{ | ||
"label": "polarization.VH", | ||
"value": "VH" | ||
} | ||
] |
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 |
---|---|---|
|
@@ -6,4 +6,7 @@ | |
} | ||
.sentinel-1 { | ||
padding-left: 10px; | ||
} | ||
} | ||
.rcm-ard { | ||
padding-left: 10px; | ||
} |
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.