From 745c3e1349ebeebbfc7fabe1da9af06974d65141 Mon Sep 17 00:00:00 2001 From: Arno Kaimbacher Date: Thu, 27 Jan 2022 17:17:40 +0100 Subject: [PATCH] - add webgis: overview of all oai datasets via mocking service --- src/App.vue | 4 +- src/assets/scss/main-styles.scss | 3 +- src/components/map/map.component.ts | 97 +- src/components/map/map.component.vue | 39 +- src/models/oai.ts | 11 + src/services/dataset.service.ts | 15 +- src/services/mock-oai-datasets.ts | 1918 +++++++++++++++++++++ src/views/map-view/map-view.component.vue | 110 +- 8 files changed, 2142 insertions(+), 55 deletions(-) create mode 100644 src/models/oai.ts create mode 100644 src/services/mock-oai-datasets.ts diff --git a/src/App.vue b/src/App.vue index eda6025..494e6ea 100644 --- a/src/App.vue +++ b/src/App.vue @@ -37,9 +37,9 @@ HELP - + diff --git a/src/assets/scss/main-styles.scss b/src/assets/scss/main-styles.scss index 3a8ba30..4110fe8 100644 --- a/src/assets/scss/main-styles.scss +++ b/src/assets/scss/main-styles.scss @@ -49,10 +49,11 @@ $table-striped-row-even-hover-background-color: #ecf2fa; @import "~bulma/sass/helpers/_all.sass"; @import "~bulma/sass/components/navbar.sass"; // @import "~bulma/sass/components/tabs.sass"; -@import "~bulma/sass/components/media.sass"; +// @import "~bulma/sass/components/media.sass"; @import "~bulma/sass/components/modal.sass"; @import "~bulma/sass/components/card.sass"; + @import "~bulma/sass/components/panel.sass"; @import "~bulma/sass/layout/_all.sass"; diff --git a/src/components/map/map.component.ts b/src/components/map/map.component.ts index 1f7484b..2b8de83 100644 --- a/src/components/map/map.component.ts +++ b/src/components/map/map.component.ts @@ -1,11 +1,14 @@ import { Options, Vue } from "vue-class-component"; -import { Prop } from "vue-property-decorator"; -import { Map, MapOptions, tileLayer } from "leaflet"; +import { Prop, Emit } from "vue-property-decorator"; +import { LatLng, LatLngBounds, Map, MapOptions, Rectangle, tileLayer } from "leaflet"; import { LayerOptions } from "./map-options"; +import DatasetService from "../../services/dataset.service"; +import { Subscription } from "rxjs"; +import { OaiDataset } from "@/models/oai"; const DEFAULT_BASE_LAYER_NAME = "BaseLayer"; // const DEFAULT_BASE_LAYER_URL = "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"; -const DEFAULT_BASE_LAYER_ATTRIBUTION = '© OpenStreetMap contributors'; +const DEFAULT_BASE_LAYER_ATTRIBUTION = '© Basemap.at, Geologie.ac.at'; @Options({ // selector: "app-map", @@ -32,9 +35,18 @@ export default class MapComponent extends Vue { @Prop() public mapOptions!: MapOptions; + /** + * Informs when initialization is done with map id. + */ + // @Emit("search-change") + // public onMapInitializedEvent: EventEmitter = new EventEmitter(); + // protected oldBaseLayer: Control.LayersObject = {}; protected map!: Map; // protected zoomControl!: Control.Zoom; + private subscriptions: Array = []; + private error = ""; + private tethys!: Array; public beforeMount(): void { if (this.mapId === undefined || this.mapId === null) { @@ -42,15 +54,73 @@ export default class MapComponent extends Vue { } } + public mounted(): void { + this.initMap(); + } + + beforeUnmount(): void { + //unsunscribe to ensure no memory leaks + // this.subscription.unsubscribe(); + for (const sub of this.subscriptions) { + sub.unsubscribe(); + } + } protected initMap(): void { this.map = new Map(this.mapId, this.mapOptions); // this.mapService.setMap(this.mapId, this.map); // this.onMapInitializedEvent.emit(this.mapId); this.addBaseMap(); + + const newSubs = DatasetService.getOAI().subscribe( + (res: Array) => { + this.tethys = res; + this.map.createPane("bottom"); + // this.map.getPane('bottom').style.zIndex = "550"; + this.map.createPane("top"); + // this.map.getPane('top').style.zIndex = "650"; + + for (let index = 0; index < this.tethys.length; index++) { + this.addPolygon(index); + } + }, + (error: string) => this.errorHandler(error), + ); + this.subscriptions.push(newSubs); + } + + private errorHandler(err: string): void { + this.error = err; + // this.loading = false; + } + + private addPolygon(i: number) { + const southWest = new LatLng(this.tethys[i].south, this.tethys[i].west), + northEast = new LatLng(this.tethys[i].north, this.tethys[i].east); + + const bounds = new LatLngBounds(southWest, northEast); + + const bW = this.tethys[i].east - this.tethys[i].west; + + new Rectangle(bounds, { + color: /GEOFAST/g.test(this.tethys[i].title) ? "red" : "green", + fill: bW > 0.3 ? false : true, + weight: bW > 0.3 || bW < 0.03 ? 3 : 1, + pane: bW > 0.2 ? "bottom" : "top", + }).addTo(this.map).bindPopup(`

DOI: ${this.tethys[i].doi} +
${this.tethys[i].title}
+ publ.: ${this.tethys[i].creator}
+ und ${this.tethys[i].contributor} +

`); } private addBaseMap(layerOptions?: LayerOptions): void { if (this.map) { + const map = this.map.setView([47.7, 13.5], 7); + const southWest = new LatLng(46.5, 9.9), + northEast = new LatLng(48.9, 16.9), + bounds = new LatLngBounds(southWest, northEast); + // zoom the map to that bounding box + map.fitBounds(bounds); // let tiles = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { // maxZoom: 18, // minZoom: 3, @@ -60,10 +130,20 @@ export default class MapComponent extends Vue { const layerOptions = { label: DEFAULT_BASE_LAYER_NAME, visible: true, - layer: tileLayer.wms("https://ows.terrestris.de/osm-gray/service", { - format: "image/png", + // layer: tileLayer.wms("https://ows.terrestris.de/osm-gray/service", { + // format: "image/png", + // attribution: DEFAULT_BASE_LAYER_ATTRIBUTION, + // layers: "OSM-WMS", + // }), + // tileLayer.provider("BasemapAT.grau") + layer: tileLayer("https://maps{s}.wien.gv.at/basemap/bmapgrau/normal/google3857/{z}/{y}/{x}.png", { + subdomains: ["", "1", "2", "3", "4"], attribution: DEFAULT_BASE_LAYER_ATTRIBUTION, - layers: "OSM-WMS", + bounds: [ + [46.35877, 8.782379], + [49.037872, 17.189532], + ], + detectRetina: false, }), // layer: new TileLayer(DEFAULT_BASE_LAYER_URL, { // attribution: DEFAULT_BASE_LAYER_ATTRIBUTION @@ -81,9 +161,4 @@ export default class MapComponent extends Vue { } return s4() + s4() + "-" + s4() + "-" + s4() + "-" + s4() + "-" + s4() + s4() + s4(); } - - mounted(): void { - // alert("Hello World!"); - this.initMap(); - } } diff --git a/src/components/map/map.component.vue b/src/components/map/map.component.vue index 80f0019..a71f578 100644 --- a/src/components/map/map.component.vue +++ b/src/components/map/map.component.vue @@ -1,5 +1,9 @@ diff --git a/src/models/oai.ts b/src/models/oai.ts new file mode 100644 index 0000000..9eef317 --- /dev/null +++ b/src/models/oai.ts @@ -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; +} diff --git a/src/services/dataset.service.ts b/src/services/dataset.service.ts index 45ab5a4..a3ccf8e 100644 --- a/src/services/dataset.service.ts +++ b/src/services/dataset.service.ts @@ -1,11 +1,13 @@ import api from "../api/api"; -import { Observable } from "rxjs"; +import { Observable, of } from "rxjs"; import { map } from "rxjs/operators"; import { Dataset, DbDataset, Suggestion } from "@/models/dataset"; import { SolrResponse } from "@/models/headers"; import { ActiveFilterCategories } from "@/models/solr"; import { VUE_APP_PORTAL } from "@/constants"; import { deserialize, instanceToInstance } from "class-transformer"; +import { OAI_DATASETS } from "./mock-oai-datasets"; +import { OaiDataset } from "@/models/oai"; class DatasetService { // for the autocomplete search @@ -173,6 +175,17 @@ class DatasetService { return dataset; } + public getOAI(): Observable { + //const host = "https://resource.geolba.net/tethys/harvestOAI.php"; + // const path = "/api/dataset/" + id; + // const apiUrl = host + path; + // const oaiDataset = api.get(apiUrl); + const oaiDatasets = of(OAI_DATASETS); + + // this.messageService.add('HeroService: fetched heroes'); + return oaiDatasets; + } + private prepareDataset(datasetObj: DbDataset, apiUrl: string): DbDataset { const dataset = deserialize(DbDataset, JSON.stringify(datasetObj)); dataset.url = document.documentURI; diff --git a/src/services/mock-oai-datasets.ts b/src/services/mock-oai-datasets.ts new file mode 100644 index 0000000..829c69d --- /dev/null +++ b/src/services/mock-oai-datasets.ts @@ -0,0 +1,1918 @@ +import { OaiDataset } from "@/models/oai"; + +export const OAI_DATASETS: OaiDataset[] = [ + { + doi: "10.24341/tethys.1", + title: "GEOFAST 1:50.000, Blatt 53 – Amstetten, Stand 2019", + creator: "Moser, M; Linner, M; ", + contributor: "Pavlik, W; Bayer, I; Stöckl, W; ", + subject: "Vektordaten, Kompilation, Kartenwerk, Niederösterreich", + north: 47.996492, + south: 48.253491, + east: 15.09176, + west: 14.826144, + }, + { + doi: "10.24341/tethys.2", + title: "Datensatz Radenthein-Nordost (1:25.000)", + creator: "Iglseder, C; Knoll, T; Huet, B; van Husen, D; Schönlaub, H; ", + contributor: "Stöckl, W; Ruthner, J; Schiegl, M; ", + subject: "Vektordaten, Kartenserie, Steiermark, Kärnten, Salzburg, GK25", + north: 47, + south: 46.9, + east: 14, + west: 13.833333, + }, + { + doi: "10.24341/tethys.3", + title: "Datensatz Radenthein-Südost (1:25.000)", + creator: "Iglseder, C; Huet, B; van Husen, D; Schönlaub, H; ", + contributor: "Stöckl, W; Ruthner, J; Schiegl, M; ", + subject: "Vektordaten, Kartenserie, Kärnten, GK25", + north: 46.9, + south: 46.8, + east: 14, + west: 13.833333, + }, + { + doi: "10.24341/tethys.4", + title: "Kartendaten 102 Aflenz Kurort (1:50.000)", + creator: "Bryda, G; ", + contributor: "Ruthner, J; Stöckl, W; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK50", + north: 47.7495175044698, + south: 47.4995384116009, + east: 15.3323230027887, + west: 15.0823385696285, + }, + { + doi: "10.24341/tethys.5", + title: "Geoelektrisches Monitoring - Hangrutschung Ampflwang (OÖ)", + creator: "Ottowitz, D; Jochum, B; Pfeiler, S; Römer, A; Supper, R; ", + contributor: "", + subject: "electrical resistivity, infiltration processes, Geomon4D", + north: 48.102, + south: 48.0985, + east: 13.562, + west: 13.554, + }, + { + doi: "10.24341/tethys.6", + title: "Geodaten - Blatt 71 Ybbsitz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; Haider, V; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, Steiermark, GK 50", + north: 48, + south: 47.75, + east: 15.0833333333333, + west: 14.8333333333333, + }, + { + doi: "10.24341/tethys.7", + title: "Geodaten - Blatt 7 Groß Siegharts (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 49, + south: 48.75, + east: 15.5833333333333, + west: 15.3333333333333, + }, + { + doi: "10.24341/tethys.8", + title: "Geodaten - Blatt 9 Retz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 49, + south: 48.75, + east: 16.0833333333333, + west: 15.8333333333333, + }, + { + doi: "10.24341/tethys.9", + title: "Geodaten - Blatt 12 Passau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Oberösterreich", + north: 48.75, + south: 48.5, + east: 13.5833333333333, + west: 13.3333333333333, + }, + { + doi: "10.24341/tethys.10", + title: "Geodaten - Blatt 22 Hollabrunn (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48.75, + south: 48.5, + east: 16.0833333333333, + west: 15.8333333333333, + }, + { + doi: "10.24341/tethys.11", + title: "Geodaten - Blatt 17 Bad Großpertholz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Oberösterreich", + north: 48.75, + south: 48.5, + east: 14.8333333333333, + west: 14.5833333333333, + }, + { + doi: "10.24341/tethys.12", + title: "Geodaten - Blatt 18 Weitra (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Oberösterreich", + north: 48.75, + south: 48.5, + east: 15.0833333333333, + west: 14.8333333333333, + }, + { + doi: "10.24341/tethys.13", + title: "Geodaten - Blatt 19 Zwettl (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48.75, + south: 48.5, + east: 15.3333333333333, + west: 15.0833333333333, + }, + { + doi: "10.24341/tethys.14", + title: "Geodaten - Blatt 8 Geras (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Tschechische Republik", + north: 49, + south: 48.75, + east: 15.8333333333333, + west: 15.5833333333333, + }, + { + doi: "10.24341/tethys.15", + title: "Geodaten - Blatt 16 Freistadt (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Oberösterreich, Tschechische Republik", + north: 48.75, + south: 48.5, + east: 14.5833333333333, + west: 14.3333333333333, + }, + { + doi: "10.24341/tethys.16", + title: "Geodaten - Blatt 20 Gföhl (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Kartenserie, GK 50, Vektordaten, Niederösterreich", + north: 48.75, + south: 48.5, + east: 15.5833333333333, + west: 15.3333333333333, + }, + { + doi: "10.24341/tethys.17", + title: "Geodaten - Blatt 23 Hadres (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Tschechische Republik", + north: 48.75, + south: 48.5, + east: 16.3333333333333, + west: 16.0833333333333, + }, + { + doi: "10.24341/tethys.18", + title: "Geodaten - Blatt 33 Steyregg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Oberösterreich", + north: 48.5, + south: 48.25, + east: 14.5833333333333, + west: 14.3333333333333, + }, + { + doi: "10.24341/tethys.19", + title: "Geodaten - Blatt 34 Perg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Oberösterreich", + north: 48.5, + south: 48.25, + east: 14.8333333333333, + west: 14.5833333333333, + }, + { + doi: "10.24341/tethys.20", + title: "Geodaten - Blatt 35 Königswiesen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Oberösterreich", + north: 48.5, + south: 48.25, + east: 15.0833333333333, + west: 14.8333333333333, + }, + { + doi: "10.24341/tethys.21", + title: "Geodaten - Blatt 36 Ottenschlag (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48.5, + south: 48.25, + east: 15.3333333333333, + west: 15.0833333333333, + }, + { + doi: "10.24341/tethys.22", + title: "Geodaten - Blatt 37 Mautern an der Donau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48.5, + south: 48.25, + east: 15.5833333333333, + west: 15.3333333333333, + }, + { + doi: "10.24341/tethys.23", + title: "Geodaten - Blatt 38 Krems an der Donau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48.5, + south: 48.25, + east: 15.8333333333333, + west: 15.5833333333333, + }, + { + doi: "10.24341/tethys.24", + title: "Geodaten - Blatt 39 Tulln (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48.5, + south: 48.25, + east: 16.0833333333333, + west: 15.833333333, + }, + { + doi: "10.24341/tethys.25", + title: "Geodaten - Blatt 47 Ried im Innkreis (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Oberösterreich", + north: 48.25, + south: 48, + east: 13.5833333333333, + west: 13.3333333333333, + }, + { + doi: "10.24341/tethys.26", + title: "Geodaten - Blatt 49 Wels (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Oberösterreich", + north: 48.25, + south: 48, + east: 14.0833333333333, + west: 13.8333333333333, + }, + { + doi: "10.24341/tethys.27", + title: "Geodaten - Blatt 56 Sankt Pölten (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48.25, + south: 48, + east: 15.833333333, + west: 15.583333333, + }, + { + doi: "10.24341/tethys.28", + title: "Geodaten - Blatt 55 Ober-Grafendorf (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48.25, + south: 48, + east: 15.5833333333333, + west: 15.3333333333333, + }, + { + doi: "10.24341/tethys.29", + title: "Geodaten - Blatt 58 Baden (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Wien", + north: 48.25, + south: 48, + east: 16.3333333333333, + west: 16.0833333333333, + }, + { + doi: "10.24341/tethys.30", + title: "Geodaten - Blatt 59 Wien (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Wien", + north: 48.25, + south: 48, + east: 16.5833333333333, + west: 16.3333333333333, + }, + { + doi: "10.24341/tethys.31", + title: "Geodaten - Blatt 60 Bruck an der Leitha (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Burgenland", + north: 48.25, + south: 48, + east: 16.8333333333333, + west: 16.5833333333333, + }, + { + doi: "10.24341/tethys.32", + title: "Geodaten - Blatt 65 Mondsee (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Salzburg, GK 50, Oberösterreich", + north: 48, + south: 47.75, + east: 13.5833333333333, + west: 13.3333333333333, + }, + { + doi: "10.24341/tethys.33", + title: "Geodaten - Blatt 64 Straßwalchen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Salzburg, GK 50, Oberösterreich", + north: 48, + south: 47.75, + east: 13.3333333333333, + west: 13.0833333333333, + }, + { + doi: "10.24341/tethys.34", + title: "Geodaten - Blatt 66 Gmunden (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Oberösterreich", + north: 48, + south: 47.75, + east: 13.8333333333333, + west: 13.5833333333333, + }, + { + doi: "10.24341/tethys.35", + title: "Geodaten - Blatt 67 Grünau im Almtal (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Oberösterreich", + north: 48, + south: 47.75, + east: 14.0833333333333, + west: 13.8333333333333, + }, + { + doi: "10.24341/tethys.36", + title: "Geodaten - Blatt 69 Großraming (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Oberösterreich", + north: 48, + south: 47.75, + east: 14.5833333333333, + west: 14.3333333333333, + }, + { + doi: "10.24341/tethys.37", + title: "Geodaten - Blatt 72 Mariazell (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Kartenserie, GK 50, Vektordaten, Niederösterreich, Steiermark", + north: 48, + south: 47.75, + east: 15.3333333333333, + west: 15.0833333333333, + }, + { + doi: "10.24341/tethys.38", + title: "Geodaten - Blatt 75 Puchberg am Schneeberg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50", + north: 48, + south: 47.75, + east: 16.0833333333333, + west: 15.8333333333333, + }, + { + doi: "10.24341/tethys.39", + title: "Geodaten - Blatt 76 Wiener Neustadt (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Burgenland", + north: 48, + south: 47.75, + east: 16.3333333333333, + west: 16.0833333333333, + }, + { + doi: "10.24341/tethys.40", + title: "Geodaten - Blatt 77 Eisenstadt (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Burgenland, Ungarn", + north: 48, + south: 47.75, + east: 16.5833333333333, + west: 16.3333333333333, + }, + { + doi: "10.24341/tethys.41", + title: "Geodaten - Blatt 78 Rust (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Burgenland, Ungarn", + north: 48, + south: 47.75, + east: 16.8333333333333, + west: 16.5833333333333, + }, + { + doi: "10.24341/tethys.42", + title: "Geodaten - Blatt 61 Hainburg an der Donau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, GK 50, Burgenland, Slowakische Republik", + north: 48.25, + south: 48, + east: 17.0833333333333, + west: 16.8333333333333, + }, + { + doi: "10.24341/tethys.43", + title: "Geodaten - Blatt 62 Preßburg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Ungarn, Slowakische Republik, Burgenland, Vektordaten, GK 50, Kartenserie", + north: 48.25, + south: 48, + east: 17.3333333333333, + west: 17.0833333333333, + }, + { + doi: "10.24341/tethys.44", + title: "Geodaten - Blatt 96 Bad Ischl (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK 50, Oberösterreich", + north: 47.75, + south: 47.5, + east: 13.8333333333333, + west: 13.5833333333333, + }, + { + doi: "10.24341/tethys.45", + title: "Geodaten - Blatt 104 Mürzzuschlag (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, Steiermark, GK 50", + north: 47.75, + south: 47.5, + east: 15.8333333333333, + west: 15.5833333333333, + }, + { + doi: "10.24341/tethys.46", + title: "Geodaten - Blatt 101 Eisenerz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, Steiermark, GK 50", + north: 47.75, + south: 47.5, + east: 15.0833333333333, + west: 14.8333333333333, + }, + { + doi: "10.24341/tethys.47", + title: "Geodaten - Blatt 105 Neunkirchen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, Steiermark, GK 50", + north: 47.75, + south: 47.5, + east: 16.0833333333333, + west: 15.8333333333333, + }, + { + doi: "10.24341/tethys.48", + title: "Geodaten - Blatt 94 Hallein (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Salzburg, GK 50, Bayern", + north: 47.75, + south: 47.5, + east: 13.3333333333333, + west: 13.0833333333333, + }, + { + doi: "10.24341/tethys.49", + title: "Geodaten - Blatt 106 Aspang-Markt (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, Steiermark, GK 50, Burgenland", + north: 47.75, + south: 47.5, + east: 16.3333333333333, + west: 16.0833333333333, + }, + { + doi: "10.24341/tethys.50", + title: "Geodaten - Blatt 88 Achenkirch (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Kartenserie, GK 50, Vektordaten, Tirol, Bayern", + north: 47.75, + south: 47.5, + east: 11.8333333333333, + west: 11.5833333333333, + }, + { + doi: "10.24341/tethys.51", + title: "Geodaten - Blatt 113 Mittelberg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Tirol, Vorarlberg, Bayern", + north: 47.5, + south: 47.25, + east: 10.3333333333333, + west: 10.0833333333333, + }, + { + doi: "10.24341/tethys.52", + title: "Geodaten - Blatt 117 Zirl (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Tirol, Bayern", + north: 47.5, + south: 47.25, + east: 11.3333333333333, + west: 11.0833333333333, + }, + { + doi: "10.24341/tethys.53", + title: "Geodaten - Blatt 122 Kitzbühel (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Salzburg, GK 50, Tirol", + north: 47.5, + south: 47.25, + east: 12.5833333333333, + west: 12.3333333333333, + }, + { + doi: "10.24341/tethys.54", + title: "Geodaten - Blatt 123 Zell am See (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Salzburg, GK 50, Tirol", + north: 47.5, + south: 47.25, + east: 12.8333333333333, + west: 12.5833333333333, + }, + { + doi: "10.24341/tethys.55", + title: "Geodaten - Blatt 127 Schladming (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, Salzburg, GK 50, Oberösterreich", + north: 47.5, + south: 47.25, + east: 13.8333333333333, + west: 13.5833333333333, + }, + { + doi: "10.24341/tethys.56", + title: "Geodaten - Blatt 129 Donnersbach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK 50", + north: 47.5, + south: 47.25, + east: 14.3333333333333, + west: 14.0833333333333, + }, + { + doi: "10.24341/tethys.57", + title: "Geodaten - Blatt 134 Passail (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK 50", + north: 47.5, + south: 47.25, + east: 15.5833333333333, + west: 15.3333333333333, + }, + { + doi: "10.24341/tethys.58", + title: "Geodaten - Blatt 135 Birkfeld (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK 50", + north: 47.5, + south: 47.25, + east: 15.8333333333333, + west: 15.5833333333333, + }, + { + doi: "10.24341/tethys.59", + title: "Geodaten - Blatt 137 Oberwart (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Niederösterreich, Kartenserie, Steiermark, GK 50, Burgenland", + north: 47.5, + south: 47.25, + east: 16.3333333333333, + west: 16.0833333333333, + }, + { + doi: "10.24341/tethys.60", + title: "Geodaten - Blatt 138 Rechnitz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Burgenland, Ungarn", + north: 47.5, + south: 47.25, + east: 16.5833333333333, + west: 16.3333333333333, + }, + { + doi: "10.24341/tethys.61", + title: "Geodaten - Blatt 79 Neusiedl am See (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Burgenland, Ungarn", + north: 48, + south: 47.75, + east: 17.0833333333333, + west: 16.8333333333333, + }, + { + doi: "10.24341/tethys.62", + title: "Geodaten - Blatt 95 Sankt Wolfgang im Salzkammergut (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Salzburg, GK 50, Oberösterreich", + north: 47.75, + south: 47.5, + east: 13.5833333333333, + west: 13.3333333333333, + }, + { + doi: "10.24341/tethys.63", + title: "Geodaten - Blatt 139 Lutzmannsburg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Burgenland, Ungarn", + north: 47.5, + south: 47.25, + east: 16.8333333333333, + west: 16.5833333333333, + }, + { + doi: "10.24341/tethys.64", + title: "Geodaten - Blatt 80 Ungarisch Altenburg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Burgenland, Vektordaten, GK 50, Kartenserie", + north: 48, + south: 47.75, + east: 17.3333333333333, + west: 17.0833333333333, + }, + { + doi: "10.24341/tethys.65", + title: "Geodaten - Blatt 152 Matrei in Osttirol (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Salzburg, GK 50, Tirol", + north: 47.25, + south: 47, + east: 12.5833333333333, + west: 12.3333333333333, + }, + { + doi: "10.24341/tethys.66", + title: "Geodaten - Blatt 148 Brenner (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Tirol, Südtirol", + north: 47.25, + south: 47, + east: 11.5833333333333, + west: 11.3333333333333, + }, + { + doi: "10.24341/tethys.67", + title: "Geodaten - Blatt 144 Landeck (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Tirol, Südtirol", + north: 47.25, + south: 47, + east: 10.5833333333333, + west: 10.3333333333333, + }, + { + doi: "10.24341/tethys.68", + title: "Geodaten - Blatt 109 Pamhagen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Burgenland, Vektordaten, GK 50, Kartenserie", + north: 47.75, + south: 47.5, + east: 17.0833333333333, + west: 16.8333333333333, + }, + { + doi: "10.24341/tethys.69", + title: "Geodaten - Blatt 151 Krimml (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Salzburg, GK 50, Tirol, Südtirol", + north: 47.25, + south: 47, + east: 12.3333333333333, + west: 12.0833333333333, + }, + { + doi: "10.24341/tethys.70", + title: "Geodaten - Blatt 153 Großglockner (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Kärnten, Salzburg, GK 50, Tirol", + north: 47.25, + south: 47, + east: 12.8333333333333, + west: 12.5833333333333, + }, + { + doi: "10.24341/tethys.71", + title: "Geodaten - Blatt 156 Muhr (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Kärnten, Salzburg, GK 50", + north: 47.25, + south: 47, + east: 13.5833333333333, + west: 13.3333333333333, + }, + { + doi: "10.24341/tethys.72", + title: "Geodaten - Blatt 164 Graz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK 50", + north: 47.25, + south: 47, + east: 15.5833333333333, + west: 15.3333333333333, + }, + { + doi: "10.24341/tethys.73", + title: "Geodaten - Blatt 167 Güssing (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK 50, Burgenland, Ungarn", + north: 47.25, + south: 47, + east: 16.3333333333333, + west: 16.0833333333333, + }, + { + doi: "10.24341/tethys.74", + title: "Geodaten - Blatt 175 Sterzing (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Tirol, Südtirol", + north: 47, + south: 46.75, + east: 11.5833333333333, + west: 11.3333333333333, + }, + { + doi: "10.24341/tethys.75", + title: "Geodaten - Blatt 179 Lienz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Kärnten, GK 50, Tirol", + north: 47, + south: 46.75, + east: 12.8333333333333, + west: 12.5833333333333, + }, + { + doi: "10.24341/tethys.76", + title: "Geodaten - Blatt 182 Spittal an der Drau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Kärnten, GK 50", + north: 47, + south: 46.75, + east: 13.5833333333333, + west: 13.3333333333333, + }, + { + doi: "10.24341/tethys.77", + title: "Geodaten - Blatt 183 Radenthein (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, Kärnten, Salzburg, GK 50", + north: 47, + south: 46.75, + east: 13.8333333333333, + west: 13.5833333333333, + }, + { + doi: "10.24341/tethys.78", + title: "Geodaten - Blatt 157 Tamsweg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Kärnten, Salzburg, GK 50", + north: 47.25, + south: 47, + east: 13.8333333333333, + west: 13.5833333333333, + }, + { + doi: "10.24341/tethys.79", + title: "Geodaten - Blatt 169 Gaschurn (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Vorarlberg, Schweiz", + north: 47, + south: 46.75, + east: 10.0833333333333, + west: 9.83333333333333, + }, + { + doi: "10.24341/tethys.80", + title: "Geodaten - Blatt 170 Galtür (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Tirol, Vorarlberg, Schweiz", + north: 47, + south: 46.75, + east: 10.3333333333333, + west: 10.0833333333333, + }, + { + doi: "10.24341/tethys.81", + title: "Geodaten - Blatt 163 Voitsberg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK 50", + north: 47.25, + south: 47, + east: 15.3333333333333, + west: 15.0833333333333, + }, + { + doi: "10.24341/tethys.82", + title: "Geodaten - Blatt 186 Sankt Veit an der Glan (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, Kärnten, GK 50", + north: 47, + south: 46.75, + east: 14.5833333333333, + west: 14.3333333333333, + }, + { + doi: "10.24341/tethys.83", + title: "Geodaten - Blatt 187 Bad Sankt Leonhard im Lavanttal (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, Kärnten, GK 50", + north: 47, + south: 46.75, + east: 14.8333333333333, + west: 14.5833333333333, + }, + { + doi: "10.24341/tethys.84", + title: "Geodaten - Blatt 188 Wolfsberg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, Kärnten, GK 50", + north: 47, + south: 46.75, + east: 15.0833333333333, + west: 14.8333333333333, + }, + { + doi: "10.24341/tethys.85", + title: "Geodaten - Blatt 189 Deutschlandsberg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Steiermark, GK 50", + north: 47, + south: 46.75, + east: 15.3333333333333, + west: 15.0833333333333, + }, + { + doi: "10.24341/tethys.86", + title: "Geodaten - Blatt 195 Sillian (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, GK 50, Tirol, Südtirol, Belluno", + north: 46.75, + south: 46.5, + east: 12.5833333333333, + west: 12.3333333333333, + }, + { + doi: "10.24341/tethys.87", + title: "Geodaten - Blatt 196 Obertilliach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Vektordaten, Kartenserie, Kärnten, GK 50, Tirol, Belluno, Udine", + north: 46.75, + south: 46.5, + east: 12.8333333333333, + west: 12.5833333333333, + }, + { + doi: "10.24341/tethys.88", + title: "Geodaten - Blatt 198 Weißbriach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Udine, Kärnten, Vektordaten, GK 50, Kartenserie", + north: 46.75, + south: 46.5, + east: 13.3333333333333, + west: 13.0833333333333, + }, + { + doi: "10.24341/tethys.89", + title: "Geodaten - Blatt 199 Hermagor (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Udine, Kärnten, Vektordaten, GK 50, Kartenserie", + north: 46.75, + south: 46.5, + east: 13.5833333333333, + west: 13.3333333333333, + }, + { + doi: "10.24341/tethys.90", + title: "Geodaten - Blatt 197 Kötschach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Udine, Tirol, Kärnten, Vektordaten, GK 50, Kartenserie", + north: 46.75, + south: 46.5, + east: 13.0833333333333, + west: 12.8333333333333, + }, + { + doi: "10.24341/tethys.91", + title: "Geodaten - Blatt 205 Sankt Paul im Lavanttal (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Steiermark, Kärnten, Vektordaten, GK 50, Kartenserie", + north: 46.75, + south: 46.5, + east: 15.0833333333333, + west: 14.8333333333333, + }, + { + doi: "10.24341/tethys.92", + title: "Geodaten - Blatt 208 Mureck (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Steiermark, Vektordaten, GK 50, Kartenserie", + north: 46.75, + south: 46.5, + east: 15.8333333333333, + west: 15.5833333333333, + }, + { + doi: "10.24341/tethys.93", + title: "Geodaten - Blatt 206 Eibiswald (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Slowenien, Steiermark, Vektordaten, GK 50, Kartenserie", + north: 46.75, + south: 46.5, + east: 15.3333333333333, + west: 15.0833333333333, + }, + { + doi: "10.24341/tethys.94", + title: "Geodaten - Blatt 209 Bad Radkersburg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Stöckl, W; Ranftl, E; ", + subject: "Slowenien, Steiermark, Vektordaten, GK 50, Kartenserie", + north: 46.75, + south: 46.5, + east: 16.0833333333333, + west: 15.8333333333333, + }, + { + doi: "10.24341/tethys.95", + title: "Geodaten der Rohstoffbezirke und geochemische Analysen österreichischer Löss- und Lösslehmvorkommen", + creator: "Rabeder, J; Reitner, H; Wimmer-Frey, I; Benold, C; Heinrich, M; Hobiger, G; Reitner, J; Filzmoser, P; Mert, M; ", + contributor: "Geringer, A; ", + subject: "Ziegelrohstoff, Tonrohstoff, Quartär, Spurenelemente, Hauptelemente, Oberösterreich, Niederösterreich", + north: 48.8846054077148, + south: 47.7127075195313, + east: 16.9226627349854, + west: 12.9134817123413, + }, + { + doi: "10.24341/tethys.96", + title: "Geodaten zu GEOFAST - Blatt 204 Völkermarkt (1:50:000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Steinbichler, M; Bayer, I; ", + subject: "Slowenien, Kärnten, Vektordaten, Kompilation, Oberflächengeologie", + north: 46.74968204, + south: 46.49963881, + east: 14.83246074, + west: 14.58247679, + }, + { + doi: "10.24341/tethys.97", + title: "Geodaten zu GEOFAST - Blatt 99 Rottenmann (1:50:000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Kreuss, O; Steinbichler, M; Bayer, I; ", + subject: "Steiermark, Oberösterreich, Vektordaten, Kompilation, Oberflächengeologie", + north: 47.74955579, + south: 47.49951386, + east: 14.58247349, + west: 14.33244054, + }, + { + doi: "10.24341/tethys.98", + title: "Geodaten zu GEOFAST - Blatt 30 Neumarkt im Hausruckkreis (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Linner, M; Bayer, I; Steinbichler, M; ", + subject: "Oberösterreich, Vektordaten, Kompilation, Oberflächengeologie", + north: 48.49944452, + south: 48.24940203, + east: 13.83247799, + west: 13.58249024, + }, + { + doi: "10.24341/tethys.99", + title: "Geodaten zu GEOFAST - Blatt 31 Eferding (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Moser, M; Linner, M; ", + subject: "Oberösterreich, Vektordaten, Kompilation, Oberflächengeologie", + north: 48.49945831, + south: 48.24940872, + east: 14.08244038, + west: 13.83245373, + }, + { + doi: "10.24341/tethys.100", + title: "Geodaten zu GEOFAST - Blatt 40 Stockerau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Wien, Niederösterreich, Vektordaten, Kompilation, Oberflächengeologie", + north: 48.49952742, + south: 48.24948449, + east: 16.33213104, + west: 16.08214563, + }, + { + doi: "10.24341/tethys.101", + title: "Geodaten zu GEOFAST - Blatt 100 Hieflau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Steiermark, Oberösterreich, Oberflächengeologie", + north: 47.74956494, + south: 47.49952198, + east: 14.83239123, + west: 14.5824065, + }, + { + doi: "10.24341/tethys.102", + title: "Geodaten zu GEOFAST - Blatt 112 Bezau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Vorarlberg, Bayern, Oberflächengeologie", + north: 47.49945215, + south: 47.24940992, + east: 10.08305501, + west: 9.833074856, + }, + { + doi: "10.24341/tethys.103", + title: "Geodaten zu GEOFAST - Blatt 114 Holzgau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.49946582, + south: 47.24942351, + east: 10.58298629, + west: 10.33300574, + }, + { + doi: "10.24341/tethys.104", + title: "Geodaten zu GEOFAST - Blatt 115 Reutte (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Oberflächengeologie", + north: 47.49947269, + south: 47.24943043, + east: 10.83295199, + west: 10.58297124, + }, + { + doi: "10.24341/tethys.105", + title: "Geodaten zu GEOFAST - Blatt 116 Telfs (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Moser, M; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.49947978, + south: 47.24943741, + east: 11.08291772, + west: 10.83293228, + }, + { + doi: "10.24341/tethys.106", + title: "Geodaten zu GEOFAST - Blatt 118 Innsbruck (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Moser, M; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.49949407, + south: 47.24945161, + east: 11.58286033, + west: 11.33286467, + }, + { + doi: "10.24341/tethys.107", + title: "Geodaten zu GEOFAST - Blatt 119 Schwaz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Moser, M; ", + subject: "Vektordaten, Kompilation, Tirol, Oberflächengeologie", + north: 47.49950134, + south: 47.24945882, + east: 11.83283039, + west: 11.5828301, + }, + { + doi: "10.24341/tethys.108", + title: "Geodaten zu GEOFAST - Blatt 120 Wörgl (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Salzburg, Tirol, Oberflächengeologie", + north: 47.49950846, + south: 47.24946611, + east: 12.08278219, + west: 11.83279925, + }, + { + doi: "10.24341/tethys.109", + title: "Geodaten zu GEOFAST - Blatt 2 Kuschwarda (1:50:000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.76098375, + south: 48.74935122, + east: 13.83243746, + west: 13.82062645, + }, + { + doi: "10.24341/tethys.110", + title: "Geodaten zu GEOFAST - Blatt 3 Wallern (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.7728325, + south: 48.74935122, + east: 13.90522489, + west: 13.83243746, + }, + { + doi: "10.24341/tethys.111", + title: "Geodaten zu GEOFAST - Blatt 10 Wildendürnbach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberflächengeologie", + north: 48.81445227, + south: 48.7494433, + east: 16.58205733, + west: 16.41138107, + }, + { + doi: "10.24341/tethys.112", + title: "Geodaten zu GEOFAST - Blatt 11 Drasenhofen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberflächengeologie", + north: 48.79249128, + south: 48.7494433, + east: 16.68100483, + west: 16.58205353, + }, + { + doi: "10.24341/tethys.113", + title: "Geodaten zu GEOFAST - Blatt 13 Engelhartszell (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Linner, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.7493623, + south: 48.49937268, + east: 13.83245822, + west: 13.58248545, + }, + { + doi: "10.24341/tethys.114", + title: "Geodaten zu GEOFAST - Blatt 14 Rohrbach in Oberösterreich (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Linner, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.74940888, + south: 48.49938059, + east: 14.08242094, + west: 13.83243746, + }, + { + doi: "10.24341/tethys.115", + title: "Geodaten zu GEOFAST - Blatt 15 Bad Leonfelden (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Linner, M; Moser, M; Steinbichler, M; Bayer, I; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.60014278, + south: 48.49938858, + east: 14.33238636, + west: 14.08241193, + }, + { + doi: "10.24341/tethys.116", + title: "Geodaten zu GEOFAST - Blatt 24 Mistelbach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberflächengeologie", + north: 48.74950671, + south: 48.49946386, + east: 16.58207731, + west: 16.33209287, + }, + { + doi: "10.24341/tethys.117", + title: "Geodaten zu GEOFAST - Blatt 29 Schärding (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Moser, M; Linner, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.49943666, + south: 48.2493942, + east: 13.5825088, + west: 13.33253719, + }, + { + doi: "10.24341/tethys.118", + title: "Geodaten zu GEOFAST - Blatt 28 Altheim (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.32536785, + south: 48.24938644, + east: 13.33254588, + west: 13.08257539, + }, + { + doi: "10.24341/tethys.119", + title: "Geodaten zu GEOFAST - Blatt 27 Braunau am Inn (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.27732564, + south: 48.24938644, + east: 13.08257709, + west: 13.00925945, + }, + { + doi: "10.24341/tethys.120", + title: "Geodaten zu GEOFAST - Blatt 26 Hohenau an der March (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberflächengeologie", + north: 48.72435501, + south: 48.49948141, + east: 16.95500738, + west: 16.83202526, + }, + { + doi: "10.24341/tethys.121", + title: "Geodaten zu GEOFAST - Blatt 25 Poysdorf (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberflächengeologie", + north: 48.7495116, + south: 48.4994726, + east: 16.83204322, + west: 16.58205733, + }, + { + doi: "10.24341/tethys.122", + title: "Geodaten zu GEOFAST - Blatt 41 Deutsch Wagram (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Wien, Oberflächengeologie", + north: 48.49953613, + south: 48.24949314, + east: 16.58209707, + west: 16.33211144, + }, + { + doi: "10.24341/tethys.123", + title: "Geodaten zu GEOFAST - Blatt 42 Gänserndorf (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberflächengeologie", + north: 48.49954479, + south: 48.24950187, + east: 16.83206314, + west: 16.58207731, + }, + { + doi: "10.24341/tethys.124", + title: "Geodaten zu GEOFAST - Blatt 43 Marchegg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberflächengeologie", + north: 48.49954432, + south: 48.24951068, + east: 16.95725101, + west: 16.83204322, + }, + { + doi: "10.24341/tethys.125", + title: "Geodaten zu GEOFAST - Blatt 44 Ostermiething (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.15619202, + south: 48.02884794, + east: 12.83262726, + west: 12.74921503, + }, + { + doi: "10.24341/tethys.126", + title: "Geodaten zu GEOFAST - Blatt 45 Ranshofen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Salzburg, Oberösterreich, Oberflächengeologie", + north: 48.24944048, + south: 47.99941578, + east: 13.08259431, + west: 12.83261921, + }, + { + doi: "10.24341/tethys.127", + title: "Geodaten zu GEOFAST - Blatt 46 Mattighofen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Salzburg, Oberösterreich, Oberflächengeologie", + north: 48.2494583, + south: 47.99941578, + east: 13.33255989, + west: 13.08257709, + }, + { + doi: "10.24341/tethys.128", + title: "Geodaten zu GEOFAST - Blatt 48 Vöcklabruck (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.24947396, + south: 47.99943136, + east: 13.83249119, + west: 13.58250797, + }, + { + doi: "10.24341/tethys.129", + title: "Geodaten zu GEOFAST - Blatt 50 Bad Hall (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Oberösterreich, Oberflächengeologie", + north: 48.24948994, + south: 47.99944725, + east: 14.33242267, + west: 14.08243901, + }, + { + doi: "10.24341/tethys.130", + title: "Geodaten zu GEOFAST - Blatt 51 Steyr (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberösterreich, Oberflächengeologie", + north: 48.24949521, + south: 47.9994553, + east: 14.58238848, + west: 14.33240461, + }, + { + doi: "10.24341/tethys.131", + title: "Geodaten zu GEOFAST - Blatt 52 Sankt Peter in der Au (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Linner, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberösterreich, Oberflächengeologie", + north: 48.24950622, + south: 47.99946343, + east: 14.8323591, + west: 14.58237025, + }, + { + doi: "10.24341/tethys.132", + title: "Geodaten zu GEOFAST - Blatt 121 Neukirchen am Großvenediger (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Salzburg, Tirol, Oberflächengeologie", + north: 47.49952122, + south: 47.24947348, + east: 12.33274692, + west: 12.08275383, + }, + { + doi: "10.24341/tethys.133", + title: "Geodaten zu GEOFAST - Blatt 124 Saalfelden am Steinernen Meer (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Salzburg, Bayern, Oberflächengeologie", + north: 47.49954577, + south: 47.24949601, + east: 13.08264491, + west: 12.83266234, + }, + { + doi: "10.24341/tethys.134", + title: "Geodaten zu GEOFAST - Blatt 128 Gröbming (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Steiermark, Salzburg, Oberflächengeologie", + north: 47.49957003, + south: 47.24952711, + east: 14.0825094, + west: 13.83252608, + }, + { + doi: "10.24341/tethys.135", + title: "Geodaten zu GEOFAST - Blatt 136 Hartberg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Steiermark, Burgenland, Oberflächengeologie", + north: 47.49963611, + south: 47.24959292, + east: 16.0822399, + west: 15.83225123, + }, + { + doi: "10.24341/tethys.136", + title: "Geodaten zu GEOFAST - Blatt 132 Trofaiach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Steiermark, Oberflächengeologie", + north: 47.49960489, + south: 47.24955938, + east: 15.08237471, + west: 14.83238528, + }, + { + doi: "10.24341/tethys.137", + title: "Geodaten zu GEOFAST - Blatt 133 Leoben (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Steiermark, Oberflächengeologie", + north: 47.49961081, + south: 47.24956762, + east: 15.33235002, + west: 15.08235519, + }, + { + doi: "10.24341/tethys.138", + title: "Geodaten zu GEOFAST - Blatt 143 Sankt Anton am Arlberg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Vorarlberg, Oberflächengeologie", + north: 47.24942361, + south: 46.99944689, + east: 10.33303538, + west: 10.08305501, + }, + { + doi: "10.24341/tethys.139", + title: "Geodaten zu GEOFAST - Blatt 145 Imst (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Oberflächengeologie", + north: 47.24950212, + south: 46.99945969, + east: 10.83296706, + west: 10.58296604, + }, + { + doi: "10.24341/tethys.140", + title: "Geodaten zu GEOFAST - Blatt 146 Ötz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Oberflächengeologie", + north: 47.24950878, + south: 46.99946669, + east: 11.08293296, + west: 10.83295199, + }, + { + doi: "10.24341/tethys.141", + title: "Geodaten zu GEOFAST - Blatt 147 Axams (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Oberflächengeologie", + north: 47.24951625, + south: 46.99947375, + east: 11.33289889, + west: 11.08291772, + }, + { + doi: "10.24341/tethys.142", + title: "Geodaten zu GEOFAST - Blatt 73 Türnitz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Steiermark, Oberflächengeologie", + north: 47.99956051, + south: 47.74951745, + east: 15.58227864, + west: 15.33228615, + }, + { + doi: "10.24341/tethys.143", + title: "Geodaten zu GEOFAST - Blatt 74 Hohenberg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Steiermark, Oberflächengeologie", + north: 47.99956899, + south: 47.74952595, + east: 15.83223704, + west: 15.58225215, + }, + { + doi: "10.24341/tethys.144", + title: "Geodaten zu GEOFAST - Blatt 84 Jungholz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.62449974, + south: 47.49939248, + east: 10.58297124, + west: 10.33299825, + }, + { + doi: "10.24341/tethys.145", + title: "Geodaten zu GEOFAST - Blatt 85 Vils (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.62452822, + south: 47.49939248, + east: 10.83293676, + west: 10.5829635, + }, + { + doi: "10.24341/tethys.146", + title: "Geodaten zu GEOFAST - Blatt 54 Melk (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Linner, M; Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Niederösterreich, Oberflächengeologie", + north: 48.24952268, + south: 47.99947991, + east: 15.33228615, + west: 15.08230165, + }, + { + doi: "10.24341/tethys.147", + title: "Geodaten zu GEOFAST - Blatt 86 Ammerwald (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.59921919, + south: 47.4994081, + east: 11.08290233, + west: 10.83292951, + }, + { + doi: "10.24341/tethys.148", + title: "Geodaten zu GEOFAST - Blatt 87 Walchensee (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.62674062, + south: 47.49942227, + east: 11.58283731, + west: 11.33285774, + }, + { + doi: "10.24341/tethys.149", + title: "Geodaten zu GEOFAST - Blatt 125 Bischofshofen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Salzburg, Oberflächengeologie", + north: 47.49954637, + south: 47.24950368, + east: 13.33261099, + west: 13.08262821, + }, + { + doi: "10.24341/tethys.150", + title: "Geodaten zu GEOFAST - Blatt 89 Angath (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.628644, + south: 47.49943682, + east: 12.08276495, + west: 11.83277476, + }, + { + doi: "10.24341/tethys.151", + title: "Geodaten zu GEOFAST - Blatt 90 Kufstein (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Bayern, Oberflächengeologie", + north: 47.74948671, + south: 47.49944418, + east: 12.33273338, + west: 12.08274876, + }, + { + doi: "10.24341/tethys.152", + title: "Geodaten zu GEOFAST - Blatt 92 Lofer (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Salzburg, Tirol, Bayern, Oberflächengeologie", + north: 47.69133056, + south: 47.49945919, + east: 12.83267144, + west: 12.5826844, + }, + { + doi: "10.24341/tethys.153", + title: "Geodaten zu GEOFAST - Blatt 91 Sankt Johann in Tirol (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Salzburg, Tirol, Oberflächengeologie", + north: 47.69889151, + south: 47.49945165, + east: 12.58269648, + west: 12.33270436, + }, + { + doi: "10.24341/tethys.154", + title: "Geodaten zu GEOFAST - Blatt 93 Bad Reichenhall (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Salzburg, Bayern, Oberflächengeologie", + north: 47.74950937, + south: 47.49946673, + east: 13.08262821, + west: 12.83263819, + }, + { + doi: "10.24341/tethys.155", + title: "Geodaten zu GEOFAST - Blatt 98 Liezen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Steiermark, Oberösterreich, Oberflächengeologie", + north: 47.74954582, + south: 47.49950578, + east: 14.33246155, + west: 14.08246207, + }, + { + doi: "10.24341/tethys.156", + title: "Geodaten zu GEOFAST - Blatt 149 Lanersbach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Südtirol, Oberflächengeologie", + north: 47.24952972, + south: 46.9994881, + east: 11.83283085, + west: 11.58284929, + }, + { + doi: "10.24341/tethys.157", + title: "Geodaten zu GEOFAST - Blatt 150 Mayrhofen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Salzburg, Tirol, Südtirol, Oberflächengeologie", + north: 47.2495481, + south: 46.99949538, + east: 12.08279483, + west: 11.83281513, + }, + { + doi: "10.24341/tethys.158", + title: "Geodaten zu GEOFAST - Blatt 161 Knittelfeld (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Steiermark, Kärnten, Oberflächengeologie", + north: 47.24962518, + south: 46.99958044, + east: 14.83242598, + west: 14.58242771, + }, + { + doi: "10.24341/tethys.159", + title: "Geodaten zu GEOFAST - Blatt 166 Fürstenfeld (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Steiermark, Burgenland, Oberflächengeologie", + north: 47.2496685, + south: 46.99962206, + east: 16.08225915, + west: 15.83227202, + }, + { + doi: "10.24341/tethys.160", + title: "Geodaten zu GEOFAST - Blatt 168 Eberau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Burgenland, Ungarn, Oberflächengeologie", + north: 47.2496796, + south: 46.99963921, + east: 16.52903691, + west: 16.33220735, + }, + { + doi: "10.24341/tethys.161", + title: "Geodaten zu GEOFAST - Blatt 171 Nauders (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Pavlik, W; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Schweiz, Oberflächengeologie", + north: 46.99952448, + south: 46.83707751, + east: 10.58300987, + west: 10.33303538, + }, + { + doi: "10.24341/tethys.162", + title: "Geodaten zu GEOFAST - Blatt 184 Ebene Reichenau (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Iglseder, C; Steinbichler, M; Griesmeier, G; ", + subject: "Vektordaten, Kompilation, Steiermark, Kärnten, Salzburg, Oberflächengeologie", + north: 46.99962879, + south: 46.74958557, + east: 14.08254509, + west: 13.83256027, + }, + { + doi: "10.24341/tethys.163", + title: "Geodaten zu GEOFAST - Blatt 172 Weißkugel (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Oberflächengeologie", + north: 46.99953144, + south: 46.77306904, + east: 10.83297986, + west: 10.5830012, + }, + { + doi: "10.24341/tethys.164", + title: "Geodaten zu GEOFAST - Blatt 173 Sölden (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Südtirol, Oberflächengeologie", + north: 46.99953848, + south: 46.75124008, + east: 11.08659109, + west: 10.83296706, + }, + { + doi: "10.24341/tethys.165", + title: "Geodaten zu GEOFAST - Blatt 174 Timmelsjoch (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Oberflächengeologie", + north: 46.99949431, + south: 46.86953881, + east: 11.33289954, + west: 11.08293296, + }, + { + doi: "10.24341/tethys.166", + title: "Geodaten zu GEOFAST - Blatt 176 Mühlbach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Südtirol, Oberflächengeologie", + north: 46.99956157, + south: 46.95041648, + east: 11.83283099, + west: 11.58286485, + }, + { + doi: "10.24341/tethys.167", + title: "Geodaten zu GEOFAST - Blatt 177 Sankt Jakob in Defereggen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Tirol, Südtirol, Oberflächengeologie", + north: 46.99957473, + south: 46.77910295, + east: 12.33277797, + west: 12.12379204, + }, + { + doi: "10.24341/tethys.168", + title: "Geodaten zu GEOFAST - Blatt 178 Hopfgarten in Defereggen (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Tirol, Südtirol, Oberflächengeologie", + north: 46.99958023, + south: 46.74953942, + east: 12.58274513, + west: 12.33275754, + }, + { + doi: "10.24341/tethys.169", + title: "Geodaten zu GEOFAST - Blatt 185 Straßburg (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Kärnten, Oberflächengeologie", + north: 46.9996366, + south: 46.74959351, + east: 14.33251019, + west: 14.08252558, + }, + { + doi: "10.24341/tethys.170", + title: "Geodaten zu GEOFAST - Blatt 190 Leibnitz (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Steiermark, Oberflächengeologie", + north: 46.99967802, + south: 46.74963437, + east: 15.58234337, + west: 15.33235055, + }, + { + doi: "10.24341/tethys.171", + title: "Geodaten zu GEOFAST - Blatt 191 Kirchbach in Steiermark (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Steiermark, Oberflächengeologie", + north: 46.99968578, + south: 46.74964282, + east: 15.83231217, + west: 15.5823166, + }, + { + doi: "10.24341/tethys.172", + title: "Geodaten zu GEOFAST - Blatt 192 Feldbach (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Moser, M; Bayer, I; Steinbichler, M; ", + subject: "Vektordaten, Kompilation, Steiermark, Burgenland, Slowenien, Oberflächengeologie", + north: 46.99970012, + south: 46.74965118, + east: 16.08227739, + west: 15.83229242, + }, + { + doi: "10.24341/tethys.173", + title: "Geodaten zu GEOFAST - Blatt 193 Jennersdorf (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Steiermark, Burgenland, Ungarn, Slowenien, Oberflächengeologie", + north: 46.99970317, + south: 46.78078599, + east: 16.33222857, + west: 16.08225915, + }, + { + doi: "10.24341/tethys.174", + title: "Geodaten zu GEOFAST - Blatt 194 Krottendorf (1:50.000)", + creator: "Geologische Bundesanstalt Österreich", + contributor: "Bayer, I; Steinbichler, M; Kreuss, O; ", + subject: "Vektordaten, Kompilation, Burgenland, Ungarn, Oberflächengeologie", + north: 46.99971176, + south: 46.9523906, + east: 16.55723324, + west: 16.33222466, + }, +]; diff --git a/src/views/map-view/map-view.component.vue b/src/views/map-view/map-view.component.vue index b237483..c02b8b2 100644 --- a/src/views/map-view/map-view.component.vue +++ b/src/views/map-view/map-view.component.vue @@ -1,9 +1,37 @@