We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c25044 commit ef84531Copy full SHA for ef84531
geoengine/workflow.py
@@ -272,7 +272,8 @@ def plot_chart(self, bbox: QueryRectangle) -> VegaLite:
272
spatial_bounds = urllib.parse.quote(bbox.bbox_str)
273
resolution = str(f'{bbox.resolution[0]},{bbox.resolution[1]}')
274
275
- plot_url = f'{session.server_url}/plot/{self}?bbox={spatial_bounds}&crs={bbox.srs}&time={time}&spatialResolution={resolution}'
+ plot_url = f'{session.server_url}/plot/{self}?bbox={spatial_bounds}&crs={bbox.srs}&time={time}'\
276
+ f'&spatialResolution={resolution}'
277
278
response = req.get(plot_url, headers=session.auth_header)
279
0 commit comments