# Give weather station name (must be existing in metaIndex):
findID("Potsdam")
findID("potsDam") # capitalization is ignored
# all names containing "Hamburg":
findID("Hamburg", exactmatch=FALSE)
findID("Potsdam", exactmatch=FALSE)
# vectorized:
findID(c("Potsdam","Berlin-Buch"))
# German Umlauts are changed to ue, ae, oe, ss
findID("Muenchen", FALSE)
berryFunctions::convertUmlaut("M?nchen") # use this to convert umlauts in lists
# See if warnings come as expected and are informative:
findID("this_is_not_a_city")
findID(c("Wuppertal"," this_is_not_a_city") )
findID()
findID(7777)
findID("01050")
Run the code above in your browser using DataLab