Skip to content

Commit

Permalink
don't enforce WMS 1.1.1 in WMS queries for BP exports (#738)
Browse files Browse the repository at this point in the history
baseMap uses geopf since 8d75eb2 and par
https://geoservices.ign.fr/bascule-vers-la-geoplateforme the service doesn't
support this deprecated version, only 1.3.0

no regression on BP exports after light testing, using cadastre layer coming
from mapproxy and plot layer with SLD_BODY coming from geoserver
  • Loading branch information
landryb authored Jan 18, 2024
1 parent 8d75eb2 commit 008bda5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public class ImageParcelleController extends CadController {
static final Logger logger = LoggerFactory.getLogger(ImageParcelleController.class);

private final String URL_GET_CAPABILITIES = "?REQUEST=GetCapabilities&version=1.0.0";
private final String URL_GET_CAPABILITIES_WMS = "?VERSION=1.1.1&Request=GetCapabilities&Service=WMS";
private final String URL_GET_CAPABILITIES_WMS = "?Request=GetCapabilities&Service=WMS";

// buffer ratio
final private double MAX_PERIMETER = 2000;
Expand Down

0 comments on commit 008bda5

Please sign in to comment.