Skip to main content
Solved

How to split a bounding box when access a feature limitation number and loop it again and again

  • June 4, 2019
  • 2 replies
  • 53 views

azad456

I want to read features from a WFS service version 1.0 , which has a limitation of maximum 10000 features per call .

How to split my bounding box , when reaching the max number? It should loop the reading, unti I get all my features.

Best answer by redgeographics

You can split the bounding box using a Tiler, but I think the only feasible way is to iterate through it, if you reach the limit on one tile, split it 2 x 2 and try again and so on.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

redgeographics
Celebrity
Forum|alt.badge.img+61
  • Celebrity
  • Best Answer
  • June 4, 2019

You can split the bounding box using a Tiler, but I think the only feasible way is to iterate through it, if you reach the limit on one tile, split it 2 x 2 and try again and so on.


azad456
  • Author
  • June 4, 2019

You can split the bounding box using a Tiler, but I think the only feasible way is to iterate through it, if you reach the limit on one tile, split it 2 x 2 and try again and so on.

Thanks @redgeographics I looked at the Tiler transforme. I cant find where to define the nembuer of features for tiling and also how to iterate it??