Releases: JosiahParry/rsgeo
Releases · JosiahParry/rsgeo
rsgeo v0.1.7
explode_lines()
will expand anrs_LINESTRING
orrs_MULTILINESTRING
into 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 returnn
elements (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 aBTreeMap
which preserves order. Additional tests have been added to compare tosf
s constructors as validation.