Skip to content

wanam/mdl-geo-enrichment

 
 

Repository files navigation

mdl-geo-enrichment Build Status

Description

Mashup REST API for mobility data.

This is a geographical enrichment demonstrator that Aggregates and enrich information from the following 3 sources:

Geographical demonstrator supports 3 standard data format for enrichment:

  • OSM: Open Street Map
  • GTFS: General Transit Feed Specification
  • GeoJson: Representation of geographical features based on Json

An example of API enrichment is illustrated in the bellow sequence diagram:

Sequence Diagram

Prerequisites

  • Install OpenJDK 17
  • Install Node.js
  • Install OsmToGeoJson module
  • Install GtfsToGeoJson module
$ npm install -g osmtogeojson
$ npm install -g gtfs-to-geojson

Build and Run

$ mvn install -DskipTests
$ mvn spring-boot:run

The application is also packaged as a standalone jar which can be run as follows:

$ java -jar target/mdl-geo-enrichment-0.0.1-SNAPSHOT.jar

Run as docker image

A docker image is built automatically upon main branch and pushed to docker hub with the deployed application and all prerequisites installed: openjdk11-jre & nodejs & osmtogeojson module

docker run -d -p 80:80 -p 443:443 wanam/mdl-geo-enrichment:latest --pull=always

/!\ A selfsigned certificate is used for TLS testing purposes, do not use it for production! An authority cetificate will be needed for production use.

Browse Swagger UI

Once the application is up, you can browse the apis on your local server through HTTP and HTTPS

Enriched data will be stored on a separate attribute 'enriched_properties' for each stop point on the api response.

About

Geographical enrichment demonstrator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 99.6%
  • Dockerfile 0.4%