In PostGIS 3.1 the function ST_SquareGrid(size, bounds) generates a grid. The documentation for the functionality is available in the docs. Understanding how this is done is not clear from the documentation.
I want to create a grid which overlaps with a polygon, in my case a country. The grid size should be in 1:n size of decimal grids. I plan on building grids according to a system called quarter degree grid cells.
The reason for this is that I am currently trying to shift most of the processing of this process to PostGIS rather than having to do the processing on FME. By pushing the processing to PostGIS I get less information back and forth between the database and FME.
How can I utilise this PostGIS functionality towards creating a relevant grid?
