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
library(jpmesh) library(tidyverse) library(leaflet) library(sf) # Create 500m mesh data (polygon) paste0(36233799, 1:4) %>% as_data_frame() %>% set_names(c("meshcode")) %>% mutate(out = pmap(., mesh_to_coords)) %>% unnest() %>% mutate(out = st_as_sfc(pmap_chr(., jpmesh:::mesh_to_poly))) %>% st_sf() -> d # Check leaflet(data = d) %>% addTiles() %>% addPolygons() %>% addMarkers(data = d %>% st_centroid(), label = ~meshcode, labelOptions = labelOptions(noHide = TRUE))
分割メッシュコードの割り当ては南西(1 左下)、南東(2 右下)、北西(3 左上)、北東(4 右上)の順でなければいけない。
The text was updated successfully, but these errors were encountered:
cd897a3
修正した
Sorry, something went wrong.
uribo
No branches or pull requests
分割メッシュコードの割り当ては南西(1 左下)、南東(2 右下)、北西(3 左上)、北東(4 右上)の順でなければいけない。
The text was updated successfully, but these errors were encountered: