Brains Coders

Brains Engineering Blog

Installing Rasdaman - The Raster Data Manager

rasdaman ("raster data manager") is an application that allows storing and querying massive multi-dimensional arrays, such as sensor data, images, simulations, and statistics data appearing in domains like earth, space, and life science. It has a web interface running on Tomcat 8 and a shell query language.

We have installed on Ubuntu 16 - Xenial.

If you follow the instructions on their site you could probably encounter some issue.

These are the step:

# For ubuntu 16.04 

echo "deb [arch=amd64] http://download.rasdaman.org/packages/ubuntu xenial stable" | sudo tee /etc/apt/sources.list.d/rasdaman.list 

sudo apt-get update 
sudo apt-get install rasdaman
source /etc/profile.d/rasdaman.sh

during the first run of apt-get install we got the message: 

E: Failed to fetch http://download.rasdaman.org/packages/ubuntu/dists/xenial/stable/binary-amd64/rasdaman_9.4.0-3_amd64.deb  Hash Sum mismatch

We have solved by running an apt clean and update commands:

sudo rm -rf /var/lib/apt/lists/*
sudo apt clean
sudo apt update



Loading