petern48 commented on issue #539: URL: https://github.com/apache/sedona-db/issues/539#issuecomment-3818678707
> My current thought is to start with the simplest variant, ST_Relate(geometry, geometry) → text, and leave the other overloads for later. Yes, that sounds good to me! The [relate() function](https://github.com/georust/geos/blob/f7566bdef3052201e71052756ebb73c6c9e03056/src/geometry.rs#L533-L538) in the `geos` library matches that variant (they both take two geoms as input two and return a string), so I think it should be as simple as calling it. This would be a good first variant to start with. Feel free to go ahead and work on it. ```rust fn relate<G: Geom>(&self, other: &G) -> GResult<String> { ``` ``` ST_Relate(geometry, geometry) → text ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
