You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OSRFindMatches(OGRSpatialReferenceH hSRS, char **papszOptions, int *pnEntries,
466
+
int **ppanMatchConfidence) -> OGRSpatialReferenceH *
467
+
468
+
Try to identify a match between the passed SRS and a related SRS in a catalog.
469
+
470
+
### Parameters
471
+
* **hSRS**: SRS to match
472
+
* **papszOptions**: NULL terminated list of options or NULL
473
+
* **pnEntries**: Output parameter. Number of values in the returned array.
474
+
* **ppanMatchConfidence**: Output parameter (or NULL). *ppanMatchConfidence will be allocated to an array of *pnEntries whose values between 0 and 100 indicate the confidence in the match. 100 is the highest confidence level. The array must be freed with CPLFree().
475
+
476
+
### Returns
477
+
an array of SRS that match the passed SRS, or NULL. Must be freed with OSRFreeSRSArray()
0 commit comments