Commit 3c0fa08
fix: Check bbox value for list of lists (#182)
#180
For specific collection example reported in bug ticket
(https://www.eodms-sgdot.nrcan-rncan.gc.ca/stac/collections/rcm-ard) =>
spatial extent looks like ``` "extent": {
"spatial": {
"bbox": [-180, -90, 180, 90]
},``` when I believe its supposed to be a list of lists ` "extent": {
"spatial": {
"bbox": [[-180, -90, 180, 90]]
},` so change checks for that or just returns list value.
---------
Co-authored-by: Pete Gadomski <[email protected]>1 parent c221ce4 commit 3c0fa08
1 file changed
+6
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
263 | 263 | | |
264 | 264 | | |
265 | 265 | | |
266 | | - | |
267 | | - | |
| 266 | + | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
| 270 | + | |
| 271 | + | |
268 | 272 | | |
269 | 273 | | |
270 | 274 | | |
| |||
0 commit comments