Skip to content

Commit

Permalink
initial commit with current repo of maap edav
Browse files Browse the repository at this point in the history
  • Loading branch information
grallewellyn committed Jan 18, 2023
0 parents commit 5592459
Show file tree
Hide file tree
Showing 53 changed files with 23,915 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
bundle-report.html
20 changes: 20 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
The MIT License (MIT)

Copyright (c) 2018-present CGI

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# MAAP EDAV
Source code for the ESA Multi-Mission Algorithm and Analysis Platform (MAAP) Enhanced Data Visualization (EDAV) client

The application is avaiable here: https://liferay.val.esa-maap.org/web/guest/explore

## Building
This project requires a [Node version 16.13.1 or later](https://nodejs.org/en/download/) for build

First install the project dependencies by running

```bash
npm install
```

Then build by running

```bash
npm run build
```

The output will be available in the 'dist' directory ready to be served by a web server (e.g. Apache or NGINX)

To run a local development server run the command

```bash
npm run start
```

The client will be available at http://locahost:8449


## License
MIT (See [LICENSE.md](LICENSE.md))

Binary file added assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 78 additions & 0 deletions data/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"map": {
"baseLayers": [
{
"id": "S2",
"name": "Sentinel-2",
"source": {
"id": "wmts",
"url": "https://{s}.s2maps-tiles.eu/wmts/1.0.0/{Layer}/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpg",
"subdomains": ["a", "b", "c", "d", "e"],
"layer": "s2cloudless-2018_3857",
"style": "default",
"format": "image/jpeg",
"requestEncoding": "REST",
"matrixSet": "g",
"tileGrid": {
"maxZoom": 19
},
"srs": "EPSG:3857"
}
},
{
"id": "bing",
"name": "Bing",
"source": {
"id": "bing",
"imagerySet": "Aerial",
"key": "AmEV-s101vB0DGqgW8Y9rjCWBg3ZinPm_y-QM6RXHmds_mSiZDbYxeEFcugx10rr",
"maxZoom": 19
}
},
{
"id": "osm",
"name": "OpenStreetMap",
"source": {
"id": "osm"
}
}
],
"projections": [
{
"code": "EPSG:3857",
"name": "Mercator"
},
{
"code": "EPSG:4326",
"name": "Geographic"
}
],
"renderers": [
{
"id": "ol",
"name": "2D"
},
{
"id": "cesium",
"name": "3D",
"props": {
"allowFreeCameraRotation": false,
"sceneMode": "globe"
}
}
],
"initialOptions": {
"baseLayer": "S2",
"projection": "EPSG:3857",
"renderer": "cesium"
},
"initialState": {
"view": {
"viewport": {
"center": [12.5, 41.9],
"resolution": 6000
}
}
}
}
}
Loading

0 comments on commit 5592459

Please sign in to comment.