kuniezu
kuniezu copied to clipboard
Assistance on the National Geography of Japan
First release: * [x] `usethis::use_cran_comments()` * [ ] Proof read `Title:` and `Description:` * [ ] Check that all exported functions have `@returns` and `@examples` * [x] Check that `Authors@R:`...
パッケージで用意している `jgd2011_bbox` (ベースは地球地図日本) 以外のポリゴンデータを与えると `geom_jpsegment()` での補助線の位置がおかしなことになる。データに応じて相対的な位置で線が引かれるようにしたい。 ``` r library(kuniezu) library(sf) library(ggplot2) ne_jpn % tibble::new_tibble(nrow = nrow(.), class = "sf") %>% st_transform(crs = 6668) move_jpn_rs(ne_jpn) %>% ggplot() + geom_sf() + geom_jpsegment()...