Skip to content

Multi-scale 4D-Earth framework indexation formalism

License

Notifications You must be signed in to change notification settings

nils-hamel/liberatosthene

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

The liberatosthene and eratosthene-suite offer an four dimensional indexation framework for large scale three dimensional models. It allows to organize, store and broadcast network access to large scale models referenced in both space and time in an efficient manner.

Initially, the framework solved the problem of large scale point-based models management and visualization. As LIDAR and structure from motion being able to produce large point-based models, their storage and exploitation become a major challenge with the increase of their size. In addition, these technologies also allow to create models of the same location at different times increasing the data management problem.

To solve the initial challenge, the eratosthene framework implemented an Earth-attached indexation formalism for point based models. This allows to browse arbitrary large models through a simple series of multi-scale and time-attached queries. On the following image, a graphical view created with the framework shows the ability of managing large scale models such as the SRTM topographic model weighting around 500 Gio as a monolithic object :


 
View of Europa and the Swiss Alps - Data : NASA SRTM topographic model colored using NASA Visible Earth images


Another example of large scale model being able to be efficiently stored and accessed through the eratosthene framework are the following LIDAR model of the Geneva state weighting up to 256 Gio as a monolithic object :


 
View of the city of Geneva - Data : aerial LIDAR campaign conducted by the Geneva SITG in 2009


Of course, any type of point-based models can be considered through the eratosthene framework as for example model computed from images and strcutrue from motion :


 
View of the city of Venice in 2010 - Data : photogrammetric model computed at the DHLAB using IUAV University aerial images, openMVG and openMVS open source solutions


The indexation formalism implemented initially for the point-based models allows to deal with model coming with any type of scale, from large scale topographic models to very specifically located models in order to ensure a continuity in the space dimensions :


 
View of the Fontainebleau Castle in 2017 - Data : photogrammetric model computed at the DHLAB using openMVG and openMVS open source solutions


The implemented indexation formalism is then able to store and broadcast wide variety of models through a single and unified formalism creating a spatial and temporal continuity between the models. An example of temporal continuity is shown on the following images showing the same location at different position in time :


 
View of the city of Geneva in 2009 and 2013 - Data : photogrammetric model computed at the DHLAB using SITG aerial images, openMVG and openMVS open source solutions


In addition, the indexation formalism applied on point based models offer a natural spatio-temporal grid on which specific operations can be easily performed. For example, logical convolutions can be computed on the fly on point-based models. This allows for example to apply an AND logical operator between two different positions in time to show only the elements identical on both time as illustrated on the following images :


 
View of the AND logical operator applied on the LIDAR models of Geneva in 2005 and 2009 - Data : aerial LIDAR campaigns conducted by the Geneva SITG in 2005 and 2009


In a second evolution, the framework and indexation formalism were adapted to be able to ingest, store and broadcast all types of graphical primitives. The temporal and spatial multi-scale architecture were then extended to take into account such type of primitives. As a result, arbitrary large vector models can be handled by the framework :


 
View of a volumetric polygonal of the city of Geneva in 2018 and the land register of the city of Chaux-de-Fonds in 2004 - Data : SITG building model and SITN land register


This evolution lead to a much richer framework able to ensure the continuity between space, time and the different types of model. As an example, the following image shows example of communication between different type of data such as vector models and point-based models :


 
View of mixed models of the city of Chaux-de-Fonds : 2004 land register and 2018 volumetric model (left) 2004 land register and 2016 colored lidar model (right) - Data : SITN


The eratosthene-suite repository stores the front-end elements of the eratosthene framework while the liberatosthene repository hold the library implementing the details of the framework and its generalized Earth-attached space-time indexation formalism.

Copyright and License

liberatosthene - Nils Hamel
Copyright (c) 2016-2020 DHLAB, EPFL
Copyright (c) 2020 Republic and Canton of Geneva

This program is licensed under the terms of the GNU GPLv3. Documentation and illustrations are licensed under the terms of the CC BY 4.0.

Dependencies

The liberatosthene comes with the following package (Ubuntu 20.04 LTS) dependencies (Instructions) :

  • build-essential

The code documentation is built using Doxygen.

Compilation

To build the project, including the sub-modules, use make with the following targets :

$ make clean-all && make all

To rebuild the binaries without rebuilding sub-modules, use the make targets :

$ make clean && make build

To only rebuild sub-modules, use the make command with the targets :

$ make clean-module && make module

To generate the documentation of the project, use the targets :

$ make clean-doc && make doc

and the targets :

$ make clean-all-doc && make all-doc

to generate the documentation of the project and its sub-modules.