- implemented spatial filtering
All checks were successful
CI Pipeline / japa-tests (push) Successful in 51s

- Component 'draw.component.vue' has been extended with the 'preserve' property to control whether the drawn rectangle disappears again
- npm updates
This commit is contained in:
Kaimbacher 2023-10-23 15:27:39 +02:00
parent 2360a81d1e
commit 7bc9f90cca
6 changed files with 637 additions and 448 deletions

View file

@ -106,3 +106,33 @@ export interface Coverage {
time_max?: number;
time_absolut?: number;
}
export interface OpensearchDocument {
abstract_additional: Array<string>;
abstract_output: string;
author: Array<string>;
author_sort: Array<string>;
belongs_to_bibliography: boolean;
creating_corporation: string;
doctype: string;
geo_location: string;
id: number;
identifier: Identifier;
language: string;
licence: string;
publisher_name: string;
server_date_published: Array<number>;
subject: Array<string>;
title_output: string;
year: number;
year_inverted: number;
}
export interface Identifier {
created_at: string;
dataset_id: number;
id: number;
status: string; //'findable'
type: string; //'doi'
updated_at: string; //'2023-03-09T09:48:28.000Z'
value: string; //'10.24341/tethys.209'
}