Skip to content

Commit

Permalink
add nrt cleanup to oceandata sources v0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondben committed Jul 30, 2024
1 parent 1cd3c94 commit 58f1a3e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: blueant
Type: Package
Title: Antarctic and Southern Ocean Environmental Data Sources
Version: 0.12.2
Version: 0.12.3
Authors@R: c(person("Ben", "Raymond", email = "ben.raymond@aad.gov.au", role = c("aut", "cre")),
person("Michael", "Sumner", role = "aut"),
person("Charlene", "Guillaumot", role = "aut"))
Expand All @@ -11,7 +11,7 @@ BugReports: https://github.com/AustralianAntarcticDivision/blueant/issues
Encoding: UTF-8
License: MIT + file LICENSE
Depends:
bowerbird (>= 0.15.1),
bowerbird (>= 0.16.0),
R (>= 3.3.0)
Imports:
assertthat,
Expand Down
24 changes: 12 additions & 12 deletions R/sources_ocean_colour.R
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata", search="SEASTAR_SEAWIFS_GAC*L3m.MO.CHL.chlor_a.9km.nc", sensor = "seawifs", dtype = "L3m"),
postprocess=NULL,
postprocess=list("bb_oceandata_cleanup"),
collection_size=7.2,
user = "", password = "", warn_empty_auth = FALSE,
authentication_note = "Requires Earthdata login, see https://urs.earthdata.nasa.gov/. Note that you will also need to authorize the application 'OB.DAAC Data Access' (see 'My Applications' at https://urs.earthdata.nasa.gov/profile)",
Expand All @@ -74,7 +74,7 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata",search="AQUA_MODIS*L3m.DAY.CHL.chlor_a.4km*.nc", sensor = "aqua", dtype = "L3m"),
postprocess=NULL,
postprocess=list("bb_oceandata_cleanup"),
collection_size=40,
user = "", password = "", warn_empty_auth = FALSE,
authentication_note = "Requires Earthdata login, see https://urs.earthdata.nasa.gov/. Note that you will also need to authorize the application 'OB.DAAC Data Access' (see 'My Applications' at https://urs.earthdata.nasa.gov/profile)",
Expand All @@ -91,7 +91,7 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata",search="AQUA_MODIS*L3m.MO.CHL.chlor_a.9km*.nc", sensor = "aqua", dtype = "L3m"),
postprocess=NULL,
postprocess=list("bb_oceandata_cleanup"),
collection_size=8,
user = "", password = "", warn_empty_auth = FALSE,
authentication_note = "Requires Earthdata login, see https://urs.earthdata.nasa.gov/. Note that you will also need to authorize the application 'OB.DAAC Data Access' (see 'My Applications' at https://urs.earthdata.nasa.gov/profile)",
Expand All @@ -108,7 +108,7 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata", search = "SNPP_VIIRS*L3m.DAY.CHL.chlor_a.4km*.nc", sensor = "viirs", dtype = "L3m"),
postprocess=NULL,
postprocess=list("bb_oceandata_cleanup"),
collection_size=50,
user = "", password = "", warn_empty_auth = FALSE,
authentication_note = "Requires Earthdata login, see https://urs.earthdata.nasa.gov/. Note that you will also need to authorize the application 'OB.DAAC Data Access' (see 'My Applications' at https://urs.earthdata.nasa.gov/profile)",
Expand All @@ -125,7 +125,7 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata",search="SNPP_VIIRS*L3m.MO.CHL.chlor_a.9km*.nc", sensor = "viirs", dtype = "L3m"),
postprocess=NULL,
postprocess=list("bb_oceandata_cleanup"),
collection_size=1,
user = "", password = "", warn_empty_auth = FALSE,
authentication_note = "Requires Earthdata login, see https://urs.earthdata.nasa.gov/. Note that you will also need to authorize the application 'OB.DAAC Data Access' (see 'My Applications' at https://urs.earthdata.nasa.gov/profile)",
Expand All @@ -142,7 +142,7 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata",search="SNPP_VIIRS*L3m.SN*.CHL.chlor_a.9km*.nc", sensor = "viirs", dtype = "L3m"),
postprocess=NULL,
postprocess=list("bb_oceandata_cleanup"),
collection_size=0.5,
user = "", password = "", warn_empty_auth = FALSE,
authentication_note = "Requires Earthdata login, see https://urs.earthdata.nasa.gov/. Note that you will also need to authorize the application 'OB.DAAC Data Access' (see 'My Applications' at https://urs.earthdata.nasa.gov/profile)",
Expand All @@ -158,8 +158,8 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
doc_url="https://oceancolor.gsfc.nasa.gov/",
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata", search = "SNPP_VIIRS*L3b.DAY.RRS*.nc", sensor = "viirs", dtype = "L3b"),
postprocess=NULL,
method=list("bb_handler_oceandata", search = "SNPP_VIIRS*L3b.DAY.RRS.*.nc", sensor = "viirs", dtype = "L3b"),
postprocess=list("bb_oceandata_cleanup"),
access_function="roc::readL3",
collection_size=180,
user = "", password = "", warn_empty_auth = FALSE,
Expand All @@ -176,8 +176,8 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
doc_url="https://oceancolor.gsfc.nasa.gov/",
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata",search="AQUA_MODIS*L3b.DAY.RRS*.nc", sensor = "aqua", dtype = "L3b"),
postprocess=NULL,
method=list("bb_handler_oceandata",search="AQUA_MODIS*L3b.DAY.RRS.*.nc", sensor = "aqua", dtype = "L3b"),
postprocess=list("bb_oceandata_cleanup"),
access_function="roc::readL3",
collection_size=800,
user = "", password = "", warn_empty_auth = FALSE,
Expand All @@ -195,7 +195,7 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata",search="SEASTAR_SEAWIFS_GAC*L3b.DAY.RRS.nc", sensor = "seawifs", dtype = "L3b"),
postprocess=NULL,
postprocess=list("bb_oceandata_cleanup"),
access_function="roc::readL3",
collection_size=130,
user = "", password = "", warn_empty_auth = FALSE,
Expand All @@ -213,7 +213,7 @@ sources_ocean_colour <- function(name,formats,time_resolutions, ...) {
citation="See https://oceancolor.gsfc.nasa.gov/citations",
license="Please cite",
method=list("bb_handler_oceandata",search="SNPP_VIIRS*L3m.R32.CHL.chlor_a.9km*.nc", sensor = "viirs", dtype = "L3m"),
postprocess=NULL,
postprocess=list("bb_oceandata_cleanup"),
collection_size=4,
user = "", password = "", warn_empty_auth = FALSE,
authentication_note = "Requires Earthdata login, see https://urs.earthdata.nasa.gov/. Note that you will also need to authorize the application 'OB.DAAC Data Access' (see 'My Applications' at https://urs.earthdata.nasa.gov/profile)",
Expand Down

0 comments on commit 58f1a3e

Please sign in to comment.