-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to query larger tiles than the default max size with stepWidth/… #60031
Conversation
…stepHeight in case the WMS does not have a max tile size constraint
for more information, see https://pre-commit.ci
🪟 Windows buildsDownload Windows builds of this PR for testing. 🪟 Windows Qt6 buildsDownload Windows Qt6 builds of this PR for testing. |
Is the description of the "Request step size" parameter at https://docs.qgis.org/3.40/en/docs/user_manual/working_with_ogc/ogc_client_support.html#loading-wms-wmts-layers enough accurate or should/could it be enhanced in order to better clarify the exact behaviour? |
I think the description is accurate enough |
The QGIS project highly values your contribution and would love to see this work merged! Unfortunately this PR has not had any activity in the last 14 days and is being automatically marked as "stale". If you think this pull request should be merged, please check
|
While we hate to see this happen, this PR has been automatically closed because it has not had any activity in the last 21 days. If this pull request should be reconsidered, please follow the guidelines in the previous comment and reopen this pull request. Or, if you have any further questions, just ask! We love to help, and if there's anything the QGIS project can do to help push this PR forward please let us know how we can assist. |
QgsWMSCapabilities has mMaxWidth/mMaxHeight as the server width/height limit and mStepWidth/mStepHeight as raster size to iterate the layer. After commit 2078ef5#diff-d88af508cce11c2b59f0ad9c1ddb29824f7cce111807af3289eec2663930e39e , it is not possible anymore to make GetMap-Requests with step sizes larger than the default maximum tile size (2000x2000). This PR makes a small change to take the step width as size limit if there is no size limit set.