[geos-commits] [SCM] GEOS branch main-relate-ng updated. 18e84710f1cd9e41e78875a09c251a792e0ac536

git at osgeo.org git at osgeo.org
Fri Jun 21 15:22:10 PDT 2024


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, main-relate-ng has been updated
       via  18e84710f1cd9e41e78875a09c251a792e0ac536 (commit)
       via  fb3c0202f849c66d9e2d33fdc1c71adf60989a9b (commit)
       via  ac1d92432ea887a06864fd66283546724ca8caa1 (commit)
       via  451e615ae0d9d54fbdbb8352a9aa755c0ed90419 (commit)
       via  fc0722fcc2cd925e0a4d445a93f630b5ea4c9f07 (commit)
       via  87e98b72ebfe3510a2c235ae8b23e64503f6adab (commit)
       via  42696b39bfda948ecf0a28191db3b5fba63acaea (commit)
       via  3fdb41f57160b6846cb8e00228b1aa7d79bb7cc4 (commit)
       via  108e59959d642977a5dc7e8cf20a7ac15561e837 (commit)
       via  a02617f40778cc6a7165235a5219849dd6d5dd9d (commit)
       via  f03a3f3f576a28f7de4517cf3e0bcc0ec33a9487 (commit)
       via  a690eb66dcaf87f8bc5e1489c58123cc20cd179e (commit)
       via  39629616d518dfa3f5c48365b4baf7017aa1625c (commit)
       via  5dc668b7f2ca3beb9d188b9dfc6f8f3e4935894a (commit)
       via  2aa98200475266fb63e132f806f82c00c8665c6c (commit)
       via  eea66b88041b0dd54a91bd3119e894f8b133851b (commit)
       via  50ae3bd877e329866a8d9fe197d10720a1e6aca8 (commit)
       via  37f7600b591d40d1afd5035d3f40f1a19bc85cc2 (commit)
       via  72c76d060606e511e50c24dacf533a6f28c7f69e (commit)
       via  faa29d7c0c148064c5b44342b76635502f48651b (commit)
       via  667e57695ef79e93a076bbad5c54d575d9b6c35f (commit)
       via  10475608bfd41a0dd2258bd0eff8a90070f9982f (commit)
       via  76d0e8f344efbad4b41bafced76f3f8e48573ccb (commit)
       via  d0d3d5a0bf9c5a3f3bcb4da64ae53fef0f7d64e2 (commit)
       via  960c39f4504c7e8ee4d40b073e2c66fc779a2f6d (commit)
       via  b52027764600f9b674f32ec82a40e69455655be1 (commit)
       via  76b8454d9eb5e9f59b151e3288aa07a6d9d412c7 (commit)
       via  d80463b0a791676df0a7d4d95f842929933156a4 (commit)
       via  7c278ce71a889f3e72e53a691476ac1938f2a21c (commit)
      from  fce310f58bd51c274798025a9a1dff726e1c6578 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 .github/workflows/ci.yml                           | 167 ++++++++++++---------
 .github/workflows/container.yml                    |   2 +-
 .github/workflows/release.yml                      |   2 +-
 .github/workflows/web.yml                          |   2 +-
 .gitignore                                         |  52 +------
 NEWS.md                                            |   5 +
 benchmarks/README.md                               |  10 ++
 benchmarks/capi/CMakeLists.txt                     |   3 +
 benchmarks/capi/GEOSPreparedContainsPerfTest.cpp   |   2 -
 .../GEOSTopologyPreserveSimplifyStableTest.cpp     | 106 +++++++++++++
 capi/geos_c.cpp                                    |  36 +++++
 capi/geos_c.h.in                                   |  92 ++++++++++++
 capi/geos_ts_c.cpp                                 | 117 +++++++++++++++
 cmake/cmake_uninstall.cmake.in                     |  14 +-
 include/geos/geom/Geometry.h                       |   2 +-
 include/geos/geom/GeometryTypeName.h               | 110 ++++++++++++++
 include/geos/io/WKBConstants.h                     |   7 +-
 include/geos/io/WKBReader.h                        |  34 ++++-
 include/geos/io/WKBWriter.h                        |  13 +-
 include/geos/simplify/LineSegmentIndex.h           |   2 +-
 include/geos/simplify/TaggedLineString.h           |   2 +-
 src/algorithm/hull/ConcaveHullOfPolygons.cpp       |   2 +-
 src/io/WKBReader.cpp                               | 132 +++++++++++++---
 src/io/WKBWriter.cpp                               | 132 +++++++++++-----
 src/simplify/DouglasPeuckerLineSimplifier.cpp      |   5 +
 src/simplify/LineSegmentIndex.cpp                  |  35 +----
 src/simplify/TaggedLineString.cpp                  |   5 +-
 src/simplify/TaggedLineStringSimplifier.cpp        |  26 +++-
 tests/unit/capi/GEOSConcaveHullOfPolygonsTest.cpp  |   9 ++
 .../capi/GEOSGeom_createCircularStringTest.cpp     |  44 ++++++
 tests/unit/capi/GEOSGeom_createCollectionTest.cpp  |  33 ++++
 .../unit/capi/GEOSGeom_createCompoundCurveTest.cpp |  57 +++++++
 .../unit/capi/GEOSGeom_createCurvePolygonTest.cpp  |  58 +++++++
 tests/unit/capi/GEOSWKBWriterTest.cpp              |  13 --
 tests/unit/io/WKBReaderTest.cpp                    |  97 ++++++++++++
 tests/unit/io/WKBWriterTest.cpp                    | 102 +++++++++++++
 tests/unit/io/WKTReaderTest.cpp                    |  92 ------------
 .../unit/simplify/DouglasPeuckerSimplifierTest.cpp |  35 +++--
 .../simplify/TopologyPreservingSimplifierTest.cpp  |  22 +++
 web/content/_index.md                              |   3 +-
 web/content/project/development/tests.md           |  12 +-
 web/content/usage/download.md                      |  16 +-
 42 files changed, 1351 insertions(+), 359 deletions(-)
 create mode 100644 benchmarks/README.md
 create mode 100644 benchmarks/capi/GEOSTopologyPreserveSimplifyStableTest.cpp
 create mode 100644 include/geos/geom/GeometryTypeName.h
 create mode 100644 tests/unit/capi/GEOSGeom_createCircularStringTest.cpp
 create mode 100644 tests/unit/capi/GEOSGeom_createCompoundCurveTest.cpp
 create mode 100644 tests/unit/capi/GEOSGeom_createCurvePolygonTest.cpp


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list