Opened 11 years ago
Closed 10 years ago
#637 closed defect (fixed)
GML domainSet to be correctly updated on WCS scaling operations
Reported by: | Piero Campalani | Owned by: | Piero Campalani |
---|---|---|---|
Priority: | major | Milestone: | Future |
Component: | petascope | Version: | development |
Keywords: | scale grid envelope | Cc: | |
Complexity: | Medium |
Description
Grid envelopes need to be properly synchronized with scaling operations.
E.g. scaling along an axis i
with half the cardinality of the coverage along i
will half the grid envelope (though not changing the bounding box).
WCS systemtests (n.9, n.10, n.11, n.12) are currently not valid responses.
E.g. for systemtest n.9 :
service=WCS& version=2.0.1& request=GetCoverage& coverageId=mr& scalefactor=2.0
..the oracle should look like:
<boundedBy> <Envelope srsName="/crs/OGC/0/Index2D" axisLabels="i j" uomLabels="GridSpacing GridSpacing" srsDimension="2"> <lowerCorner>0 0</lowerCorner> <upperCorner>255 210</upperCorner> </Envelope> </boundedBy> <domainSet> <RectifiedGrid dimension="2" id="mr-grid"> <limits> <GridEnvelope> <low>0 0</low> --- <high>255 210</high> +++ <high>127 105</high> ...
Change History (3)
comment:1 by , 11 years ago
comment:3 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Fixed in changeset:81d7fca.
The BBOX is not scaled, while the length of grid dimensions are: even though the Index CRS example is quite tricky, still the BBOX shall not be scaled on scaling operations: only the grid domain is.
1)Why not change the <boundedBy>? Since the returned Feature's bounding box is actually changed.
2)And the defect exists also in image/tiff response.