Seth G
Seth G
@jratike80 if there was a custom definition such as `epsg2::42304` it would be included in the Mapfile as follows: ``` WEB METADATA "wfs_title" "Test simple wfs" "wfs_srs" "epsg2:42304 EPSG:4326 EPSG:3857...
Related to this - the Zoo Project has added OGC CITE testing to its CI workflows - see [here](https://github.com/ZOO-Project/ZOO-Project/blob/56ed2268a35170165ec9158ec12e295688a30046/docker/ets-ogcapi-processes/docker-compose-ets-part.yml).
Does setting [MAXFEATURES](https://mapserver.org/mapfile/layer.html#mapfile-layer-maxfeatures) to 10 give you the result you want?
It seems similar to an issue I had in #5008. To resolve it an ORDER BY was added to the outer query to guarantee order of the filtered data. This...
You currently have your ORDER BY within the subquery. The SQL Server driver allows this to be moved to the outer query, so records are ordered after the time filter...
> @geographika Okay but how to add ORDER BY to outer query? From what I understand config keyword SORTBY mentioned here [#5041 (comment)](https://github.com/MapServer/MapServer/issues/5041#issue-50275224) is not implemented? > > I guess...
> @geographika Is there any possibility of implementing the LIMIT class in the near future? @MathewNWSH - I'm not currently a user of the PostGIS drive so no plans on...
From the original commit: https://github.com/MapServer/MapServer/commit/fbc84bcce7c677d58f7e05f75ff963e6cede8401: >Implemented signal catching on unix (non-win32) platforms. The signal catcher calls msCleanup() which most importantly will close database connections open in the pool. This is...
What headers do you get if you use the following? ```python headers = mapscript.msIO_getAndStripStdoutBufferMimeHeaders() result = mapscript.msIO_getStdoutBufferBytes() ``` `headers` should be a `dict` I believe.
Is there any difference if you set an EXTENT property on the MAP and LAYER (covering the world)?