- add webgis: overview of all oai datasets via mocking service

This commit is contained in:
Arno Kaimbacher 2022-01-27 17:17:40 +01:00
parent 5fe134a650
commit 745c3e1349
8 changed files with 2142 additions and 55 deletions

11
src/models/oai.ts Normal file
View file

@ -0,0 +1,11 @@
export interface OaiDataset {
doi: string;
title: string;
creator: string;
contributor: string;
subject: string;
north: number;
south: number;
east: number;
west: number;
}