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'd like to create a GeoPDF using a ggplot map output. In my example:
ggplot
#Packages library(ggplot2) library(ggspatial) library(sf) library(RQGIS3) # Get data set - x any are the points all.stands.predict<-read.csv("https://raw.githubusercontent.com/Leprechault/trash/main/prediction__bug_2021-03-18.csv") all.stands.predict<-all.stands.predict[all.stands.predict[,3]=="VILA PALMA",] # Area selection #Create a map (sites <- st_as_sf(all.stands.predict, coords = c("x", "y"), crs = 4326, agr = "constant")) gg <- ggplot() + geom_sf(data=sites, color="red") + annotation_north_arrow(location = "bl", which_north = "true", pad_x = unit(0.3, "in"), pad_y = unit(0.5, "in"), style = north_arrow_fancy_orienteering) + #Add a north arrow annotation_scale(location = "bl", width_hint = 0.55) + #Add a scale bar xlab("Latitude") + ylab("Longitude") + theme_bw() # I inspected the map created plot(gg))
Now, I need to know if there is any way using RQGIS3 for create a GeoPDF map using my gg object?
RQGIS3
gg
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'd like to create a GeoPDF using a
ggplot
map output. In my example:Now, I need to know if there is any way using
RQGIS3
for create a GeoPDF map using mygg
object?The text was updated successfully, but these errors were encountered: