I want to create a WPS Request using the JTS:Buffer (or any other process). I'm using the built in WPS Request Builder from GeoServer.
My Multipolygon looks like this:
52.52735668,12.71762844 52.52633816,12.71518035 52.52467495,12.71354766 52.52293926,12.7136373 [..] 52.52154308,12.71439548 I'm building the request with TEXT and text/gml subtype gml:3.1.1. My input is:
MULTIPOLYGON(((52.52735668,12.71762844 52.52633816,12.71518035 52.52467495,12.71354766 52.52293926,12.7136373 52.52154308,12.71439548))) Unfortunately the
MULTIPOLYGON(((743238 2967416,743238 2967450,743265 2967450,743265.625 2967416, 743238 2967416))) Everything runs fine and I get the buffered Multipolygon returned. Can someone explain me what I am doing wrong?
أكثر...
My Multipolygon looks like this:
52.52735668,12.71762844 52.52633816,12.71518035 52.52467495,12.71354766 52.52293926,12.7136373 [..] 52.52154308,12.71439548 I'm building the request with TEXT and text/gml subtype gml:3.1.1. My input is:
MULTIPOLYGON(((52.52735668,12.71762844 52.52633816,12.71518035 52.52467495,12.71354766 52.52293926,12.7136373 52.52154308,12.71439548))) Unfortunately the
Process failed during execution Could not convert MULTIPOLYGON(((52.52735668,12.71762844 52.52633816,12.71518035 52.52467495,12.71354766 52.52293926,12.7136373 52.52154308,12.71439548))) to target type com.vividsolutions.jts.geom.Geometry
But when I insert an other Multipolygon as from this Answer
MULTIPOLYGON(((743238 2967416,743238 2967450,743265 2967450,743265.625 2967416, 743238 2967416))) Everything runs fine and I get the buffered Multipolygon returned. Can someone explain me what I am doing wrong?
أكثر...