Skip to content

Commit

Permalink
excludes selected products (relevant for #119)
Browse files Browse the repository at this point in the history
  • Loading branch information
fdetsch committed Oct 1, 2021
1 parent 5a7b51c commit 25738c3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion exec/exec-modis_collection_update.R
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,13 @@ nsidc = nsidc |>
, ""
, product
)
) |>
subset(
!product %in% c(
"NSIDC-0321"
, "NSIDC-0447"
, "MODGRNLD"
)
)


Expand All @@ -215,7 +222,10 @@ clc = do.call(
product
, collection
)
]
] |>
subset(
!grepl("M(O|Y)D28", product)
)

## split by product
tmp = clc[
Expand Down

0 comments on commit 25738c3

Please sign in to comment.