All Projects → 52North → Geometafacet

52North / Geometafacet

Licence: apache-2.0
GeoMetaFacet is a web client to explore and visualize geodata and metadata.

Programming Languages

javascript
184084 projects - #8 most used programming language

GeoMetaFacet

GeoMetaFacet is a web client to explore and visualize geodata. It focuses on a user-friendly and interactive navigation through the metadata and allows the user to quickly get an overview of available data.

Core features of GeoMetaFacet are an interactive data lineage graph and a hierarchy tree, which can be used to evaluate available data. Furthermore several map functionalities, e.g. time series data visualization, geographic search with gazetteer Geonames are integrated into the web client.

Further information can be found at: http://52north.org/communities/metadata-management/gmf

Live demo is available at: http://geoportal.glues.geo.tu-dresden.de:8080/GeoMetaFacet/index.html

Structure

GeoMetaFacet is written in Javascript and Java. The modules and their functionality are briefly described here.

  • /WebContent - Browser part of the application (Javascript)
  • /gmf - HSQL database (implemented as file, filled with inital data)
  • /src - Server components of the application (Java)
    • /geometafacet - core scripts (filling database, evaluating metadata xml documents) + helper classes
    • /heatmap - test implementation of storing user interactions (mouse clicks) and visualize as heatmap (not needed for discovery of geodata). Implemented as servlet.
    • /metaviz - implementation of interactive lineage graph. Scripts for metadata xml evaluation, metadata requests (needs further CSW or DB connection). Implemented as servlet.
    • /time4maps - implementation of WMS request for time-variate data visualization. Scripts for requesting and evaluating WMS capabilities documents. Implemented as servlet.

Map client (Time4Maps) and lineage graph (MetaViz) can be used as standalone implementations via parameterized calls.

Installation

The basic installation steps are

  • Download code form GitHub: git clone https://github.com/52North/GeoMetaFacet.git
  • Configure CSW connection (see below)
  • Deploy the web archives in a servlet container (e.g. Apache Tomcat)
  • Start application in web browser - e.g. http://localhost:8080/GeoMetaFacet/index.html

Configuration

For the generation of the internal used HSQL database you need a CSW, database or file connection to request metadata, such as lineage data. The configuration can be set in .../src/tud/geometafacet/helper/Constants.java. The parameters for the database generation are only needed, if you want to use your own metadata. Otherwise, you do not have to set these params and use the given metadata examples (see folder gmf).

  • cswURL - used in tud.metaviz.cnnection.csw.CSWConnection (for lineage graph in csw mode) - should look like this: http://yourdomain/soapServices/CSWStartup
  • dbEndpoint - used in tud.geometafacet.controlling.RequestControllingJDBC (for db generation) - should look like this: http://yourdomain/username
  • jdbcURL - used in tud.metaviz.connection.db.JDBCConnection (for lineage graph in db mode) - should look like this: jdbc:postgresql://databaseurl/username
  • dbUser - used in tud.metaviz.connection.db.JDBCConnection (for lineage graph in db mode) - database user
  • dbPasswd - used in tud.metaviz.connection.db.JDBCConnection (for lineage graph in db mode) - password of database user

Javascript Libraries

The website module uses a collection of Javascript libraries:

Java Libraries

The server component uses a collection of Java libraries:

License

The GeoMetaFacet project is licensed under The Apache Software License, Version 2.0

Contact

Christin Henzen ([email protected])

Support: Metadatada management community mailing list, see http://metadata.forum.52north.org/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].