'Defence Gridded Elevation Data (DGED, 32 Bit floating point) formatted Copernicus DEM GLO-30 data.
The Copernicus Digital Elevation Model is a Digital Surface Model (DSM) that represents the surface of the Earth
including buildings, infrastructure and vegetation. The Copernicus DEM is provided in 3 different instances: EEA-10,
GLO-30 and GLO-90. GLO-30 provides worldwide coverage at 30 meters.Data were acquired through the TanDEM-X mission
between 2011 and 2015. The datasets were made available for use in 2019 and will be maintained until 2026.
',
1
Collection("COP_DEM_GLO30_DTED")
id:
'COP_DEM_GLO30_DTED',
title:
'Copernicus DEM GLO-30 DTED',
missionStartDate:
'2010-06-21T00:00:00Z',
platform:
'TerraSAR',
sensorType:
'ALTIMETRIC',
keywords:
'TerraSAR,TanDEM-X,DEM,surface,GLO-30,DSM,DTED',
license:
'other',
abstract:
'Digital Terrain Elevation Data (DTED, 16 Bit signed integer) formatted Copernicus DEM GLO-30 data.
The Copernicus Digital Elevation Model is a Digital Surface Model (DSM) that represents the surface of the Earth
including buildings, infrastructure and vegetation. The Copernicus DEM is provided in 3 different instances: EEA-10,
GLO-30 and GLO-90. GLO-30 provides worldwide coverage at 30 meters.Data were acquired through the TanDEM-X mission
between 2011 and 2015. The datasets were made available for use in 2019 and will be maintained until 2026.
',
2
Collection("COP_DEM_GLO90_DGED")
id:
'COP_DEM_GLO90_DGED',
title:
'Copernicus DEM GLO-90 DGED',
missionStartDate:
'2010-06-21T00:00:00Z',
platform:
'TerraSAR',
sensorType:
'ALTIMETRIC',
keywords:
'TerraSAR,TanDEM-X,DEM,surface,GLO-90,DSM,GDGED',
license:
'other',
abstract:
'Defence Gridded Elevation Data (DGED, 32 Bit floating point) formatted Copernicus DEM GLO-90 data.
The Copernicus Digital Elevation Model is a Digital Surface Model (DSM) that represents the surface of the Earth
including buildings, infrastructure and vegetation. The Copernicus DEM is provided in 3 different instances: EEA-10,
GLO-30 and GLO-90. GLO-90 provides worldwide coverage at 90 meters.Data were acquired through the TanDEM-X mission
between 2011 and 2015. The datasets were made available for use in 2019 and will be maintained until 2026.
',
3
Collection("COP_DEM_GLO90_DTED")
id:
'COP_DEM_GLO90_DTED',
title:
'Copernicus DEM GLO-90 DTED',
missionStartDate:
'2010-06-21T00:00:00Z',
platform:
'TerraSAR',
sensorType:
'ALTIMETRIC',
keywords:
'TerraSAR,TanDEM-X,DEM,surface,GLO-90,DSM,DTED',
license:
'other',
abstract:
'Digital Terrain Elevation Data (DTED, 16 Bit signed integer) formatted Copernicus DEM GLO-90 data.
The Copernicus Digital Elevation Model is a Digital Surface Model (DSM) that represents the surface of the Earth
including buildings, infrastructure and vegetation. The Copernicus DEM is provided in 3 different instances: EEA-10,
GLO-30 and GLO-90. GLO-90 provides worldwide coverage at 90 meters.Data were acquired through the TanDEM-X mission
between 2011 and 2015. The datasets were made available for use in 2019 and will be maintained until 2026.
',
importfolium# Create a map zoomed over the search areafmap=folium.Map([43.5,1.5],zoom_start=8)# Create a layer that represents the search area in redfolium.Rectangle(bounds=[search_geom[0:2][::-1],search_geom[2:4][::-1]],color="red",tooltip="Search extent").add_to(fmap)# Create a layer that maps the products foundfolium.GeoJson(data=search_result,# SearchResult has a __geo_interface__ interface used by folium to get its GeoJSON representationtooltip=folium.GeoJsonTooltip(fields=["title"])).add_to(fmap)fmap
[6]:
Make this Notebook Trusted to load map: File -> Trust Notebook