I'm not sure my understanding is correct, but I want to avoid the "d1" prefix and not have one:
uri <- 'https://dapds00.nci.org.au/thredds/catalog.xml'
thredds::CatalogNode$new(uri, prefix = "")$prefix
#> [1] "d1"
thredds::CatalogNode$new(uri, prefix = NA_character_)$prefix
#> [1] "d1"
thredds::CatalogNode$new(uri, prefix = NULL)$prefix
#> [1] "d1"
thredds::CatalogNode$new(uri, prefix = character(0))$prefix
#> [1] "d1"
?
I'm not sure my understanding is correct, but I want to avoid the "d1" prefix and not have one:
?