ASTER GDEM JSON-LD

Erika Imada Barcelos, Laura S. Bruckman, Roger H. French

2023-02-10

ASTER GDEM JSON-LD Description

ASTER (Terra Advanced Spaceborne Thermal Emission and Reflection Radiometer) Global Digital Elevation Model (GDEM) is a join initiative between NADA and the Ministry of Economy, Trade and Industry in Japan.

It consists of GeoTIFF images captured by ASTER satellites of the entire world, spanning from from 83 degrees north latitude to 83 degrees south, encompassing 99 percent of Earth’s landmass, including both water and land bodies. ASTER is currently in v3 improves and refined the algorithm and provides greater coverage and lower artifacts.

ASTER GDEM is composed of 22,912 tiles tiles, each having a 3601 x 3601(1 degree by 1 degree) pixels at a spatial resolution of 1 arc-second (30m). GDEM covers land a water bodies. Water is separate from land and classified according to three categories: ocean, river and lake. The algorithms and methods used to calculate elevation for each body used was different, since there are major differences among them.

Creating JSON-LD for ASTER GDEM in R

library(FAIRmaterials)

# An example data frame for CE
ASTER_Gdem <- data.frame(
  'latitude' = c('41.4993567', '43.4724567'),
  'longitude' = c('81.6944678', '86.8930345'),
  'typeBody' = c('land', 'lake'),
  'elevation' = c('250m', '300cm'),
)

# This will generate JSON-LD file for the example data
output <- fairify_data(ASTER_Gdem, saveLocal = TRUE)

Creating JSON-LD for ASTER GDEM in Python

from fairmaterials.fairify_data import *
import pandas as pd

# An example data frame for ASTER GDEM
ASTER_Gdem = pd.DataFrame  ('latitude' = [41.4993567, 43.4724567],
  'longitude' = [81.6944678, 86.8930345],
  'typeBody' = ['land', 'lake'],
  'elevation' = [250, 300]

# This will generate JSON-LD file for the example data
output <- fairify_data(ASTER_Gdem)

ASTER Gdem schema diagram

CE Formulations schema diagram

CE Formulations schema diagram

References

https://asterweb.jpl.nasa.gov/gdem.asp https://lpdaac.usgs.gov/documents/434/ASTGTM_User_Guide_V3.pdf https://lpdaac.usgs.gov/products/astgtmv003/

Acknowledgment

This material is based upon work in the CASFER National Science Foundation (NSF) Engineering Research Center under the under Grant No 2133576 sub award 21P735-03