Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@codemirror/state": "~6.5.2",
"@codemirror/view": "~6.38.1",
"@egjs/hammerjs": "^2.0.17",
"@geoengine/openapi-client": "git://github.com/geo-engine/openapi-client.git#backend_pixel_rewrite_v4",
"@geoengine/openapi-client": "github:geo-engine/openapi-client#ogc_apis_fix",
"d3": "~7.9.0",
"dagre": "~0.8.5",
"dagre-d3": "~0.6.4",
Expand Down
2 changes: 0 additions & 2 deletions projects/core/src/lib/backend/backend.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,6 @@ export interface WfsParamsDict {
resultType?: string;
filter?: string;
propertyName?: string;
// vendor parameter for specifying the spatial resolution
queryResolution?: number; // TODO: allow x and y seperately
}

export interface QuotaDict {
Expand Down
1 change: 0 additions & 1 deletion projects/core/src/lib/backend/backend.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ export class BackendService {
params.setMapped('bbox', request.bbox, (bbox) => bboxDictToExtent(bbox).join(','));
params.setMapped('time', request.time, (time) => `${unixTimestampToIsoString(time.start)}/${unixTimestampToIsoString(time.end)}`);
params.set('srsName', request.srsName);
params.setMapped('queryResolution', request.queryResolution, (r) => r.toString());

// these probably do not work yet
params.set('namespaces', request.namespaces);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,11 +360,8 @@ export class DownloadLayerComponent implements OnInit {

const time = this.formToTime().toDict();

const resolution = this.formToResolution().x;

return {
bbox: bbox,
queryResolution: resolution,
time: time,
srsName: sref.srsString,
workflowId: this.layer().workflowId,
Expand Down
2 changes: 1 addition & 1 deletion projects/core/src/lib/project/project.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ export class ProjectService implements OnDestroy {

const ogcWfsApi = await firstValueFrom(this.ogcWfsApi);

const wfsResponse = await ogcWfsApi.wfsFeatureHandler({
const wfsResponse = await ogcWfsApi.wfsHandler({
service: 'WFS',
version: '2.0.0',
request: 'GetFeature',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ export class DashboardComponent implements AfterViewInit, AfterContentInit {
start: time.start.unix() * 1_000,
end: time.end.unix() * 1_000,
},
queryResolution: CLASSIFICATION_RESOLUTION,
srsName: 'EPSG:32632',
};

Expand Down Expand Up @@ -335,8 +334,6 @@ const CLASSIFICATION_WORKFLOW: Workflow = {
operator: CLASSIFICATION_SOURCE_OP,
};

const CLASSIFICATION_RESOLUTION = 10;

const CLASSIFICIATION_DATA_RANGE = {
min: 0,
max: 5,
Expand Down