Skip to content

Commit

Permalink
Add () to functions to enable linking
Browse files Browse the repository at this point in the history
  • Loading branch information
olivroy committed Feb 14, 2024
1 parent 6b72586 commit 99f347f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 27 deletions.
28 changes: 12 additions & 16 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# version 0.2-14

* `st_perimeter()` is deprecated in favor of `st_perimeter_lwgeom()`, as `sf` takes over `st_perimeter()`

# version 0.2-12
* `st_perimeter()` is deprecated in favor of `st_perimeter_lwgeom()`, as `sf` takes over with `sf::st_perimeter()`.

# version 0.2-13

Expand Down Expand Up @@ -38,65 +36,63 @@

* fix configure script to work with ubuntu/bionic and PROJ 4.9.3; #28

# version 0.2-3

* fix configure script to work with PROJ 5.x versions

# version 0.2-2

* adjust to sf >= 0.9-0 new crs representation

* use `st_make_valid` generic from package sf; https://github.com/r-spatial/sf/issues/1300
* use `st_make_valid()` generic from package sf; https://github.com/r-spatial/sf/issues/1300

# version 0.2-1

* fix PROJ 5.x installation issue (has proj.h, but shouldn't use it)

# version 0.2-0

* export `lwgeom_make_valid`, to gradually move `st_make_valid` from `lwgeom` to `sf`; https://github.com/r-spatial/sf/issues/989
* export `lwgeom_make_valid()`, to gradually move `st_make_valid()` from `lwgeom` to `sf`; https://github.com/r-spatial/sf/issues/989

* constrain argument `crs` in `st_transform_proj` to take one or two character strings
* constrain argument `crs` in `st_transform_proj()` to take one or two character strings

* update to POSTGIS 3.0.0 liblwgeom version

* update to modern PROJ, use proj.h when available

# version 0.1-5

* check for user interrupts on `st_geod_distance`, #29 by Dan Baston
* check for user interrupts on `st_geod_distance()`, #29 by Dan Baston

* add `st_astext` for fast WKT writing, #25 by Etienne Racine
* add `st_astext()` for fast WKT writing, #25 by Etienne Racine

* add `st_is_polygon_cw`, #21 by Andy Teucher @ateucher; add Andy Teucher to contributors
* add `st_is_polygon_cw()`, #21 by Andy Teucher @ateucher; add Andy Teucher to contributors

* add `st_perimeter` and `st_perimeter_2d` functions to compute the length measurement of the boundary of a surface.
* add `st_perimeter()` and `st_perimeter_2d()` functions to compute the length measurement of the boundary of a surface.

* allow `st_transform_proj` to take two proj4 strings as crs, as `c(input_p4s, output_p4s)`, ignoring the CRS of x
* allow `st_transform_proj()` to take two proj4 strings as crs, as `c(input_p4s, output_p4s)`, ignoring the CRS of x

# version 0.1-4

* tries to fix the CRAN error for r-release-osx (datum files missing in sf; removed test)

# version 0.1-3

* add `st_geod_covered_by` binary geometry predicate
* add `st_geod_covered_by()` binary geometry predicate

# version 0.1-2

* try to fix OSX compile on CRAN, tuning configure.ac

# version 0.1-1

* add `st_length`
* add `st_length()`

* attempt to fix Solaris and OSX

* report proj.4 and GEOS versions on startup, and on `lwgeom_extSoftwareVersions`; #10

* add minimum bounding circle, by @rundel; #7

* add `st_subdivide`, see https://github.com/r-spatial/sf/issues/597
* add `st_subdivide()`, see https://github.com/r-spatial/sf/issues/597

# version 0.1-0

Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ R bindings to the [liblwgeom](https://github.com/postgis/postgis/tree/master/lib


This package provides functions that use
`liblwgeom`, including `st_geohash`,
`st_minimum_bounding_circle`, `st_split`, `st_subdivide`,
`st_transform_proj` (transform through proj, omitting
GDAL) and `st_as_sfc.TWKB` (creates `sfc` from [tiny
`liblwgeom`, including `st_geohash()`,
`st_minimum_bounding_circle()`, `st_split()`, `st_subdivide()`,
`st_transform_proj()` (transform through proj, omitting
GDAL) and `st_as_sfc.TWKB()` (creates `sfc` from [tiny
wkb](https://github.com/TWKB/Specification/blob/master/twkb.md)),
as well as the geodetic (spherical/ellipsoidal) geometry
functions `st_geod_area`,
`st_geod_length`,
`st_geod_distance`,
`st_geod_covers`,
`st_geod_azimuth`,
and `st_geod_segmentize`. The previously offered `st_make_valid`
is now a generic in package `sf`.
functions `st_geod_area()`,
`st_geod_length()`,
`st_geod_distance()`,
`st_geod_covers()`,
`st_geod_azimuth()`,
and `st_geod_segmentize()`. The previously offered `st_make_valid()`
is now a generic in package `sf` (`sf::st_make_valid()`).

## Installing

Expand Down

0 comments on commit 99f347f

Please sign in to comment.