-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Hex logo #20
Comments
Craig B. at CCT has put together a bunch of icons that we're using on the new AZMet website (under construction). Maybe the station one here: https://staging.azmet.arizona.edu/past-data/station-level-summaries ? |
Maybe put the icon inside an outline of the state? |
Got one of those, too: https://staging.azmet.arizona.edu/past-data/network-wide-summary |
I imagine we could ask Craig B. at CCT to combine the two |
Looks nice, maybe put the package name in there somewhere too? Maybe some dots representing the active stations? |
library(azmetr)
library(ggplot2)
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
library(maps)
az <- map_data("state", "arizona")
ggplot() +
geom_polygon(data = az, aes(x = long, y = lat, group = group), color = "black", fill = "lightblue") +
geom_point(data = station_info, aes(x = longitude, y = latitude)) +
coord_map() +
theme_void() Created on 2022-12-09 with reprex v2.0.2 |
Very nice! You can use |
This logo looks great! |
Gotta have a hex logo for the package, right?
The text was updated successfully, but these errors were encountered: