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
I think one should be able to call internal functions directly, i.e. without referencing the name of the package?
For example, the following:
CRiSp/R/osmdata.R
Line 165 in 85ec2ac
Could be replaced with:
river_surface <- osmdata_as_sf("natural", "water", bb)
Am I missing something here, @cforgaci ?
The text was updated successfully, but these errors were encountered:
I think one should be able to call internal functions directly, i.e. without referencing the name of the package? For example, the following: CRiSp/R/osmdata.R Line 165 in 85ec2ac river_surface <- CRiSp::osmdata_as_sf("natural", "water", bb) Could be replaced with: river_surface <- osmdata_as_sf("natural", "water", bb) Am I missing something here, @cforgaci ?
river_surface <- CRiSp::osmdata_as_sf("natural", "water", bb) Could be replaced with:
river_surface <- osmdata_as_sf("natural", "water", bb) Am I missing something here, @cforgaci ?
You are right. That looks like a leftover namespace, does not have to be there.
Sorry, something went wrong.
No branches or pull requests
I think one should be able to call internal functions directly, i.e. without referencing the name of the package?
For example, the following:
CRiSp/R/osmdata.R
Line 165 in 85ec2ac
Could be replaced with:
Am I missing something here, @cforgaci ?
The text was updated successfully, but these errors were encountered: