area_indexer | R Documentation |
This function assembles a dataframe consisting of the years and areas where the azmpdata packages\'s data has been collected, as well as the associated file(s) where the data can be found.
area_indexer(
years = NULL,
areanames = NULL,
areaTypes = NULL,
datafiles = NULL,
months = NULL,
doMonths = F,
doParameters = F,
parameters = NULL,
fuzzyParameters = TRUE,
qcMode = F
)
years |
default is |
areanames |
default is |
areaTypes |
default is |
datafiles |
default is |
months |
default is |
doMonths |
default is |
doParameters |
default is |
parameters |
default is |
fuzzyParameters |
default is |
qcMode |
default is |
a data.frame
Note that each additional filter that gets sent will reduce the number of results returned.
For example, if doMonths = TRUE
and years = 2010
, only those results from 2010 that
also have monthly data will be returned.
Mike McMahon, Mike.McMahon@dfo-mpo.gc.ca
## Not run:
allAreas <- area_indexer()
allAreas_w_Parameters <- area_indexer(doParameters =T)
areaAreas_2018_2020 <- area_indexer(years=c(2018,2019,2020))
some_HLData <- area_indexer(areanames=c("HL","HL2"))
sections_2017 <- area_indexer(areaTypes=c("section"), year = 2017)
specificParameters_2000s <- area_indexer(parameters=c("Arctic_Calanus_species",
"integrated_phosphate_0_50"), year=c(2000:2009))
februaryParameters <-area_indexer(doMonths = T, months = 2, doParameters = T)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.