Difference between revisions of "TerraHS"

From HaskellWiki
Jump to navigation Jump to search
Line 5: Line 5:
   
 
We have developed TerraHS, a software component that enables the development of geographical applications in a functional language, using the data handling capabilities of TerraLib. TerraLib is a C++ library that supports different spatial database management systems, and that includes a large number of spatial algorithms. As a result, we get a combination of the good features of both programming paradigms.
 
We have developed TerraHS, a software component that enables the development of geographical applications in a functional language, using the data handling capabilities of TerraLib. TerraLib is a C++ library that supports different spatial database management systems, and that includes a large number of spatial algorithms. As a result, we get a combination of the good features of both programming paradigms.
 
 
   
 
== Documentation ==
 
== Documentation ==
Line 33: Line 31:
   
 
The uninstallation procedure:
 
The uninstallation procedure:
 
 
cd package
 
cd package
 
make uninstall
 
make uninstall
 
 
 
=== Installation notes for Windows ===
 
=== Installation notes for Windows ===
 
 
 
=== Papers and Thesis ===
 
=== Papers and Thesis ===
 
Some papers and thesis that use TerraHS:
 
Some papers and thesis that use TerraHS:

Revision as of 14:57, 23 November 2009


What is it ?

We have developed TerraHS, a software component that enables the development of geographical applications in a functional language, using the data handling capabilities of TerraLib. TerraLib is a C++ library that supports different spatial database management systems, and that includes a large number of spatial algorithms. As a result, we get a combination of the good features of both programming paradigms.

Documentation

Installation notes for Linux

Software dependencies in debian package

The installation procedure:

dpkg -i package.deb

The uninstallation procedure:

dpkg -r package

Software dependencies in source file

The installation procedure:

tar xvzf package.tar.gz
cd package
./configure
make
make install

The uninstallation procedure:

 cd package
 make uninstall

Installation notes for Windows

Papers and Thesis

Some papers and thesis that use TerraHS:

Reports

Demos

Download and Installation

Softwares dependencies

TerraHS requires the instalation of two additional libraries:

Translib, a library for translation among different geographic format files (no database connection), based in the TerraLib library. This library is required for TerraHS to deal whith shape files (*.shp).

Terralib4c, a library that maps c++ Terralib functions and classes to C functions. Required by Haskell to do binding with TerraLib api.

TerraHS