Skip to content

Commit 5db65fe

Browse files
author
jannik brack
committed
PointCloud Deploy, adding output_pointcloud.json with pointclout data, some small ui changes and adding descriptions
1 parent 83d4e24 commit 5db65fe

File tree

7 files changed

+2090795
-111
lines changed

7 files changed

+2090795
-111
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,42 @@ jobs:
1111
uses: actions/checkout@v2.3.1
1212
with:
1313
persist-credentials: false
14-
- name: Install and build running contest, webGis and power Plants🔧
14+
- name: Install and build running contest🔧
1515
run: | # Install packages and build the Storybook files
1616
mkdir docs-build || true
1717
cd running_contest
1818
yarn
1919
yarn build
2020
cd ..
2121
cp -r running_contest/build docs-build/running_contest
22+
- name: Install and build web gis🔧
23+
run: |
2224
cd webGis
2325
yarn
2426
CI=false yarn build
2527
cd ..
2628
cp -r webGis/build docs-build/webGis
29+
- name: Install and build power Plants🔧
30+
run: |
2731
cd powerplants
2832
yarn
2933
CI=false yarn build
3034
cd ..
3135
cp -r powerplants/build docs-build/powerplants
36+
- name: Install and build multi-tab🔧
37+
run: |
38+
cd multi_tab
39+
yarn
40+
CI=false yarn build
41+
cd ..
42+
cp -r multi_tab/dist docs-build/multi_tab
43+
- name: Install and build multi-tab🔧
44+
run: |
45+
cd pointcloud
46+
yarn
47+
CI=false yarn build
48+
cd ..
49+
cp -r pointcloud/dist docs-build/pointcloud
3250
- name: copy catalogue metadata
3351
run: |
3452
cp mc_meta.json docs-build/mc_meta.json

mc_meta.json

Lines changed: 95 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,102 @@
11
{
22
"AppRunningContest": {
3-
"name": "AppRunningContest",
4-
"title": "Running contest",
5-
"description": "A WebGis application which shows the results of a running contest between members of the different WhereGroup company locations in Germany.",
6-
"i18n": {
7-
"de": {
8-
"title": "Laufwettbewerb",
9-
"description": "Eine WebGis Anwendung die den Laufwettbewerb zwischen Mitarbeitern der verschiedenen WhereGroup Standorte in Deutschland darstellt."
10-
}
11-
},
12-
"tags": [],
13-
"category": "",
14-
"type": "application",
15-
"components": [
16-
"MlTransitionGeoJsonLayer",
17-
"MlGeoJsonLayer",
18-
"MlVectorTileLayer"
19-
],
20-
"thumbnail": "https://mapcomponents.github.io/react-map-components-apps/assets/thumbnails/AppRunningContest.png",
21-
"demos": [
22-
{
23-
"name": "Demo",
24-
"url": "https://mapcomponents.github.io/react-map-components-apps/running_contest/"
25-
}
26-
]
3+
"name": "AppRunningContest",
4+
"title": "Running contest",
5+
"description": "A WebGis application which shows the results of a running contest between members of the different WhereGroup company locations in Germany.",
6+
"i18n": {
7+
"de": {
8+
"title": "Laufwettbewerb",
9+
"description": "Eine WebGis Anwendung die den Laufwettbewerb zwischen Mitarbeitern der verschiedenen WhereGroup Standorte in Deutschland darstellt."
10+
}
11+
},
12+
"tags": [],
13+
"category": "",
14+
"type": "application",
15+
"components": [
16+
"MlTransitionGeoJsonLayer",
17+
"MlGeoJsonLayer",
18+
"MlVectorTileLayer"
19+
],
20+
"thumbnail": "https://mapcomponents.github.io/react-map-components-apps/assets/thumbnails/AppRunningContest.png",
21+
"demos": [
22+
{
23+
"name": "Demo",
24+
"url": "https://mapcomponents.github.io/react-map-components-apps/running_contest/"
25+
}
26+
]
2727
},
2828
"AppWebGis": {
29-
"name": "AppWebGis",
30-
"title": "WebGis",
31-
"description": "An example of a WebGis application with different measure tools, visualizing multiple layers containg various data within north-rhine westphalia",
32-
"i18n": {
33-
"de": {
34-
"title": "WebGis",
35-
"description": "Eine WebGis Anwenung mit Messwerkzeugen, dargestellt werden mehere Layer mit unetrschiedlichen Informationen in NRW"
36-
}
37-
},
38-
"tags": [],
39-
"category": "",
40-
"type": "application",
41-
"components": [
42-
"MlGeoJsonLayer",
43-
"MlIconLayer",
44-
"MlWmsLoader",
45-
"MlNavigationTools"
46-
],
47-
"thumbnail": "https://mapcomponents.github.io/react-map-components-apps/assets/thumbnails/AppWebGis.png",
48-
"demos": [
49-
{
50-
"name": "Demo",
51-
"url": "https://mapcomponents.github.io/react-map-components-apps/webGis/"
52-
}
53-
]
54-
},
29+
"name": "AppWebGis",
30+
"title": "WebGis",
31+
"description": "An example of a WebGis application with different measure tools, visualizing multiple layers containg various data within north-rhine westphalia",
32+
"i18n": {
33+
"de": {
34+
"title": "WebGis",
35+
"description": "Eine WebGis Anwenung mit Messwerkzeugen, dargestellt werden mehere Layer mit unetrschiedlichen Informationen in NRW"
36+
}
37+
},
38+
"tags": [],
39+
"category": "",
40+
"type": "application",
41+
"components": [
42+
"MlGeoJsonLayer",
43+
"MlIconLayer",
44+
"MlWmsLoader",
45+
"MlNavigationTools"
46+
],
47+
"thumbnail": "https://mapcomponents.github.io/react-map-components-apps/assets/thumbnails/AppWebGis.png",
48+
"demos": [
49+
{
50+
"name": "Demo",
51+
"url": "https://mapcomponents.github.io/react-map-components-apps/webGis/"
52+
}
53+
]
54+
},
5555
"PowerPlantsApp": {
56-
"name": "PowerPlantsApp",
57-
"title": "World Power Plants",
58-
"description": "A WebGis application providing precise Information about various types of energy generation across the whole planet ",
59-
"i18n": {
60-
"de": {
61-
"title": "Energiekraftwerke weltweit",
62-
"description": "Eine WebGis-Anwendung welche Inofrmationen über Energieerzeugung auf der ganzen Welt darstellt"
63-
}
64-
},
65-
"tags": [],
66-
"category": "",
67-
"type": "application",
68-
"components": ["MlGeoJsonLayer", "MlWmsLoader", "MlNavigationTools"],
69-
"thumbnail": "https://mapcomponents.github.io/react-map-components-apps/assets/thumbnails/PowerPlants.png",
70-
"demos": [
71-
{
72-
"name": "Demo",
73-
"url": "https://mapcomponents.github.io/react-map-components-apps/powerplants/"
74-
}
75-
]
56+
"name": "PowerPlantsApp",
57+
"title": "World Power Plants",
58+
"description": "A WebGis application providing precise Information about various types of energy generation across the whole planet ",
59+
"i18n": {
60+
"de": {
61+
"title": "Energiekraftwerke weltweit",
62+
"description": "Eine WebGis-Anwendung welche Inofrmationen über Energieerzeugung auf der ganzen Welt darstellt"
63+
}
64+
},
65+
"tags": [],
66+
"category": "",
67+
"type": "application",
68+
"components": [
69+
"MlGeoJsonLayer",
70+
"MlWmsLoader",
71+
"MlNavigationTools"
72+
],
73+
"thumbnail": "https://mapcomponents.github.io/react-map-components-apps/assets/thumbnails/PowerPlants.png",
74+
"demos": [
75+
{
76+
"name": "Demo",
77+
"url": "https://mapcomponents.github.io/react-map-components-apps/powerplants/"
78+
}
79+
]
80+
},
81+
"PointCloud": {
82+
"name": "PointCloud",
83+
"title": "PointCloud on world map",
84+
"description": "Ever heard of a PointCloud? Basically, it's a set of points placed in 3-dimensional space creating a detailed 3D object. This application contains an example of a point cloud, but projected onto the world map.",
85+
"i18n": {
86+
"de": {
87+
"title": "Energiekraftwerke weltweit",
88+
"description": "Haben Sie schon einmal von einer PointCloud gehört? Im Grunde genommen handelt es sich um eine Reihe von Punkten, die im dreidimensionalen Raum platziert sind und ein detailliertes 3D-Objekt bilden. Diese Anwendung enthält ein Beispiel für eine Punktwolke, allerdings projiziert auf die Weltkarte."
89+
}
90+
},
91+
"tags": [],
92+
"category": "",
93+
"type": "application",
94+
"thumbnail": "https://mapcomponents.github.io/react-map-components-apps/assets/thumbnails/PowerPlants.png",
95+
"demos": [
96+
{
97+
"name": "Demo",
98+
"url": "https://mapcomponents.github.io/react-map-components-apps/pointcloud/"
99+
}
100+
]
76101
}
77102
}

pointcloud/.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ dist-ssr
2323
*.sln
2424
*.sw?
2525

26-
sample*
27-
public/output_pointcloud.json
26+
sample*

0 commit comments

Comments
 (0)