The project is part of the COST action FP0603 Forest models for research and decision support in sustainable forest management (http://www.cost.esf.org/index.php?id=143&action number=FP0603) which aims at extending the scope of forest models from growth only to population dynamics and ecophysiology. Rationale: For sustainable forest management over large areas and for simulating different forest functions especially under changing conditions, different aspects of the system forest' must be modelled jointly: ecophysiological/biogeochemical processes, population dynamics, spatial interactions, and horizontal/vertical species stand structure. We develop a forest model with a stand-size grain suitable to be applied on large areas for assessment of, e.g., climate change or management effects on forest functions. This is achieved by merging and if necessary up- and down-scaling model functions of ecophysiological and population dynamical processes contained in existing models (single tree physiology, local scale ecophysiological, empirical forest growth, spatio-temporal forest landscape, and dynamic global vegetation models). Drought is predicted to occur more frequently with climate change, thus the main focus is on drought and the mechanisms how it affects the trees. Research questions: What are the mechanisms by which drought affects trees? Which is the best (sufficiently accurate and efficient) way to model and simulate these mechanisms? How can population dynamics and ecophysiology be combined in a landscape scale model concerning - allocation of water and carbohydrates to trees and organs? - spatial heterogeneity of soil water and trees? Methods: The project builds on the climate-driven forest landscape model TreeMig (Lischke et al., 2006). Process descriptions from various existing models are compiled, evaluated and included into TreeMig. This involves a thorough scaling of process formulations. Drought effects, involving soil water balance, stomata regulation, photosynthesis, CO2 fertilization effects, allocation of carbohydrates, dynamics of reserve pools and the relationship between these and regeneration, growth and mortality are studied in literature and other models and included into MEPHYSTO.
Beikarte des Rechtskräftigen Regionales Raumordnungsprogramm des Landkreises Rotenburg (Wümme) in zeichnerischer Darstellung zur Information über die Ermittlung der Vorranggebiete für Windenergienutzung
Farm structures are often characterized by regional heterogeneity, agglomeration effects, sub-optimal farm sizes and income disparities. The main objective of this study is to analyze whether this is a result of path dependent structural change, what the determinants of path dependence are, and how it may be overcome. The focus is on the German dairy sector which has been highly regulated and subsidized in the past and faces severe structural deficits. The future of this sector in the process of an ongoing liberalization will be analyzed by applying theoretical concepts of path dependence and path breaking. In these regards, key issues are the actual situation, technological and market trends as well as agricultural policies. The methodology will be based on a participative use of the agent-based model AgriPoliS and participatory laboratory experiments. On the one hand, AgriPoliS will be tested as a tool for stakeholder oriented analysis of mechanisms, trends and policy effects. This part aims to analyze whether and how path dependence of structural change can be overcome on a sector level. In a second part, AgriPoliS will be extended such that human players (farmers, students) can take over the role of agents in the model. This part aims to compare human agents with computer agents in order to overcome single farm path dependence.
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) |
Rechtskräftiges Regionales Raumordnungsprogramm des Landkreises Rotenburg (Wümme) in zeichnerischer Darstellung. Das Regionale Raumordnungsprogramm ist aus dem Landesraumordnungsprogramm (LROP) 2017 entwickelt und legt die angestrebte räumliche und strukturelle Entwicklung des Planungsraumes fest.
Diese Kurzbeschreibung entspricht dem <abstract> aus dem GetCapabilities-Dokument. - Diese Vorlage ist für WMS / View-Service eingerichtet. Für die Beschreibung eines WFS müssen Sie die entsprechenden Werte ändern und auch das Schlagwort infoFeatureAccessService setzen.
WFS der Beikarte des Rechtskräftigen Regionales Raumordnungsprogramm des Landkreises Rotenburg (Wümme) in zeichnerischer Darstellung zur Information über die Ermittlung der Vorranggebiete für Windenergienutzung
Das Forschungsprojekt will Trend- und Natursportarten in ihren Wechselbeziehungen zu Umwelt Gesellschaft aufzeigen. Die Sportarten werden überwiegend an ausgewählten Naturstandorten ausgeübt und sind mittlerweile ein bedeutender Faktor in der Freizeit- und Tourismusindustrie. Die Auswirkungen dieser Sportarten auf den Naturraum und die Raumstruktur sind erheblich. Der Antragsteller will die empirische Kenntnis über den Umfang, die Ausübung sowie die Auswirkungen der Trend- und Natursportarten erweitern und systematisieren. Die Untersuchung ist nach dem Prinzip von Fallstudien angelegt. Neben der Analyse der regionalen Raumstruktur der Untersuchungsräume sowie der Auswirkungen der Sportarten auf den Raum, die Natur und Umwelt, stehen auch Sportausübenden selbst und weitere an der jeweiligen Sportart beteiligten Personen (z.B. kommerzielle Veranstalter und deren Angetellte) im Mittelpunkt. Aus den Ergebnissen der sozialempirischen Analyse sowie den Untersuchungen über die Umweltauswirkungen soll ein Modell für die umweltverträgliche Nutzung des Naturraums bei der Ausübung von Natursportarten entstehen. Dieses Modell soll schließlich zu einem Entwurf für nachhaltige Entwicklungsmöglichkeiten in peripheren Räumen durch gezielte Förderung und Lenkung von Trend- und Natursportarten führen.
Untersuchung der verschiedenen physischen Bestandteile staedtischer Oekosysteme unter Beruecksichtigung der Raumstruktur: Klima, Boden, Wasserhaushalt in ihrer Beziehung zur Stadtstruktur sowie spontane und subspontane Vegetation in ihrer raeumlichen Differenzierung und ihrem Indikatorwert. Eine besondere Aufgabe besteht in der Erforschung der oekologischen Ausgleichswirkung von Freiflaechen bei einer gegebenen Belastungssituation in der Staedte- und Industrieregion des Ruhrgebietes, Raum Gelsenkirchen/Herten (Ausgleichsfunktion fuer Klima, Wasserhaushalt sowie Biotopfunktion). Weiterhin wird versucht, die gewonnenen Erkenntnisse und Daten in das bestehende Planungsinstrumentarium einzubringen (etwa ueber UVP) und so Grundlagen fuer eine oekologisch orientierte Planung zu schaffen. Ein zweiter Schwerpunkt liegt in der Erfassung und Bewertung der Boeden im urban-industriellen Oekosystem (Castrop-Rauxel, Bochum).
| Organisation | Count |
|---|---|
| Bund | 304 |
| Europa | 18 |
| Kommune | 22 |
| Land | 73 |
| Weitere | 10 |
| Wirtschaft | 3 |
| Wissenschaft | 173 |
| Zivilgesellschaft | 6 |
| Type | Count |
|---|---|
| Daten und Messstellen | 28 |
| Ereignis | 1 |
| Förderprogramm | 277 |
| Hochwertiger Datensatz | 2 |
| Repositorium | 1 |
| Software | 1 |
| Text | 26 |
| Umweltprüfung | 1 |
| unbekannt | 66 |
| License | Count |
|---|---|
| Geschlossen | 37 |
| Offen | 338 |
| Unbekannt | 28 |
| Language | Count |
|---|---|
| Deutsch | 279 |
| Englisch | 145 |
| Resource type | Count |
|---|---|
| Archiv | 11 |
| Bild | 1 |
| Datei | 6 |
| Dokument | 33 |
| Keine | 255 |
| Multimedia | 1 |
| Unbekannt | 1 |
| Webdienst | 19 |
| Webseite | 99 |
| Topic | Count |
|---|---|
| Boden | 256 |
| Lebewesen und Lebensräume | 403 |
| Luft | 175 |
| Mensch und Umwelt | 400 |
| Wasser | 179 |
| Weitere | 393 |