<div dir="ltr">What are they asking for?  The list of vertices from a polygon that touch the minimum bounding circle?<div>That is straight forward with existing functions</div><div>polygon -> point collection ->MBR center, diameter ->point collection where st_distance(point,center) = diameter/2 (less a little bit for rounding errors)</div><div><br></div><div>I can fire up a function and example if needed.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Aug 14, 2019 at 8:55 AM Paul Ramsey <<a href="mailto:pramsey@cleverelephant.ca">pramsey@cleverelephant.ca</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">In response to a user query on the list, about the actual extrema points of a set of points, we looked at the minimum bounding circle calculation, and it *almost* returns the answer… but the center and radius don’t quite give you the extrema.<br>
<br>
CREATE OR REPLACE FUNCTION ST_MinimumBoundingRadius(geometry, OUT center geometry, OUT radius double precision)<br>
        AS 'MODULE_PATHNAME', 'ST_MinimumBoundingRadius'<br>
        LANGUAGE 'c' IMMUTABLE STRICT _PARALLEL<br>
        _COST_HIGH;<br>
<br>
I was wondering whether to add Yet Another Function or just change the signature of this function to include an ‘OUT diameter geometry’ linestring.<br>
<br>
Thoughts?<br>
<br>
P<br>
_______________________________________________<br>
postgis-devel mailing list<br>
<a href="mailto:postgis-devel@lists.osgeo.org" target="_blank">postgis-devel@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/postgis-devel" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/postgis-devel</a></blockquote></div>