Re: [gdal-dev] Convex hull with holes

2023-03-10 Thread Paul Meems
Hull to create holes >> >> ogr2ogr -f jml -dialect SQLite -sql "select >> ST_ConcaveHull(ST_Collect(geometry),3,1) from concave" out.jml concave.jml >> >> and the result was >> >> >> >> For fine tuning you may want to add ST_Buffer i

Re: [gdal-dev] Convex hull with holes

2023-03-06 Thread Paul Meems
> > > > *Lähettäjä:* Paul Meems > *Lähetetty:* perjantai 3. maaliskuuta 2023 16.47 > *Vastaanottaja:* gdal-dev@lists.osgeo.org > *Kopio:* Rahkonen Jukka > *Aihe:* Re: [gdal-dev] Convex hull with holes > > > > Thanks Jukka for your reply. > > > > I under

Re: [gdal-dev] Convex hull with holes

2023-03-05 Thread Rahkonen Jukka
a Rahkonen- Lähettäjä: Paul Meems Lähetetty: perjantai 3. maaliskuuta 2023 16.47 Vastaanottaja: gdal-dev@lists.osgeo.org Kopio: Rahkonen Jukka Aihe: Re: [gdal-dev] Convex hull with holes Thanks Jukka for your reply. I understand it is hard. In my case, I have a lot of data points making your edge

Re: [gdal-dev] Convex hull with holes

2023-03-03 Thread Markus Neteler
On Fri, Mar 3, 2023 at 1:52 PM Paul Meems wrote: > > How can I algorithmically create a parcel border that accounts for islands or > holes within the parcel based on a list of coordinates? > > While GDAL+GEOS has a Convex hull method, it only identifies the outer border. > > Has GDAL+GEOS a metho

Re: [gdal-dev] Convex hull with holes

2023-03-03 Thread Joaquim Manuel Freire Luís via gdal-dev
I do that type of things with GMT’s mask module (-D option) https://docs.generic-mapping-tools.org/latest/mask.html From: gdal-dev On Behalf Of Paul Meems Sent: Friday, March 3, 2023 2:47 PM To: gdal-dev@lists.osgeo.org Subject: Re: [gdal-dev] Convex hull with holes Thanks Jukka for your reply

Re: [gdal-dev] Convex hull with holes

2023-03-03 Thread Paul Meems
gdal-dev *Puolesta *Paul > Meems > *Lähetetty:* perjantai 3. maaliskuuta 2023 14.52 > *Vastaanottaja:* gdal-dev@lists.osgeo.org > *Aihe:* [gdal-dev] Convex hull with holes > > > > How can I algorithmically create a parcel border that accounts for islands > or holes within the

Re: [gdal-dev] Convex hull with holes

2023-03-03 Thread Rahkonen Jukka
@lists.osgeo.org Aihe: [gdal-dev] Convex hull with holes How can I algorithmically create a parcel border that accounts for islands or holes within the parcel based on a list of coordinates? While GDAL+GEOS has a Convex hull method, it only identifies the outer border. Has GDAL+GEOS a method that I

[gdal-dev] Convex hull with holes

2023-03-03 Thread Paul Meems
How can I algorithmically create a parcel border that accounts for islands or holes within the parcel based on a list of coordinates? While GDAL+GEOS has a Convex hull method, it only identifies the outer border. Has GDAL+GEOS a method that I can use to detect inner holes as well, such as in a do