CRAN Version 1.2.0
- API changes to functions that take
mesh_size
(#35). It has been changed to a numeric value in km unit instead of the mesh size string.
coords_to_mesh(141.3468, 43.06462, mesh_size = "10km")
to
coords_to_mesh(141.3468, 43.06462, mesh_size = 10)
- Add
mesh_convert()
that mesh size can be changed freely.
# Scale up
mesh_convert("52350432", 80)
# Scale down
mesh_convert("52350432", 0.500)
meshcode_sf()
export data.frame to sf which include meshcode variable.
Improvement
- Add image test with vdiffr (#41).
- Introducing GitHub actions.
Bug fixes and minor improvements
- The bounding box value returned by
mesh_to_coords()
is incorrect (#31)