I am attempting to teach myself how to make a basic GetFeatureInfo request on a WMS (specifically from Geomet, GetCapabilities here). The following returns 400 Bad Request, and I'm not sure if it is a simple syntax error, or something more systematic.
Request:
Parameters:
SERVICE:WMS VERSION:1.1.1 REQUEST:GetFeatureInfo LAYERS:GDPS.ETA_GZ STYLES: SRS:EPSG:3857 BBOX:-20037508.342789244,5009377.085697313,-17532819.799940586,7514065.628545966 WIDTH:256 HEIGHT:256 QUERY_LAYERS:GDPS.ETA_GZ X:100 Y:100 On the other hand, the following similar GetMap request works:
Request:
Parameters:
SERVICE:WMS REQUEST:GetMap VERSION:1.1.1 LAYERS:GDPS.ETA_GZ STYLES: FORMAT:image/png TRANSPARENT:true HEIGHT:256 WIDTH:256 SRS:EPSG:3857 BBOX:-17532819.799940586,5009377.085697313,-15028131.257091932,7514065.628545966 The GetCapabilities document lists the GDPS.ETA_GZ layer's SRS as 4326, but I've attempted using lat/long coordinates, as well, to no avail.