-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update polygon point coverage fails #11
Comments
The issue is related to parameters: 0.1 , 0.1 |
cc: @varunratnakar |
I propose using a simpler method f you have multiple points and you want to enclose them in a polygon, you can use the ST_ConvexHull function in PostGIS. This function creates the minimum convex polygon that contains all the points. Here's an example of how you can do it: SELECT ST_ConvexHull(ST_Collect(geom)) AS polygon
FROM your_table; Replace your_table with the actual name of your table and geom with the name of the column that contains the points. Explanation of the example: ST_Collect(geom) groups all the points into a multipoint geometry. |
The dataset has one resource:
The sync_dataset_metadata triggers the function
_update_polygon_point_coverage_ds
. However, the query doesn't workInspecting the issue, the
SELECT
is returning an emptydataset_spatial_coverage
valueThe text was updated successfully, but these errors were encountered: