Subject: | Geo::WKT::Simple support for MULTIPOINT |
Your package does not support MULTIPOINT geometries. There are however two different formats.
https://viswaug.wordpress.com/2011/02/13/well-known-text-wkt-representation-for-multipoint/
http://postgis.net/docs/manual-1.5/ch04.html
MySQL/PostGIS/Others = MULTIPOINT(0 0,1 2)
Oracle = MULTIPOINT((-122.360 47.656), (-122.343 47.656))
I only use PostGIS so I'd recommend.
wkt_make_multipoint eg MULTIPOINT(0 0,1 2)
wkt_make_multipoint_v2 eg MULTIPOINT((-122.360 47.656), (-122.343 47.656))
or even
wkt_make_multipoint_oracle eg MULTIPOINT((-122.360 47.656), (-122.343 47.656))
Thanks,
Mike
mrdvt92