I'm working with PostGIS and plotting polygons on a Google Earth plugin. I've found a few examples via Google on how to convert a LinestringM to a Polygon for rendering, but none of them, including the PostGIS docs, define very well the params for a LinestringM. Can someone identify what's happening here? Specifically, I need to know what each of the four params of LinestringM are supposed to represent.
Snippet:
....
parameters.put("wkb_geometry", "ST_MakePolygon(ST_GeomFromText('LINESTRINGM(75.15 29.53,77 29,77.6 29.5, 75.15 29.53)'))");
....