Skip to content

Commit

Permalink
Add C API link to DE9IM page
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-jts committed Aug 13, 2024
1 parent f8d57ec commit 5a2afd8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions capi/geos_c.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -4927,7 +4927,7 @@ extern char GEOS_DLL GEOSEqualsIdentical(
const GEOSGeometry* g2);

/**
* Calculate the DE9IM string for a geometry pair
* Calculate the [DE9IM](https://en.wikipedia.org/wiki/DE-9IM) string for a geometry pair
* and compare against a DE9IM pattern to check for
* consistency.
* If the result matches the pattern return true.
Expand All @@ -4948,7 +4948,7 @@ extern char GEOS_DLL GEOSRelatePattern(
const char *imPattern);

/**
* Calculate the DE9IM string for this geometry pair.
* Calculate the [DE9IM](https://en.wikipedia.org/wiki/DE-9IM) string for this geometry pair.
* The result is a 9-character string containing dimension symbols in the set "012F".
* \see geos::geom::Geometry::relate
* \param g1 First geometry in pair
Expand All @@ -4962,7 +4962,7 @@ extern char GEOS_DLL *GEOSRelate(
const GEOSGeometry* g2);

/**
* Compare a DE9IM string to a pattern and return true if they
* Compare a [DE9IM](https://en.wikipedia.org/wiki/DE-9IM) string to a pattern and return true if they
* are consistent.
* \param intMatrix DE9IM string (contains symbols "012F")
* \param imPattern Pattern to match to (may also contain symbols "T" and "*")
Expand All @@ -4975,7 +4975,7 @@ extern char GEOS_DLL GEOSRelatePatternMatch(
const char *imPattern);

/**
* Calculate the DE9IM string for this geometry pair,
* Calculate the [DE9IM](https://en.wikipedia.org/wiki/DE-9IM) string for this geometry pair,
* using the supplied \ref GEOSRelateBoundaryNodeRules.
* \see geos::geom::Geometry::relate
* \see geos::algorithm::BoundaryNodeRule
Expand Down Expand Up @@ -5207,7 +5207,7 @@ extern char GEOS_DLL GEOSPreparedWithin(

/**
* Use a \ref GEOSPreparedGeometry do a high-performance
* calculation of the DE9IM relationship between the
* calculation of the [DE9IM](https://en.wikipedia.org/wiki/DE-9IM) relationship between the
* prepared and provided geometry.
* \param pg1 The prepared geometry
* \param g2 The geometry to test
Expand All @@ -5224,7 +5224,7 @@ extern char GEOS_DLL * GEOSPreparedRelate(

/**
* Use a \ref GEOSPreparedGeometry do a high-performance
* calculation of the DE9IM relationship between the
* calculation of the [DE9IM](https://en.wikipedia.org/wiki/DE-9IM) relationship between the
* prepared and provided geometry, and compare the
* relationship to the provided DE9IM pattern.
* Returns true if the patterns are consistent and false otherwise.
Expand Down

0 comments on commit 5a2afd8

Please sign in to comment.