.. SPDX-FileCopyrightText: 2022 cusy GmbH .. .. SPDX-License-Identifier: BSD-3-Clause Geodaten ======== Dateiformate ------------ .. _pmtiles: PMTiles ~~~~~~~ `PMTiles `__ ist ein allgemeines Format für Kacheldaten, die durch Z/X/Y-Koordinaten adressiert werden. Dabei kann es sich um kartografische Vektorkacheln, :ref:`Fernerkundungsdaten `, JPEG-Bilder oder ähnliches handeln. Zum Lesen werden `HTTP Range Requests `_ verwendet, um nur die relevanten Kacheln oder Metadaten innerhalb eines PMTiles-Archivs abzurufen. Die Anordnung der Kacheln und Verzeichnisse ist so konzipiert, dass die Anzahl der Anfragen beim Verschieben und Zoomen minimiert wird. PMTiles ist jedoch ein schreibgeschütztes Format: Es ist nicht möglich, einen Teil des Archivs zu aktualisieren, ohne die gesamte Datei neu zu schreiben. Wenn ihr transaktionale Aktualisierungen benötigt, solltet ihr eine Datenbank wie SQLite oder :doc:`postgresql/postgis/index` und `ST_asMVT `_ verwenden. .. seealso:: * `GitHub Repository `_ * `PMTiles Version 3 Specification `_ * `pmtiles Python package `_ Mapbox Vector Tiles (MVT) ~~~~~~~~~~~~~~~~~~~~~~~~~ Das `Mapbox Vector Tiles `_-Dateiformat speichert jede Kachel in einem Verzeichnisbaum wie :file:`/Z/X/Y.mvt`. Dies funktioniert gut für kleine Kachelsätze, aber das Aktualisieren einer kompletten globalen Pyramide mit ~300 Millionen Kacheln ist sehr ineffizient. :ref:`pmtiles` ist dagegen eine einzige Datei, in deren Kacheln de-dupliziert sind, wodurch die Größe globaler Vektor-Basiskarten um ~70% reduziert werden. Zum Schreiben muss die :ref:`gdal`-Bibliothek mit `SQLite `_ und `GEOS `_-Unterstützung installiert sein. Dabei werden die Mapbox Vector Tiles in SQLite wie :ref:`mbtiles` gespeichert und können mit dem MBTiles-Treiber verarbeitet werden. .. seealso:: * `Mapbox Vector Tile specification `_ * `MVT: Mapbox Vector Tiles `_ .. _mbtiles: MBTiles ~~~~~~~ `MBTiles `__ ist ein Containerformat für Kacheldaten auf der Grundlage von SQLite. Es ist für den lokalen Zugriff optimiert, nicht wie :ref:`pmtiles` auf den Zugriff via HTTP. .. seealso:: * `MBTiles specification `_ Cloud Optimized GeoTIFF (COG) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ `Cloud Optimized GeoTIFF `_ ist eine Raster-TIFF-Datei, die ähnlich wie :ref:`pmtiles` für das Lesen aus einem Cloud-Speicher optimiert ist. :ref:`pmtiles` kann jedoch auch andere Kacheldaten, :abbr:`z. B. (zum Beispiel)` Vektor-Kacheln ausliefern. COG ist jedoch mit den meisten GIS-Programmen, die mit GeoTIFF arbeiten, abwärtskompatibel. .. seealso:: * `OGC Cloud Optimized GeoTIFF Standard `_ .. _geoparquet: GeoParquet ~~~~~~~~~~ `Parquet `_ ist ein quelloffenes, spaltenorientiertes Datendateiformat, das für die effiziente Speicherung und Abfrage von Daten entwickelt wurde. Es bietet effiziente Datenkomprimierungs- und -kodierungsverfahren mit optimierter Verarbeitung großer, komplexer Daten. `GeoParquet `__ erweitert Parquet um interoperable Geodatentypen (Punkt, Linie, Polygon). * :doc:`pyviz:matplotlib/geopandas/index` unterstützt das `Lesen `_ und `Schreiben `_ von GeoParquet. * `GeoParquet Downloader Plugin `_ für `QGIS `_ ermöglicht Streaming-Downloads von großen GeoParquet-Datensätzen. * `DuckDB `_ erlaubt mit der `Spatial Extension `_ das Lesen und Schreiben von GeoParquet-Dateien. .. seealso:: * `GeoParquet specification `_ * `GeoParquet Software `_ * `validate_geoparquet.py `_ Daten-Repositorien ------------------ .. seealso:: :ref:`geodata-repositories` Software -------- Lesen und Schreiben ~~~~~~~~~~~~~~~~~~~ .. _gdal: `Geospatial Data Abstraction Library (GDAL) `_ bietet eine einfache, aber leistungsfähige API zum Lesen und Schreiben von Hunderten von Datenformaten. .. image:: https://raster.shields.io/github/stars/OSGeo/gdal .. image:: https://raster.shields.io/github/contributors/OSGeo/gdal .. image:: https://raster.shields.io/github/commit-activity/y/OSGeo/gdal .. image:: https://raster.shields.io/github/license/OSGeo/gdal `pyogrio `_ bietet eine :doc:`pyviz:matplotlib/geopandas/index`-orientierte API für OGR-Vektordatenquellen, wie ESRI Shapefile, GeoPackage und GeoJSON. .. image:: https://raster.shields.io/github/stars/geopandas/geopandas .. image:: https://raster.shields.io/github/contributors/geopandas/geopandas .. image:: https://raster.shields.io/github/commit-activity/y/geopandas/geopandas .. image:: https://raster.shields.io/github/license/geopandas/geopandas `Rasterio `_ liest und schreibt GeoTIFF und andere Formen von Rasterdatensätzen. .. image:: https://raster.shields.io/github/stars/rasterio/rasterio .. image:: https://raster.shields.io/github/contributors/rasterio/rasterio .. image:: https://raster.shields.io/github/commit-activity/y/rasterio/rasterio .. image:: https://raster.shields.io/github/license/rasterio/rasterio `Zarr-Python `_ `Zarr `_ ist ein Open-Source-Dateispeicherformat für chunked, komprimierte, N-dimensionale Arrays. .. image:: https://raster.shields.io/github/stars/zarr-developers/zarr-python .. image:: https://raster.shields.io/github/contributors/zarr-developers/zarr-python .. image:: https://raster.shields.io/github/commit-activity/y/zarr-developers/zarr-python .. image:: https://raster.shields.io/github/license/zarr-developers/zarr-python `Fiona `_ liest und schreibt :file:`*.shp`- und :file:`*.json`-Daten und viele andere Formate. .. image:: https://raster.shields.io/github/stars/Toblerity/Fiona .. image:: https://raster.shields.io/github/contributors/Toblerity/Fiona .. image:: https://raster.shields.io/github/commit-activity/y/Toblerity/Fiona .. image:: https://raster.shields.io/github/license/Toblerity/Fiona `netCDF4 `_ ist eine Python-Schnittstelle für die `netCDF `_-C-Bibliothek. .. image:: https://raster.shields.io/github/stars/Unidata/netcdf4-python .. image:: https://raster.shields.io/github/contributors/Unidata/netcdf4-python .. image:: https://raster.shields.io/github/commit-activity/y/Unidata/netcdf4-python .. image:: https://raster.shields.io/github/license/Unidata/netcdf4-python `pyModis `_ ist eine Sammlung von Python-Skripten zum Herunterladen und Mosaikieren von `MODIS `__-Daten. .. image:: https://raster.shields.io/github/stars/lucadelu/pyModis .. image:: https://raster.shields.io/github/contributors/lucadelu/pyModis .. image:: https://raster.shields.io/github/commit-activity/y/lucadelu/pyModis .. image:: https://raster.shields.io/github/license/lucadelu/pyModis `xmitgcm `_ liest `MITgcm `_-Binär-MDS-Dateien in Xarray-Datenstrukturen. .. image:: https://raster.shields.io/github/stars/MITgcm/xmitgcm .. image:: https://raster.shields.io/github/contributors/MITgcm/xmitgcm .. image:: https://raster.shields.io/github/commit-activity/y/MITgcm/xmitgcm .. image:: https://raster.shields.io/github/license/MITgcm/xmitgcm .. seealso:: :ref:`geo-wrappers` .. _remote-sensing: Fernerkundung ~~~~~~~~~~~~~ `Satpy `_ Einfach zu verwendende API für Sensoren von Satellitenbildern wie `MODIS `_, `Sentinel-2 `_ :abbr:`usw (und so weiter)`. .. image:: https://raster.shields.io/github/stars/pytroll/satpy .. image:: https://raster.shields.io/github/contributors/pytroll/satpy .. image:: https://raster.shields.io/github/commit-activity/y/pytroll/satpy .. image:: https://raster.shields.io/github/license/pytroll/satpy `sentinelsat `_ Finden und Herunterladen von Copernicus Sentinel-Satellitenbildern über die Kommandozeile oder Python. .. image:: https://raster.shields.io/github/stars/sentinelsat/sentinelsat .. image:: https://raster.shields.io/github/contributors/sentinelsat/sentinelsat .. image:: https://raster.shields.io/github/commit-activity/y/sentinelsat/sentinelsat .. image:: https://raster.shields.io/github/license/sentinelsat/sentinelsat `Open Data Cube `_ Open-Source-Software zur Verwaltung und Analyse von Geodaten. .. image:: https://raster.shields.io/github/stars/opendatacube/datacube-core .. image:: https://raster.shields.io/github/contributors/opendatacube/datacube-core .. image:: https://raster.shields.io/github/commit-activity/y/opendatacube/datacube-core .. image:: https://raster.shields.io/github/license/opendatacube/datacube-core `RSGISLib `_ oder *The Remote Sensing and GIS Software Library* ist eine Sammlung von Fernerkundungswerkzeugen für die Rasterverarbeitung und -analyse. .. image:: https://raster.shields.io/github/stars/remotesensinginfo/rsgislib .. image:: https://raster.shields.io/github/contributors/remotesensinginfo/rsgislib .. image:: https://raster.shields.io/github/commit-activity/y/remotesensinginfo/rsgislib .. image:: https://raster.shields.io/github/license/remotesensinginfo/rsgislib .. seealso:: :doc:`/clean-prep/dask-pipeline` Allgemeine Zwecke ~~~~~~~~~~~~~~~~~ `pyproj `_ Python-Schnittstelle zu `PROJ `_, einer Bibliothek für kartographische Projektionen und Koordinatentransformationen. .. image:: https://raster.shields.io/github/stars/pyproj4/pyproj .. image:: https://raster.shields.io/github/contributors/pyproj4/pyproj .. image:: https://raster.shields.io/github/commit-activity/y/pyproj4/pyproj .. image:: https://raster.shields.io/github/license/pyproj4/pyproj .. _geopython: `geopython `__ ist eine GitHub-Organisation, die Python-Projekte rund um Geodaten umfasst. `pygeoapi `_ ist eine Python-Serverimplementierung der `OGC-API `_-Standardsuite. .. image:: https://raster.shields.io/github/stars/geopython/pygeoapi .. image:: https://raster.shields.io/github/contributors/geopython/pygeoapi .. image:: https://raster.shields.io/github/commit-activity/y/geopython/pygeoapi .. image:: https://raster.shields.io/github/license/geopython/pygeoapi `OWSLib `_ ist ein Python-Paket für die Client-Programmierung mit den Schnittstellenstandards des `Open Geospatial Consortium (OGC) Web Service `_ und den damit verbundenen Inhaltsmodellen. .. image:: https://raster.shields.io/github/stars/geopython/OWSLib .. image:: https://raster.shields.io/github/contributors/geopython/OWSLib .. image:: https://raster.shields.io/github/commit-activity/y/geopython/OWSLib .. image:: https://raster.shields.io/github/license/geopython/OWSLib `pycsw `_ ist eine in Python geschriebene `OGC CSW `_-Server-Implementierung, die vollständig den `OpenGIS Catalogue Service `_ implementiert. .. image:: https://raster.shields.io/github/stars/geopython/pycsw .. image:: https://raster.shields.io/github/contributors/geopython/pycsw .. image:: https://raster.shields.io/github/commit-activity/y/geopython/pycsw .. image:: https://raster.shields.io/github/license/geopython/pycsw `pygeometa `_ kann zur Generierung von Metadaten für Geodatensätze verwendet werden. .. image:: https://raster.shields.io/github/stars/geopython/pygeometa .. image:: https://raster.shields.io/github/contributors/geopython/pygeometa .. image:: https://raster.shields.io/github/commit-activity/y/geopython/pygeometa .. image:: https://raster.shields.io/github/license/geopython/pygeometa `pgeocode `_ Abfrage von GPS-Koordinaten und Gemeindenamen aus Postleitzahlen, Entfernungen zwischen Postleitzahlen sowie allgemeine Entfernungen. .. image:: https://raster.shields.io/github/stars/symerio/pgeocode .. image:: https://raster.shields.io/github/contributors/symerio/pgeocode .. image:: https://raster.shields.io/github/commit-activity/y/symerio/pgeocode .. image:: https://raster.shields.io/github/license/symerio/pgeocode `Arcpy `_ wird von `Esri ArcGIS `_ für die Analyse geografischer Daten, die Datenkonvertierung, das Datenmanagement und die Kartenautomatisierung verwendet. GIS ~~~ `QGIS `_ unterstützt das Anzeigen, Bearbeiten, Drucken und Analysieren von Geodaten in einer Reihe von Datenformaten. .. image:: https://raster.shields.io/github/stars/qgis/QGIS .. image:: https://raster.shields.io/github/contributors/qgis/QGIS .. image:: https://raster.shields.io/github/commit-activity/y/qgis/QGIS .. image:: https://raster.shields.io/github/license/qgis/QGIS `GeoPandas `_ erweitert die von Pandas verwendeten Datentypen, um räumliche Operationen auf geometrischen Typen zu ermöglichen. .. image:: https://raster.shields.io/github/stars/geopandas/geopandas .. image:: https://raster.shields.io/github/contributors/geopandas/geopandas .. image:: https://raster.shields.io/github/commit-activity/y/geopandas/geopandas .. image:: https://raster.shields.io/github/license/geopandas/geopandas `regionmask `_ bestimmt, zu welcher geografischen Region jeder Rasterpunkt gehört. .. image:: https://raster.shields.io/github/stars/regionmask/regionmask .. image:: https://raster.shields.io/github/contributors/regionmask/regionmask .. image:: https://raster.shields.io/github/commit-activity/y/regionmask/regionmask .. image:: https://raster.shields.io/github/license/regionmask/regionmask `Salem `_ erweitert xarray um geolokalisierte Subsetting-, Maskierungs- und Plotting-Operationen. .. image:: https://raster.shields.io/github/stars/fmaussion/salem .. image:: https://raster.shields.io/github/contributors/fmaussion/salem .. image:: https://raster.shields.io/github/commit-activity/y/fmaussion/salem .. image:: https://raster.shields.io/github/license/fmaussion/salem Räumlich-zeitliche Statistik ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ `rasterstats `_ Zusammenfassen von raumbezogenen Rasterdatensätzen auf der Grundlage von Vektorgeometrien. .. image:: https://raster.shields.io/github/stars/rasterio/rasterio .. image:: https://raster.shields.io/github/contributors/rasterio/rasterio .. image:: https://raster.shields.io/github/commit-activity/y/rasterio/rasterio .. image:: https://raster.shields.io/github/license/rasterio/rasterio `eofs `_ :abbr:`EOF (Empirische orthogonale Funktionen)` zur Analyse von räumlich-zeitlichen Daten. .. image:: https://raster.shields.io/github/stars/ajdawson/eofs .. image:: https://raster.shields.io/github/contributors/ajdawson/eofs .. image:: https://raster.shields.io/github/commit-activity/y/ajdawson/eofs .. image:: https://raster.shields.io/github/license/ajdawson/eofs Re-Gridding ~~~~~~~~~~~ `Pyresample `_ Resampling von Geobilddaten, primär für die Satpy-Bibliothek. .. image:: https://raster.shields.io/github/stars/pytroll/pyresample .. image:: https://raster.shields.io/github/contributors/pytroll/pyresample .. image:: https://raster.shields.io/github/commit-activity/y/pytroll/pyresample .. image:: https://raster.shields.io/github/license/pytroll/pyresample `xESMF `_ Universal Regridder für Geodaten. .. image:: https://raster.shields.io/github/stars/pangeo-data/xESMF .. image:: https://raster.shields.io/github/contributors/pangeo-data/xESMF .. image:: https://raster.shields.io/github/commit-activity/y/pangeo-data/xESMF .. image:: https://raster.shields.io/github/license/pangeo-data/xESMF Simulation ~~~~~~~~~~ `xarray-simlab `_ bietet sowohl einen allgemeinen Rahmen für die Erstellung von Berechnungsmodellen als auch eine xarray-Erweiterung für die Erstellung und Durchführung von Simulationen. .. image:: https://raster.shields.io/github/stars/xarray-contrib/xarray-simlab .. image:: https://raster.shields.io/github/contributors/xarray-contrib/xarray-simlab .. image:: https://raster.shields.io/github/commit-activity/y/xarray-contrib/xarray-simlab .. image:: https://raster.shields.io/github/license/xarray-contrib/xarray-simlab `Fastscape `_ bietet viele kleine Modellkomponenten zur Verwendung mit dem xarray-simlab-Modellierungsrahmen. .. image:: https://raster.shields.io/github/stars/fastscape-lem/fastscape .. image:: https://raster.shields.io/github/contributors/fastscape-lem/fastscape .. image:: https://raster.shields.io/github/commit-activity/y/fastscape-lem/fastscape .. image:: https://raster.shields.io/github/license/fastscape-lem/fastscape `EarthSim `_ Werkzeuge für die Umweltsimulation. .. image:: https://raster.shields.io/github/stars/holoviz-topics/EarthSim .. image:: https://raster.shields.io/github/contributors/holoviz-topics/EarthSim .. image:: https://raster.shields.io/github/commit-activity/y/holoviz-topics/EarthSim .. image:: https://raster.shields.io/github/license/holoviz-topics/EarthSim Visualisierung ~~~~~~~~~~~~~~ :doc:`PyViz Tutorial ` Tutorial, das einen Überblick über die Python-Visualisierungsbibliotheken gibt. :doc:`pyviz:matplotlib/cartopy/index` erstellt Karten auf Basis von :doc:`pyviz:matplotlib/index` und konvertiert Punkte, Linien und Vektoren zwischen den verschiedenen Projektionen. :doc:`GeoPandas ` GeoPandas Beispiele. :doc:`pyviz:matplotlib/iris` implementiert ein auf :abbr:`CF (Climate and Forecast)`-Konventionen basierendes Datenmodell, dessen Visualisierung auf :doc:`pyviz:matplotlib/index` und :doc:`pyviz:matplotlib/cartopy/index` basiert. :doc:`pyviz:bokeh/integration/holoviews/geoviews` Erforschen und visualisieren geographischer, meteorologischer und ozeanographischer Datensätze. :doc:`pyviz:js/ipyleaflet` ist ein Jupyter-Widget für `Leaflet.js `_. :doc:`pyviz:js/xarray-leaflet` ist eine xarray-Erweiterung für das Plotten von Kachelkarten. Meteorologie ~~~~~~~~~~~~ `MetPy `_ Eine Sammlung von Tools in Python zum Lesen, Visualisieren und Berechnen von Wetterdaten. .. image:: https://raster.shields.io/github/stars/Unidata/MetPy .. image:: https://raster.shields.io/github/contributors/Unidata/MetPy .. image:: https://raster.shields.io/github/commit-activity/y/Unidata/MetPy .. image:: https://raster.shields.io/github/license/Unidata/MetPy `wrf-python `_ Eine Sammlung von Diagnose- und Interpolationsroutinen zur Verwendung mit den Ausgaben des :abbr:`WRF-ARW (Weather Research and Forecasting)`-Modells. .. image:: https://raster.shields.io/github/stars/NCAR/wrf-python .. image:: https://raster.shields.io/github/contributors/NCAR/wrf-python .. image:: https://raster.shields.io/github/commit-activity/y/NCAR/wrf-python .. image:: https://raster.shields.io/github/license/NCAR/wrf-python `windspharm `_ Berechnungen zu globalen Windfeldern in sphärischer Geometrie. .. image:: https://raster.shields.io/github/stars/ajdawson/windspharm .. image:: https://raster.shields.io/github/contributors/ajdawson/windspharm .. image:: https://raster.shields.io/github/commit-activity/y/ajdawson/windspharm .. image:: https://raster.shields.io/github/license/ajdawson/windspharm Ozeanographie ~~~~~~~~~~~~~ `GSW-Python `_ Python-Implementierung des :abbr:`TEOS-10 (Thermodynamic Equation of Seawater 2010)`. .. image:: https://raster.shields.io/github/stars/TEOS-10/GSW-Python .. image:: https://raster.shields.io/github/contributors/TEOS-10/GSW-Python .. image:: https://raster.shields.io/github/commit-activity/y/TEOS-10/GSW-Python .. image:: https://raster.shields.io/github/license/TEOS-10/GSW-Python `PyCO2SYS `_ Toolbox zur Lösung des marinen Karbonatsystems und zur Berechnung der damit verbundenen Meerwassereigenschaften. .. image:: https://raster.shields.io/github/stars/mvdh7/PyCO2SYS .. image:: https://raster.shields.io/github/contributors/mvdh7/PyCO2SYS .. image:: https://raster.shields.io/github/commit-activity/y/mvdh7/PyCO2SYS .. image:: https://raster.shields.io/github/license/mvdh7/PyCO2SYS `pyoos `_ High-Level-Datenerfassungsbibliothek für öffentlich zugängliche Met-/Ozeandaten. .. image:: https://raster.shields.io/github/stars/ioos/pyoos .. image:: https://raster.shields.io/github/contributors/ioos/pyoos .. image:: https://raster.shields.io/github/commit-activity/y/ioos/pyoos .. image:: https://raster.shields.io/github/license/ioos/pyoos `UMWM `_ :abbr:`UMWM (University of Miami Wave Model)` ist ein spektrales Ozeanwellenmodell. .. image:: https://raster.shields.io/github/stars/umwm/umwm .. image:: https://raster.shields.io/github/contributors/umwm/umwm .. image:: https://raster.shields.io/github/commit-activity/y/umwm/umwm .. image:: https://raster.shields.io/github/license/umwm/umwm Klima ~~~~~ `PyOWM `_ Ein Python-Wrapper um die OpenWeatherMap-Web-APIs. .. image:: https://raster.shields.io/github/stars/csparpa/pyowm .. image:: https://raster.shields.io/github/contributors/csparpa/pyowm .. image:: https://raster.shields.io/github/commit-activity/y/csparpa/pyowm .. image:: https://raster.shields.io/github/license/csparpa/pyowm `climpred `_ Überprüfung von Wetter- und Klimavorhersagen. .. image:: https://raster.shields.io/github/stars/pangeo-data/climpred .. image:: https://raster.shields.io/github/contributors/pangeo-data/climpred .. image:: https://raster.shields.io/github/commit-activity/y/pangeo-data/climpred .. image:: https://raster.shields.io/github/license/pangeo-data/climpred `xgcm `_ Postprocessing des `General Circulation Model `_ mit xarray. .. image:: https://raster.shields.io/github/stars/xgcm/xgcm .. image:: https://raster.shields.io/github/contributors/xgcm/xgcm .. image:: https://raster.shields.io/github/commit-activity/y/xgcm/xgcm .. image:: https://raster.shields.io/github/license/xgcm/xgcm `climlab `_ Prozessorientierte Klimamodellierung. .. image:: https://raster.shields.io/github/stars/climlab/climlab .. image:: https://raster.shields.io/github/contributors/climlab/climlab .. image:: https://raster.shields.io/github/commit-activity/y/climlab/climlab .. image:: https://raster.shields.io/github/license/climlab/climlab `aospy `_ Berechnungen, bei denen gitterförmige Klima- und Wetterdaten (insbesondere :file:`netCDF`-Dateien) verwendet werden, und die Verwaltung der Ergebnisse. .. image:: https://raster.shields.io/github/stars/spencerahill/aospy .. image:: https://raster.shields.io/github/contributors/spencerahill/aospy .. image:: https://raster.shields.io/github/commit-activity/y/spencerahill/aospy .. image:: https://raster.shields.io/github/license/spencerahill/aospy `OpenClimateGIS `_ Geoverarbeitung und Berechnungen auf CF-konformen Klimadatensätzen. .. image:: https://raster.shields.io/github/stars/NCPP/ocgis .. image:: https://raster.shields.io/github/contributors/NCPP/ocgis .. image:: https://raster.shields.io/github/commit-activity/y/NCPP/ocgis .. image:: https://raster.shields.io/github/license/NCPP/ocgis `oocgcm `_ Werkzeuge für die Verarbeitung und Analyse der Ergebnisse von allgemeinen Zirkulationsmodellen und gittergestützten Satellitendaten. .. image:: https://raster.shields.io/github/stars/lesommer/oocgcm .. image:: https://raster.shields.io/github/contributors/lesommer/oocgcm .. image:: https://raster.shields.io/github/commit-activity/y/lesommer/oocgcm .. image:: https://raster.shields.io/github/license/lesommer/oocgcm `pangaea `_ Xarray-Erweiterung für gerasterte Landoberflächen und Wettermodellausgaben. .. image:: https://raster.shields.io/github/stars/erdc/pangaea .. image:: https://raster.shields.io/github/contributors/erdc/pangaea .. image:: https://raster.shields.io/github/commit-activity/y/erdc/pangaea .. image:: https://raster.shields.io/github/license/erdc/pangaea Glaziologie ~~~~~~~~~~~ `OGGM `_ Open-Source-Modellierungsrahmen für Gletscher. .. image:: https://raster.shields.io/github/stars/OGGM/oggm .. image:: https://raster.shields.io/github/contributors/OGGM/oggm .. image:: https://raster.shields.io/github/commit-activity/y/OGGM/oggm .. image:: https://raster.shields.io/github/license/OGGM/oggm