We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complementing #259
Create a central table for all the attributes across all datasets and either use filter or left_join to refine what is needed
filter
left_join
Use references
use relevant parts of the file name to help construct a description using dplyr::case_when , tools::file_path_sans_ext(), and stringr::str_extract
dplyr::case_when
tools::file_path_sans_ext()
stringr::str_extract
use selectMember to help you grab the correct pids to use eg. zipId <- selectMember(dp, name="sysmeta@formatId", value="application/vnd.shp+zip")
selectMember
zipId <- selectMember(dp, name="sysmeta@formatId", value="application/vnd.shp+zip")
use for loops or purrr::map to help iterate through entities
for
purrr::map
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Complementing #259
Create a central table for all the attributes across all datasets and either use
filter
orleft_join
to refine what is neededUse references
use relevant parts of the file name to help construct a description using
dplyr::case_when
,tools::file_path_sans_ext()
, andstringr::str_extract
use
selectMember
to help you grab the correct pids to useeg.
zipId <- selectMember(dp, name="sysmeta@formatId", value="application/vnd.shp+zip")
use
for
loops orpurrr::map
to help iterate through entitiesThe text was updated successfully, but these errors were encountered: