https://github.com/52north/connectingeo
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.6%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: 52North
- Language: JavaScript
- Default Branch: master
- Size: 561 KB
Statistics
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
- Releases: 1
Metadata Files
README.md
ARCHIVED
This project is no longer maintained and will not receive any further updates. If you plan to continue using it, please be aware that future security issues will not be addressed.
52°North Sensor Web Docker Containers
This page provides a brief overview on the available Docker images for the Sensor Web, created and maintained by 52°North:
https://hub.docker.com/r/52north/
mdillon provides docker images of PostgreSQL with PostGIS extensions and templates installed. We have based our example databases on these images.
SOS Setup
The 52north/sos-configured docker image consists of a pre-configured SOS instance running in a Tomcat container. It has the following settings:
- Database connection: PostgreSQL on
postgres:5432with credentialspostgres:postgres(the DB is running in a DNS named (postgres) docker container) - Administrator account with credentials
admin:admin - Transactional operations enabled
The 52north/sos docker image is a simple instance of a non-configured SOS. This image requires the installation procedure to be executed.
Using an Empty Database
For this example, we use the non-configured 52north/sos docker image. Run the following docker commands:
- Start the postgres container:
docker run -e "POSTGRES_DB=sos" --name sos-empty-postgres -p 5432:5432 mdillon/postgis:9.5 - Run the sos docker image:
docker run --link sos-empty-postgres:postgres -p 8080:8080 52north/sos:4.3.8
Alternatively, you can use the following docker-compose file (run with
docker-compose build && docker-compose up):
yml
version: '2'
services:
postgres-db-empty:
image: mdillon/postgis:9.5
ports:
- 5432:5432
expose:
- 5432
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=sos
sos-service:
image: 52north/sos:4.3.8
ports:
- 8080:8080
links:
- postgres-db-empty:postgres
Now, access http://localhost:8080/52n-sos-webapp. The landing page will tell you to execute the installation procedure. Follow this guided procedure. In particular, apply the following properties:
- as the Datasource select
PostgreSQL/PostGIS - in the Database Configuration section, make sure to set the
Host to
postgres
You will have your SOS running in a few seconds.
Using a Pre-filled Database
For this example, we use the pre-configured 52north/sos-configured docker image. A database with some sample data is available as the 52north/sos-weather-postgres docker image. Execute the following docker commands:
- Start the postgres container:
docker run --name sos-weather-postgres -p 5432:5432 52north/sos-weather-postgres:4.3.8 - Run the sos-configured docker image:
docker run --link sos-weather-postgres:postgres -p 8080:8080 52north/sos-configured:4.3.8
Alternatively, you can use the following docker-compose file (run with
docker-compose build && docker-compose up):
yml
version: '2'
services:
sos-weather-postgres:
image: 52north/sos-weather-postgres:4.3.8
ports:
- 5432:5432
expose:
- 5432
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=sos
sos-service:
image: 52north/sos-configured:4.3.8
ports:
- 8080:8080
links:
- sos-weather-postgres:postgres
The SOS is now up and running at http://localhost:8080/52n-sos-webapp.
REST API Setup
Both the 52north/sos and the 52north/sos-configured image come with the Series REST API bundled in the webapp. You can access the API at: http://localhost:8080/52n-sos-webapp/api/v1/.
Helgoland (JS Client) Setup
The images also contain the Helgoland JavaScript client. You can access the client at: http://localhost:8080/52n-sos-webapp/static/client/jsClient/#map
Owner
- Name: 52°North Spatial Information Research GmbH
- Login: 52North
- Kind: organization
- Email: info@52north.org
- Location: Münster
- Website: https://52north.org/
- Twitter: fivetwon
- Repositories: 261
- Profile: https://github.com/52North
Advancing spatial information infrastructures to foster open science
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: over 1 year ago
All Time
- Total issues: 0
- Total pull requests: 2
- Average time to close issues: N/A
- Average time to close pull requests: less than a minute
- Total issue authors: 0
- Total pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
- matthesrieke (2)