Skip to content

DRIVER-EU/chemical_hazard_tool

Repository files navigation

Chemical Hazard Tool

A simple GUI and Kafka front-end to generate chemical hazard sources, and display its output.

Screenshot

Installation

The application is a mono-repository, developed in TypeScript using Nest.js for the server, and Mithril for the GUI. It consists of the following packages:

  • Server: to POST new chemical hazard sources to Kafka and GET chemical hazard clouds as GeoJSON from Kafka.
  • GUI: to enter new source definitions and show the resulting cloud.
  • Shared: shared models

To get the application and all its subservices started you need to follow these steps:

  1. Clone all the TNO services, next to the current folder (so above the current directory):
cd ..
git clone [email protected]:libraries/python/python-common.git
git clone [email protected]:reinier-sterkenburg/projects/assistance/dispersion.git
git clone [email protected]:reinier-sterkenburg/projects/assistance/gps-tracking.git
git clone [email protected]:reinier-sterkenburg/projects/assistance/webservice.git
git clone [email protected]:reinier-sterkenburg/projects/assistance/meteowebservice.git

You should now have the following folder structure:

chemical_hazard_tool/
|- TypeScript code for the server and GUI
|- README.md (the one you're reading)
|- docker/
|- etc....
python-common/
|- Common python functions
|- etc...
dispersion/
|- Dispersion calculation core
|- etc...
gps-tracking/
|- GPS server and forwarder
|- sas_forwarder/
|- traccar/
|- etc...
webservice/
|- REST interface to the dispersion calculation
meteowebservice/
|- REST service for meteo data
  1. Now run docker-compose to start all services with the correct configuration:
cd docker
docker-compose up -d

The GUI will then be available at localhost:3333.
Refer to the README file in the docker folder for more information on what all the different services do.

Development

To run the node parts of this repository separately (i.e. without the Kafka infrastructure) you can run:

# If you don't have pnpm installed, you can install it using `npm i -g pnpm`
pnpm multi install
npm start

This installs the npm packages, their dependencies and then starts the server, gui and shared applications.

If you want to have the underlying Kafka infrastructure you need to run the docker-compose command above, but first comment out the chemical_hazard_tool service such that docker does not start it in parllel to npm. Otherwise the chemical hazard tool is started twice (once as a docker image, once by npm) which creates port conflicts and confusing issues.

Assuming the project is running using npm start, you can access:

Schemas

The chemical hazard source is defined in packages/server/schemas/cbrn/chemical_hazard.avsc. You can run npm run convert to update the TypeScript interface definition.

About

Tool to compute the effects of a chemical hazard.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published