Source code for enpt.processors.dem_preprocessing.dem_preprocessing

# -*- coding: utf-8 -*-

# EnPT, EnMAP Processing Tool - A Python package for pre-processing of EnMAP Level-1B data
#
# Copyright (C) 2018-2024 Karl Segl (GFZ Potsdam, segl@gfz-potsdam.de), Daniel Scheffler
# (GFZ Potsdam, danschef@gfz-potsdam.de), Niklas Bohn (GFZ Potsdam, nbohn@gfz-potsdam.de),
# Stéphane Guillaso (GFZ Potsdam, stephane.guillaso@gfz-potsdam.de)
#
# This software was developed within the context of the EnMAP project supported
# by the DLR Space Administration with funds of the German Federal Ministry of
# Economic Affairs and Energy (on the basis of a decision by the German Bundestag:
# 50 EE 1529) and contributions from DLR, GFZ and OHB System AG.
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version. Please note the following exception: `EnPT` depends on tqdm, which
# is distributed under the Mozilla Public Licence (MPL) v2.0 except for the files
# "tqdm/_tqdm.py", "setup.py", "README.rst", "MANIFEST.in" and ".gitignore".
# Details can be found here: https://github.com/tqdm/tqdm/blob/master/LICENCE.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.

"""EnPT pre-processing module for digital elevation models."""

from typing import Union, Tuple  # noqa: F401
from multiprocessing import cpu_count
import numpy as np
from pyproj import CRS

from geoarray import GeoArray
from py_tools_ds.geo.coord_trafo import reproject_shapelyGeometry, transform_any_prj
from py_tools_ds.geo.vector.topology import get_footprint_polygon, get_overlap_polygon

from ..spatial_transform import Geometry_Transformer, get_UTMEPSG_from_LonLat, get_center_coord

__author__ = 'Daniel Scheffler'


[docs] class DEM_Processor(object): def __init__(self, dem_path_geoarray: Union[str, GeoArray], enmapIm_cornerCoords: Tuple[Tuple[float, float]], CPUs: int = None): self.dem = GeoArray(dem_path_geoarray) self.enmapIm_cornerCoords = enmapIm_cornerCoords self.CPUs = CPUs or cpu_count() self._set_nodata_if_not_provided() self._validate_input()
[docs] def _validate_input(self): # check geocoding of DEM if not self.dem.is_map_geo: raise ValueError((self.dem.gt, self.dem.prj), 'The provided digital elevation model has no valid geo-coding or projection.') # check if provided projection is WGS-84 ell = CRS(self.dem.prj).datum.name if not ell.startswith('World Geodetic System 1984'): raise ValueError(ell, "The digital elevation model must be provided with 'WGS84' as geographic datum.") # check overlap dem_ll_mapPoly = reproject_shapelyGeometry(self.dem.footprint_poly, prj_src=self.dem.epsg, prj_tgt=4326) enmapIm_ll_mapPoly = get_footprint_polygon(self.enmapIm_cornerCoords, fix_invalid=True) overlap_dict = get_overlap_polygon(dem_ll_mapPoly, enmapIm_ll_mapPoly) overlap_perc = round(overlap_dict['overlap percentage'], 4) if overlap_perc < 100: # compute minimal extent in user provided projection cornersXY = np.array([transform_any_prj(4326, self.dem.epsg, x, y) for x, y in self.enmapIm_cornerCoords]) xmin, xmax = cornersXY[:, 0].min(), cornersXY[:, 0].max() ymin, ymax = cornersXY[:, 1].min(), cornersXY[:, 1].max() raise ValueError('The provided digital elevation model does not cover the EnMAP image completely ' '(only around %.1f percent). The minimal needed extent in the provided projection is: \n' 'xmin: %s, xmax: %s, ymin: %s, ymax: %s.' % (overlap_perc, xmin, xmax, ymin, ymax))
[docs] def _set_nodata_if_not_provided(self): # noinspection PyProtectedMember if self.dem._nodata is None: self.dem.nodata = -9999
[docs] @classmethod def get_flat_dem_from_average_elevation(cls, corner_coords_lonlat, average_elevation, xres=30, yres=30): """Return a 'flat DEM' instance of DEM_Processor. (a GeoArray fully covering the given coorner coordinates with the average elevation as pixel values) :param corner_coords_lonlat: corner coordinates to be covered by the output DEM :param average_elevation: average elevation in meters :param xres: x-resolution in meters :param yres: y-resolution in meters :return: """ # compute the dimensions of the flat output DEM tgt_utm_epsg = get_UTMEPSG_from_LonLat(*get_center_coord(corner_coords_lonlat)) corner_coords_utm = [transform_any_prj(prj_src=4326, prj_tgt=tgt_utm_epsg, x=x, y=y) for x, y in corner_coords_lonlat] x_all, y_all = list(zip(*corner_coords_utm)) cols = int(np.ceil((max(x_all) - min(x_all)) / xres)) + 2 rows = int(np.ceil((max(y_all) - min(y_all)) / yres)) + 2 # get a GeoArray instance dem_gA = GeoArray(np.full((rows, cols), fill_value=average_elevation), geotransform=(np.floor(min(x_all)) - xres, xres, 0, np.ceil(max(y_all)) + yres, 0, -yres), projection=CRS(tgt_utm_epsg).to_wkt()) return cls(dem_gA, corner_coords_lonlat)
[docs] def fill_gaps(self): pass
[docs] def compute_slopes(self): # compute on map geometry (as provided) pass
[docs] def compute_aspect(self): # compute on map geometry (as provided) pass
[docs] def to_sensor_geometry(self, lons: np.ndarray, lats: np.ndarray): GT = Geometry_Transformer(lons=lons, lats=lats, backend='gdal', resamp_alg='bilinear', nprocs=self.CPUs) data_sensorgeo = GT.to_sensor_geometry(self.dem) return GeoArray(data_sensorgeo)