Regionaler Entwicklungsplan für die Planungsregion Anhalt-Bitterfeld-Wittenberg mit den Planinhalten „Raumstruktur, Standortpotenziale, technische Infrastruktur und Freiraumstruktur“ Die oberste Landesentwicklungsbehörde hat am 21.12.2018 die Genehmigung unter einer Maßgabe erteilt. Am 29.03.2019 trat die Regionalversammlung mit Beschluss Nr. 03/2019 der Maßgabe bei. Mit Bekanntmachung der Genehmigung trat der Regionale Entwicklungsplan am 27.04.2019 in Kraft.
InSpEE (INSPIRE) provides information about the areal distribution of salt structures (salt domes and salt pillows) in Northern Germany. Contours of the salt structures can be displayed at horizontal cross-sections at four different depths up to a maximum depth of 2000 m below NN. The geodata have resulted from a BMWi-funded research project “InSpEE” running from the year 2012 to 2015. The acronym stands for "Information system salt structures: planning basis, selection criteria and estimation of the potential for the construction of salt caverns for the storage of renewable energies (hydrogen and compressed air)”. Additionally four horizontal cross-section maps display the stratigraphical situation at a given depth. In concurrence of maps at different depths areal bedding conditions can be determined, e.g. to generally assess and interpret the spread of different stratigraphic units. Clearly visible are extent and shape of the salt structures within their regional context at the different depths, with extent and boundary of the salt structures having been the main focus of the project. Four horizontal cross-section maps covering the whole onshore area of Northern Germany have been developed at a scale of 1:500.000. The maps cover the depths of -500, -1000, -1500, -2000 m below NN. The four depths are based on typical depth requirements of existing salt caverns in Northern Germany, mainly related to hydrocarbon storage. The shapes of the structures show rudimentary information of their geometry and their change with depths. In addition they form the starting point for rock mechanical calculations necessary for the planning and construction of salt caverns for storage as well as for assessing storage potentials. The maps can be used as a pre-selection tool for subsurface uses. It can also be used to assess coverage and extension of salt structures. Offshore areas were not treated within the project. All horizontal cross-section maps were adjusted with the respective state geological survey organisations. According to the Data Specification on Geology (D2.8.II.4_v3.0) the content of InSpEE (INSPIRE) is stored in 15 INSPIRE-compliant GML files: InSpEE_GeologicUnit_Salt_structure_types.gml contains the salt structure types (salt domes and salt pillows), InSpEE_GeologicUnit_Salt_pillow_remnants.gml comprises the salt pillow remnants, InSpEE_GeologicUnit_Structure_building_salinar.gml represents the structural salinar(s), the four files InSpEE_Structural_outlines_500.gml, InSpEE_Structural_outlines_1000.gml, InSpEE_Structural_outlines_1500.gml and InSpEE_Structural_outlines_2000.gml represent the structural outlines in the corresponding horizontal cross-sections, the four files InSpEE_GeologicUnit_Cross_Section_500, InSpEE_GeologicUnit_Cross_Section_1000, InSpEE_GeologicUnit_Cross_Section_1500 and InSpEE_GeologicUnit_Cross_Section_2000 display the stratigraphical situation in the corresponding horizontal cross-sections and the four files InSpEE_GeologicStructure_500.gml, InSpEE_GeologicStructure_1000.gml, InSpEE_GeologicStructure_1500.gml and InSpEE_GeologicStructure_2000.gml comprise the relevant fault traces in the corresponding horizontal cross-sections. The GML files together with a Readme.txt file are provided in ZIP format (InSpEE-INSPIRE.zip). The Readme.text file (German/English) contains detailed information on the GML files content. Data transformation was proceeded by using the INSPIRE Solution Pack for FME according to the INSPIRE requirements.
Dieser Dienst enthält Daten der Planungsregionen Oberes Elbtal/Osterzgebirge, Region Chemnitz und Oberlausitz-Niederschlesien und deckt im Endausbau den gesamten Freistaat Sachsen ab. Entsprechend des Landesentwicklungsplanes 2013 als fachübergreifendes Gesamtkonzept zur räumlichen Entwicklung, Ordnung und Sicherung des Freistaates Sachsen stellen die Regionalpläne einen verbindlichen Rahmen für die räumliche Entwicklung, Ordnung und Sicherung des Raumes dar. Im Dienst sind regionalplanerische Festlegungen des Komplexes Raumstruktur enthalten. Die rechtsverbindlichen Karten Raumstruktur werden in der Regel in Maßstäben zwischen 1:300.000 und 1:450.000 erstellt. Eine Darstellung der Inhalte der Regionalpläne erfolgt in diesem Dienst nur im Maßstab kleiner 1:10.000.
# Faszination Nächtlicher Vogelzug A web component for visualizing migratory bird detections on an interactive map. Built with React, MapLibre GL, and the BirdWeather GraphQL API. Designed for embedding into CMS platforms like Contao. ## Tech Stack - **React 19** + **TypeScript** (Vite) - **MapLibre GL** -- WebGL map rendering (Stadia Maps dark theme) - **Supercluster** -- per-species spatial clustering - **Apollo Client 4** -- GraphQL data fetching with caching - **GraphQL Code Generation** -- type-safe queries from BirdWeather schema - **SunCalc** -- astronomical day/night calculations - **Tailwind CSS 4** + **Ant Design 6** -- UI - **Vitest** -- testing ## Features - **Interactive map** with color-coded detection clusters per species - **Timeline animation** with autoplay, step controls, and throttled slider - **Night-only mode** that compresses inactive daytime hours using SunCalc sunrise/sunset calculations - **Day/night overlay** showing the terminator (day/night boundary) as a real-time GeoJSON polygon - **Species search** with autocomplete and availability checking per map viewport - **Supplementary layers** (light pollution, noise mapping via WMS) - **Web component** (`<zug-birdnet>`) for CMS embedding without routing ## Project Structure ``` src/ main.tsx Web component registration App.tsx Root component, species selection state api/ fragments.ts GraphQL fragments (DetectionItem, SpeciesItem) queries.ts GraphQL queries (detections, species, search) useDetections.ts Detection fetch hook with prefetching components/ DatesProvider.tsx Time state context (date range, animation, night mode) MapProvider.tsx MapLibre GL instance context SpeciesDropdown.tsx Species selection with search autocomplete Timeline.tsx Date picker, animation slider, playback controls LayersDropdown.tsx Toggle info layers (light pollution, noise) InfoPopup.tsx Map info marker popups map/ Map.tsx MapLibre GL initialization and rendering clusterUtils.ts Per-species Supercluster index creation colorUtils.ts MapLibre paint expression builder mapStyles.ts Map layer definitions usePersistentColors.ts Stable color assignment per species infopoints.ts Static info marker data lib/ apollo-client.ts Apollo Client with cache type policies buildAvailableSpeciesQuery.ts Dynamic aliased query generation getDayPolygon.ts Day/night terminator polygon calculation getTranslatedSpeciesName.ts i18n species name lookup isNotNull.ts, hasNonNullProp.ts Type guard utilities throttle.ts Throttle utility gql/ Auto-generated GraphQL types (do not edit) ``` ## Architecture Three React context providers compose the application: ``` ApolloProvider GraphQL caching and data fetching DatesProvider Date range, animation state, night-only time segments MapProvider MapLibre GL map instance App Species selection, filtered detections, color mapping ``` **Data flow:** Apollo fetches detections for the current bounding box and date range. Detections are filtered client-side by the visualisation time window (controlled by the timeline slider). Each species gets its own Supercluster index for independent color-coded clustering. Cluster features are rendered via MapLibre GL layers with dynamic `match` paint expressions. **GraphQL:** Queries and fragments are defined in `src/api/` and typed via `@graphql-codegen/client-preset`. Run `npm run codegen` after schema changes to regenerate `src/gql/`. ## Development ```sh npm install npm run dev ``` The dev server uses a self-signed SSL certificate via `@vitejs/plugin-basic-ssl`. Accept the browser warning on first visit. Other commands: ```sh npm run build # Production build npm run test # Run tests npm run lint # ESLint npm run codegen # Regenerate GraphQL types ``` ## Build & Integration Run `npm run build` to produce the `dist/` folder. The build outputs stable filenames (no hashes) and splits vendor dependencies into separate chunks for caching: ``` dist/ index.html assets/ index.css App styles (Tailwind + Ant Design) index.js Application code, React, Supercluster, dayjs, SunCalc maplibre.js MapLibre GL antd.js Ant Design + icons apollo.js Apollo Client + graphql ``` Only `index.js` changes on application updates. Vendor chunks are cache-stable between deploys. To embed the web component, include the built CSS and JS, then use the custom element: ```html <link rel="stylesheet" href="/assets/index.css"> <script type="module" src="/assets/index.js"></script> <zug-birdnet></zug-birdnet> ``` No routing. The component is self-contained and can be placed anywhere on the page. Third-party CMS integration (e.g., Contao) only needs to include the built assets and the custom element tag. ## Configuration App-level settings are in `src/config.ts`: | Option | Default | Description | |---|---|---| | `SHOW_DEMO_INFOPOINTS` | `false` | Show static info markers on the map (demo/development only) |
Der Datensatz beinhaltet Daten des LBGR über die Hydrogeologische Raumgliederung Brandenburgs und wird über je einen Darstellungs- und Downloaddienst bereitgestellt. Die Karte gibt einen Überblick zu den hydrogeologischen Raumgliederungen Brandenburgs. Die Gliederungseinheiten tragen den angewandten Charakter von Nutzungsräumen. Sie werden anhand von Wassereinzugsgebieten und Charakteristiken dazugehöriger Grundwasserdynamik beschrieben. Für das Territorium einer hydrogeologischen Einheit werden vergleichbare Grundwasserverhältnisse vorausgesetzt.
The WMS InSpEE (INSPIRE) provides information about the areal distribution of salt structures (salt domes and salt pillows) in Northern Germany. Contours of the salt structures can be displayed at horizontal cross-sections at four different depths up to a maximum depth of 2000 m below NN. The geodata have resulted from a BMWi-funded research project “InSpEE” running from the year 2012 to 2015. The acronym stands for "Information system salt structures: planning basis, selection criteria and estimation of the potential for the construction of salt caverns for the storage of renewable energies (hydrogen and compressed air)”. Taking into account the fact that this work was undertaken at a scale for providing an overview and not for investigation of single structures, the scale of display is limited to a minimum of 1:300.000. Additionally four horizontal cross-section maps display the stratigraphical situation at a given depth. In concurrence of maps at different depths areal bedding conditions can be determined, e.g. to generally assess and interpret the spread of different stratigraphic units. Clearly visible are extent and shape of the salt structures within their regional context at the different depths, with extent and boundary of the salt structures having been the main focus of the project. Four horizontal cross-section maps covering the whole onshore area of Northern Germany have been developed at a scale of 1:500.000. The maps cover the depths of -500, -1000, -1500, -2000 m below NN. The four depths are based on typical depth requirements of existing salt caverns in Northern Germany, mainly related to hydrocarbon storage. The shapes of the structures show rudimentary information of their geometry and their change with depths. In addition they form the starting point for rock mechanical calculations necessary for the planning and construction of salt caverns for storage as well as for assessing storage potentials. The maps can be used as a pre-selection tool for subsurface uses. It can also be used to assess coverage and extension of salt structures. Offshore areas were not treated within the project. All horizontal cross-section maps were adjusted with the respective state geological survey organisations. According to the Data Specification on Geology (D2.8.II.4_v3.0) the WMS InSpEE (INSPIRE) provides INSPIRE-compliant data. The WMS InSpEE (INSPIRE) contains two group layers: The first group layer “INSPIRE: Salt structures in Northern Germany“ comprises the layers GE.Geologic.Unit.Salt structure types, GE.GeologicUnit.Salt pillow remnants, GE.GeologicUnit.Structure-building salinar and GE.GeologicUnit.Structural outlines. The layer GE.GeologicUnit.Structural outlines contains according to the four depths four sublayers, e.g. GE.GeologiUnit.Structural outlines 500 m below NN. The second group layer „INSPIRE: Horizontal cross-section maps of Northern Germany“ comprises according to the four depths four layers, e.g. Horizontal cross-section map – 500 m below NN. This layer, in turns, contains two sublayers: GE.GeologicFault.Relevant fault traces and GE.GeologicUnit.Stratigraphic Units. Via the getFeatureInfo request the user obtains additional information on the different geometries. In case of the GE.Geologic.Unit.Salt structure types the user gets access to a data sheet with additional information and further reading in German for the respective salt structure via the getFeatureInfo request.
Within the framework of the GEOSTOR Project, the CO2 storage potential of the Jurassic succession in the German Central Graben was analysed. Twelve potential trap structures were initially mapped along the base of the Kimmeridge Clay Formation, which serves as the primary seal for potential reservoir sandstones within the Central Graben Subgroup. The Kimmeridge Clay Formation is generally continuously distributed across the German Central Graben, with only localized penetrations by rising salt diapirs. In contrast, the Central Graben Subgroup, serving as a potential reservoir unit, exhibits an uneven distribution across the area, limiting the presence and continuity of reservoir rocks within each trap structure. To further delineate the spatial extent of the mapped reservoir structures, the base of the Central Graben Subgroup was used as an additional reference layer. Due to the intermittent nature of Jurassic sandstones within the Central Graben Subgroup, a subsequent analysis classified each structure based on borehole data to confirm the presence of reservoir sands. Structures were categorized as ‘proven,’ ‘not present,’ or ‘uncertain’ depending on sandstone availability and continuity within the trap. All mapped reservoir structures are buried at depths ranging from 2225 to 3043 meters (apex depth) and are considered closed systems, situated within a complex structural network of salt diapirs, faults, and pinch-outs. Capacity calculations were conducted following the method outlined by Fuhrmann et al. (2024), and the horizons used for mapping are based on the work of Müller et al. (2023) and Thöle et al. (2021). Fuhrmann, A., Knopf, S., Thöle, H., Kästner, F., Ahlrichs, N., Stück, H.L., Schlieder-Kowitz, A., Kuhlmann, G., (2024). CO2 storage potential of the Middle Buntsandstein Subgroup-German sector of the North Sea. International Journal of Greenhouse Gas Control 136. Müller, S.M., Jähne-Klingberg, F., Thöle, H., Jakobsen, F.C., Bense, F., Winsemann, J. & Gaedicke, C. (2023). Jurassic to Lower Cretaceous tectonostratigraphy of the German Central Graben, southern North Sea. – Netherlands Journal of Geosciences, 102: e4. DOI:10.1017/njg.2023.4 Thöle, H., Jähne-Klingberg, F., Doornenbal, H., den Dulk, M., Britze, P. & Jakobsen F. (2021). Deliverable 3.8 – Harmonized depth models and structural framework of the NL-GER-DK North Sea. GEOERA 3DGEO-EU; 3D Geomodeling for Europe; project number GeoE.171.005. Report.
Sammlung von Daten für die Auswertung bei der Ökosystemforschung Wattenmeer 1989-2000
Sonderdaten für die Auswertung im Rahmen der Ökpsystemforschung Wattenmeer (1989-2000)
Beim Regionalen Raumordnungsprogramm (RROP) handelt es sich um ein strategisches Instrument zur räumlichen Steuerung, Ordnung der unterschiedlichen Nutzungsansprüche. Dabei sollen die miteinander konkurrierenden raumbezogenen Planungen, wie beispielsweise Land- und Forstwirtschaft, gewerbliche Wirtschaft, Verkehr, Naturschutz, Wohnraumbedarf u.v.m aufeinander abgestimmt werden. Das RROP ist somit auf der Ebene des Landkreises ein übergeordnetes und zusammenfassendes Planwerk. Basis für die Vielfalt an Themen bildet das Raumordnungsprogramm 2003 mit der 1. Änderung 2010.
| Organisation | Count |
|---|---|
| Bund | 305 |
| Europa | 18 |
| Kommune | 21 |
| Land | 71 |
| Weitere | 10 |
| Wirtschaft | 3 |
| Wissenschaft | 173 |
| Zivilgesellschaft | 6 |
| Type | Count |
|---|---|
| Daten und Messstellen | 28 |
| Ereignis | 1 |
| Förderprogramm | 277 |
| Hochwertiger Datensatz | 3 |
| Repositorium | 1 |
| Software | 1 |
| Text | 26 |
| Umweltprüfung | 1 |
| unbekannt | 65 |
| License | Count |
|---|---|
| Geschlossen | 37 |
| Offen | 338 |
| Unbekannt | 28 |
| Language | Count |
|---|---|
| Deutsch | 279 |
| Englisch | 145 |
| Resource type | Count |
|---|---|
| Archiv | 11 |
| Bild | 1 |
| Datei | 7 |
| Dokument | 33 |
| Keine | 255 |
| Multimedia | 1 |
| Unbekannt | 1 |
| Webdienst | 20 |
| Webseite | 99 |
| Topic | Count |
|---|---|
| Boden | 256 |
| Lebewesen und Lebensräume | 403 |
| Luft | 175 |
| Mensch und Umwelt | 400 |
| Wasser | 179 |
| Weitere | 394 |