Re: [gdal-dev] break a bounding box into smaller boxes

2021-02-18 Thread jratike80
Hi, Ok, so obviously you are talking about WFS service, not WMS. Why don't you use paging with COUNT and STARTINDEX https://www.mapserver.org/ogc/wfs_server.html? -Jukka Rahkonen- MRRAJESH wrote > We are expecting feature information from our own map server for a given > BBOX. At present we

Re: [gdal-dev] break a bounding box into smaller boxes

2021-02-18 Thread MRRAJESH
We are expecting feature information from our own map server for a given BBOX. At present we are limited to 500 features is the max limit. But as per our requirement, we want to return a huge number of features from the server. So we are planning to split the BBOX into multiple boxes and hit the se

Re: [gdal-dev] break a bounding box into smaller boxes

2021-02-18 Thread jratike80
Hi, I would guess that Mapserver does not care about your BBOX but by the same you create GetMap requests with &WIDTH= and &HEIGHT= that exceeds the limit that is configured on the server with MAP-MAXSIZE https://mapserver.org/mapfile/map.html. So you must split your requests smaller by the reque

[gdal-dev] break a bounding box into smaller boxes

2021-02-17 Thread MRRAJESH
Hi, We have large area bbox coordinates. When we hit with this BBOX, MapServer is not able to handle the bigger size bbox values. We are planning to split the bigger bbox into multiple bboxes and send them to the map server for features data. Any library or sample code to break a bounding box in