Currently WCS exports are done based on the width and height of the current map (eg 1000px by 600px )and resulting images don't represent the full resolution.
Instead of passing width and height parameters to the GetCoverage request we can send resx and resy specifying the required resolution, this is sent in decimal degrees.
Alternatively you can swap things across to Web Mercator
https://ows.dea.ga.gov.au/?service=WCS
&request=GetCoverage
&version=1.0.0
&format=GeoTIFF
&crs=EPSG:3857 <---- set me to web mercator
&resx=10&resy=10 <---- set me a sensible resolution
&coverage=s2_ard_granule_nbar_t
&bbox=13568816.053,-2037026.831,13645455.457,-1994181.130 <---- set bbox to web mercator
&time=2019-10-06T00%3A00%3A00.000Z
&styles=infrared_green
Currently WCS exports are done based on the width and height of the current map (eg 1000px by 600px )and resulting images don't represent the full resolution.
Instead of passing
width
andheight
parameters to theGetCoverage
request we can sendresx
andresy
specifying the required resolution, this is sent in decimal degrees.Alternatively you can swap things across to Web Mercator
I think the later is preferable