Repository metrics
- Stars
- (229 stars)
- PR merge metrics
- (No merged PRs in 30d)
Description
Hallo, I very much like your package!
I have a question. Not about a bug but a comment on the documentation.
I was wondering why all of the examples that are used in the documentation use the location: my_survey <- fetch_survey(surveyID = surveys$id[6]) instead of the string and the Unique ID. Like this: fetch_survey(surveyID = "SV_brr7rymdAnaGekS",
In the documentation, the use of the string and the Unique ID is explained:
surveyID String. Unique ID for the survey you want to download. Returned as id by the all_surveys function.
However, all of the examples use the surveys$id[6].
I would imagine that using the unique id (fetch_survey(surveyID = "SV_brr7rymdAnaGekS", ) would be preferred to the location, due to precision and due to consistency over time.
Or am I missing something?