I have a database table full of geometric point data (postgres 'point' type field) stored in Y,X format:
SELECT name,type, coord[0] as posx, coord[1] as posy FROM grid order by coord[0], coord[1] asc
Since each "grid" will have multiple rows and columns, whats the best way to output the data?
Thanks =)