rsgeo 0.1.7
CRAN release: 2024-07-10
-
explode_lines()will expand anrs_LINESTRINGorrs_MULTILINESTRINGinto their component segments - Adds
line_segmentize_haversine()to segment LineStrings in geographic space. - Adds
geom_line()to construct a straight line geometry between two point vectors. - Adds
coord_first(),coord_last(),coord_n(), andn_coords()functions for working with coordinates of geometries. - Adds
densify_euclidean()anddensify_haversine()to densify planar and geographic linear geometries respectively. - Bug fix:
line_segmentize()would not always returnnelements (h/t @Robinlovelace) -
geom_linestring(),geom_polygon()andgeom_multipoint()constructors ignored order. This was due to the internal use of aHashMap. These have been swapped to aBTreeMapwhich preserves order. Additional tests have been added to compare tosfs constructors as validation.
rsgeo 0.1.5
CRAN release: 2023-09-02
- Initial CRAN release. This couldn’t have been possible without the attention to detail of @eitsupi, and the guidance and help from @cgmossa, @Ilia-Kosenkov, @sorhwell and the prior art of @yutannihilation and @jeroen
rsgeo 0.1.3
- adding additional parallelization to geodesic, Haversine, and Vincenty lengths
- parallelization added to minimum bounding rect
- line_segmentize() is now parallelized