cts that are generalized has no geometry =
> null, but not the others. It must be something that I’m doing wrong or is
> it something I miss?
>
> I have pointed out GeooTools 20.2 in my pom file.
>
>
>
> Kind regards,
>
> Paul
>
>
>
> *Från:* Ian Turton [mai
rds,
>>
>> Paul
>>
>>
>>
>> *Från:* Ian Turton [mailto:ijtur...@gmail.com]
>> *Skickat:* den 15 mars 2019 09:49
>> *Till:* Malm, Paul (Operations AIM)
>> *Kopia:* geotools-users
>> *Ämne:* Re: [Geotools-gt2-users] generailisation
>>
>>
> Paul
>
>
>
> *Från:* Ian Turton [mailto:ijtur...@gmail.com]
> *Skickat:* den 15 mars 2019 09:49
> *Till:* Malm, Paul (Operations AIM)
> *Kopia:* geotools-users
> *Ämne:* Re: [Geotools-gt2-users] generailisation
>
>
>
> You should be able to use a DouglasPe
x,y but does not show in ArcGis.
Does anyone have any suggestions?
Kind regards,
Paul
Från: Ian Turton [mailto:ijtur...@gmail.com]
Skickat: den 15 mars 2019 09:49
Till: Malm, Paul (Operations AIM)
Kopia: geotools-users
Ämne: Re: [Geotools-gt2-users] generailisation
You should be able to use a
You should be able to use a DouglasPeuckerSimplifier to achieve this.
Something like:
DouglasPeuckerSimplifier simplifier = new DouglasPeuckerSimplifier(in);
simplifier.setDistanceTolerance(tolerance);
Geometry out = simplifier.getResultGeometry();
would do it.
JTS also provides a T