├── .bootstraprc ├── .browserslistrc ├── .dockerignore ├── .editorconfig ├── .gitignore ├── .nvmrc ├── .travis.yml ├── 52-apply-base-href.sh ├── 52-specify-different-port.sh ├── Dockerfile ├── LICENSE ├── README.md ├── angular.json ├── doc └── homepage │ ├── changelog.md │ ├── demo.md │ ├── description.md │ ├── gettingStarted.md │ ├── license.md │ ├── references.md │ └── userGuide.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── netlify.toml ├── netlify ├── _redirects └── assets │ └── settings.json ├── nginx.conf ├── package.json ├── protractor.conf.js ├── scripts ├── adjust-install.js ├── build-distributions.js ├── bundle-war.js ├── git.version.js └── install_local_toolbox.js ├── src ├── _bootstrap.scss ├── _variables.scss ├── apps │ ├── complete │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── router.service.ts │ │ ├── assets │ │ │ └── config │ │ │ │ └── settings.json │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ └── timeseries │ │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── router.service.ts │ │ ├── assets │ │ └── config │ │ │ └── settings.json │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json ├── assets │ ├── .gitkeep │ ├── i18n │ │ ├── de.json │ │ ├── en.json │ │ └── pt.json │ ├── marker-icon.png │ └── marker-shadow.png ├── common │ ├── components │ │ ├── basic-auth │ │ │ ├── basic-auth-informer-impl.service.ts │ │ │ ├── basic-auth.component.html │ │ │ ├── basic-auth.component.scss │ │ │ ├── basic-auth.component.spec.ts │ │ │ └── basic-auth.component.ts │ │ ├── components.module.ts │ │ ├── custom-auto-update-timespan │ │ │ ├── custom-auto-update-timespan.component.html │ │ │ └── custom-auto-update-timespan.component.ts │ │ ├── custom-favorite-toggler │ │ │ ├── custom-favorite-toggler.component.html │ │ │ ├── custom-favorite-toggler.component.scss │ │ │ ├── custom-favorite-toggler.component.spec.ts │ │ │ └── custom-favorite-toggler.component.ts │ │ ├── custom-list-selector │ │ │ ├── custom-list-selector.component.html │ │ │ ├── custom-list-selector.component.scss │ │ │ └── custom-list-selector.component.ts │ │ ├── custom-min-max-range │ │ │ ├── custom-min-max-range.component.html │ │ │ ├── custom-min-max-range.component.scss │ │ │ └── custom-min-max-range.component.ts │ │ ├── custom-multi-service-filter-selector │ │ │ ├── custom-multi-service-filter-selector.component.html │ │ │ ├── custom-multi-service-filter-selector.component.scss │ │ │ └── custom-multi-service-filter-selector.component.ts │ │ ├── custom-service-selector │ │ │ ├── custom-service-selector.component.html │ │ │ ├── custom-service-selector.component.scss │ │ │ └── custom-service-selector.component.ts │ │ ├── custom-time-range-slider │ │ │ ├── custom-time-range-slider.component.html │ │ │ ├── custom-time-range-slider.component.scss │ │ │ ├── custom-time-range-slider.component.spec.ts │ │ │ └── custom-time-range-slider.component.ts │ │ ├── custom-timespan-shift-selector │ │ │ ├── custom-timespan-shift-selector.component.html │ │ │ ├── custom-timespan-shift-selector.component.scss │ │ │ └── custom-timespan-shift-selector.component.ts │ │ ├── local-selector │ │ │ ├── local-selector.component.html │ │ │ ├── local-selector.component.scss │ │ │ └── local-selector.component.ts │ │ ├── locate-button │ │ │ ├── locate-button.component.html │ │ │ ├── locate-button.component.scss │ │ │ └── locate-button.component.ts │ │ ├── modal-geometry-viewer │ │ │ ├── modal-geometry-viewer.component.html │ │ │ ├── modal-geometry-viewer.component.scss │ │ │ └── modal-geometry-viewer.component.ts │ │ ├── modal-options-editor │ │ │ ├── modal-options-editor.component.html │ │ │ ├── modal-options-editor.component.scss │ │ │ └── modal-options-editor.component.ts │ │ ├── modal-timeseries-timespan │ │ │ ├── modal-timeseries-timespan.component.html │ │ │ ├── modal-timeseries-timespan.component.scss │ │ │ └── modal-timeseries-timespan.component.ts │ │ ├── permalink │ │ │ ├── in-mail │ │ │ │ ├── in-mail.component.html │ │ │ │ ├── in-mail.component.scss │ │ │ │ └── in-mail.component.ts │ │ │ ├── in-new-window │ │ │ │ ├── in-new-window.component.html │ │ │ │ ├── in-new-window.component.scss │ │ │ │ └── in-new-window.component.ts │ │ │ ├── permalink-button │ │ │ │ ├── permalink-button.component.html │ │ │ │ ├── permalink-button.component.scss │ │ │ │ └── permalink-button.component.ts │ │ │ └── to-clipboard │ │ │ │ ├── to-clipboard.component.html │ │ │ │ ├── to-clipboard.component.scss │ │ │ │ └── to-clipboard.component.ts │ │ ├── provider-parameter-selector │ │ │ ├── provider-parameter-selector.component.html │ │ │ ├── provider-parameter-selector.component.scss │ │ │ ├── provider-parameter-selector.component.spec.ts │ │ │ └── provider-parameter-selector.component.ts │ │ └── timespan-selector │ │ │ ├── timespan-selector.component.html │ │ │ ├── timespan-selector.component.scss │ │ │ └── timespan-selector.component.ts │ ├── info │ │ ├── info.module.ts │ │ └── view │ │ │ ├── view.component.html │ │ │ ├── view.component.scss │ │ │ ├── view.component.spec.ts │ │ │ └── view.component.ts │ ├── profiles │ │ ├── combi-view │ │ │ ├── combi-view-permalink.service.ts │ │ │ ├── combi-view.component.html │ │ │ ├── combi-view.component.scss │ │ │ ├── combi-view.component.spec.ts │ │ │ ├── combi-view.component.ts │ │ │ └── combi-view.service.ts │ │ ├── diagram │ │ │ ├── diagram-permalink.service.ts │ │ │ ├── diagram.component.html │ │ │ ├── diagram.component.scss │ │ │ ├── diagram.component.spec.ts │ │ │ ├── diagram.component.ts │ │ │ └── profile-entry │ │ │ │ ├── custom-profile-entry.component.html │ │ │ │ ├── custom-profile-entry.component.scss │ │ │ │ └── custom-profile-entry.component.ts │ │ ├── navigation │ │ │ ├── navigation.component.html │ │ │ ├── navigation.component.scss │ │ │ ├── navigation.component.spec.ts │ │ │ └── navigation.component.ts │ │ ├── profiles.module.ts │ │ ├── selection │ │ │ ├── selection-permalink.service.ts │ │ │ ├── selection.component.html │ │ │ ├── selection.component.scss │ │ │ ├── selection.component.spec.ts │ │ │ ├── selection.component.ts │ │ │ └── selection.service.ts │ │ └── services │ │ │ └── profiles.service.ts │ ├── settings │ │ └── helgoland-settings.ts │ ├── timeseries │ │ ├── diagram │ │ │ ├── diagram-permalink.service.ts │ │ │ ├── diagram.component.html │ │ │ ├── diagram.component.scss │ │ │ ├── diagram.component.ts │ │ │ └── legend-entry │ │ │ │ ├── custom-dataset-permalink-download.component.html │ │ │ │ ├── custom-dataset-permalink-download.component.scss │ │ │ │ ├── custom-dataset-permalink-download.component.ts │ │ │ │ ├── legend-entry.component.html │ │ │ │ ├── legend-entry.component.scss │ │ │ │ ├── legend-entry.component.spec.ts │ │ │ │ └── legend-entry.component.ts │ │ ├── favorites │ │ │ ├── favorites.component.html │ │ │ ├── favorites.component.scss │ │ │ └── favorites.component.ts │ │ ├── list-selection │ │ │ ├── list-selection.component.html │ │ │ ├── list-selection.component.scss │ │ │ └── list-selection.component.ts │ │ ├── map-selection │ │ │ ├── map-selection.component.html │ │ │ ├── map-selection.component.scss │ │ │ └── map-selection.component.ts │ │ ├── navigation │ │ │ ├── navigation.component.html │ │ │ ├── navigation.component.scss │ │ │ └── navigation.component.ts │ │ ├── services │ │ │ ├── list-selection-cache.service.ts │ │ │ ├── map-selection-cache.service.ts │ │ │ ├── timeseries-router.service.ts │ │ │ └── timeseries.service.ts │ │ ├── table │ │ │ ├── table.component.html │ │ │ ├── table.component.scss │ │ │ └── table.component.ts │ │ └── timeseries.module.ts │ └── trajectories │ │ ├── navigation │ │ ├── navigation.component.html │ │ ├── navigation.component.scss │ │ ├── navigation.component.spec.ts │ │ └── navigation.component.ts │ │ ├── selection │ │ ├── selection.component.html │ │ ├── selection.component.scss │ │ ├── selection.component.spec.ts │ │ └── selection.component.ts │ │ ├── services │ │ ├── trajectories-router.service.ts │ │ ├── trajectories.service.spec.ts │ │ └── trajectories.service.ts │ │ ├── trajectories.module.ts │ │ └── view │ │ ├── custom-trajectory-entry │ │ ├── custom-trajectory-entry.component.html │ │ ├── custom-trajectory-entry.component.scss │ │ ├── custom-trajectory-entry.component.spec.ts │ │ └── custom-trajectory-entry.component.ts │ │ ├── view-permalink.ts │ │ ├── view.component.html │ │ ├── view.component.scss │ │ ├── view.component.spec.ts │ │ └── view.component.ts ├── styles │ ├── alert.scss │ ├── graph.scss │ ├── legend.scss │ ├── loading.scss │ ├── map.scss │ ├── miscellaneous.scss │ ├── modal.scss │ ├── notifier.scss │ └── selection.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.bootstraprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/.bootstraprc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | doc/ 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v10.16.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/.travis.yml -------------------------------------------------------------------------------- /52-apply-base-href.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/52-apply-base-href.sh -------------------------------------------------------------------------------- /52-specify-different-port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/52-specify-different-port.sh -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/angular.json -------------------------------------------------------------------------------- /doc/homepage/changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | TBD -------------------------------------------------------------------------------- /doc/homepage/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/doc/homepage/demo.md -------------------------------------------------------------------------------- /doc/homepage/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/doc/homepage/description.md -------------------------------------------------------------------------------- /doc/homepage/gettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/doc/homepage/gettingStarted.md -------------------------------------------------------------------------------- /doc/homepage/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/doc/homepage/license.md -------------------------------------------------------------------------------- /doc/homepage/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/doc/homepage/references.md -------------------------------------------------------------------------------- /doc/homepage/userGuide.md: -------------------------------------------------------------------------------- 1 | # User guide/tutorial 2 | 3 | TBD -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/karma.conf.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/netlify/_redirects -------------------------------------------------------------------------------- /netlify/assets/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/netlify/assets/settings.json -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /scripts/adjust-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/scripts/adjust-install.js -------------------------------------------------------------------------------- /scripts/build-distributions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/scripts/build-distributions.js -------------------------------------------------------------------------------- /scripts/bundle-war.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/scripts/bundle-war.js -------------------------------------------------------------------------------- /scripts/git.version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/scripts/git.version.js -------------------------------------------------------------------------------- /scripts/install_local_toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/scripts/install_local_toolbox.js -------------------------------------------------------------------------------- /src/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/_bootstrap.scss -------------------------------------------------------------------------------- /src/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/_variables.scss -------------------------------------------------------------------------------- /src/apps/complete/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/app/app.component.html -------------------------------------------------------------------------------- /src/apps/complete/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/app/app.component.scss -------------------------------------------------------------------------------- /src/apps/complete/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/apps/complete/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/app/app.component.ts -------------------------------------------------------------------------------- /src/apps/complete/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/app/app.module.ts -------------------------------------------------------------------------------- /src/apps/complete/app/router.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/app/router.service.ts -------------------------------------------------------------------------------- /src/apps/complete/assets/config/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/assets/config/settings.json -------------------------------------------------------------------------------- /src/apps/complete/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/apps/complete/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/environments/environment.ts -------------------------------------------------------------------------------- /src/apps/complete/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/favicon.ico -------------------------------------------------------------------------------- /src/apps/complete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/index.html -------------------------------------------------------------------------------- /src/apps/complete/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/main.ts -------------------------------------------------------------------------------- /src/apps/complete/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/polyfills.ts -------------------------------------------------------------------------------- /src/apps/complete/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/styles.scss -------------------------------------------------------------------------------- /src/apps/complete/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/tsconfig.app.json -------------------------------------------------------------------------------- /src/apps/complete/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/complete/tsconfig.spec.json -------------------------------------------------------------------------------- /src/apps/timeseries/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/app/app.component.html -------------------------------------------------------------------------------- /src/apps/timeseries/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/app/app.component.scss -------------------------------------------------------------------------------- /src/apps/timeseries/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/apps/timeseries/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/app/app.component.ts -------------------------------------------------------------------------------- /src/apps/timeseries/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/app/app.module.ts -------------------------------------------------------------------------------- /src/apps/timeseries/app/router.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/app/router.service.ts -------------------------------------------------------------------------------- /src/apps/timeseries/assets/config/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/assets/config/settings.json -------------------------------------------------------------------------------- /src/apps/timeseries/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/apps/timeseries/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/environments/environment.ts -------------------------------------------------------------------------------- /src/apps/timeseries/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/favicon.ico -------------------------------------------------------------------------------- /src/apps/timeseries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/index.html -------------------------------------------------------------------------------- /src/apps/timeseries/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/main.ts -------------------------------------------------------------------------------- /src/apps/timeseries/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/polyfills.ts -------------------------------------------------------------------------------- /src/apps/timeseries/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/styles.scss -------------------------------------------------------------------------------- /src/apps/timeseries/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/tsconfig.app.json -------------------------------------------------------------------------------- /src/apps/timeseries/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/apps/timeseries/tsconfig.spec.json -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/assets/i18n/de.json -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/assets/i18n/pt.json -------------------------------------------------------------------------------- /src/assets/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/assets/marker-icon.png -------------------------------------------------------------------------------- /src/assets/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/assets/marker-shadow.png -------------------------------------------------------------------------------- /src/common/components/basic-auth/basic-auth-informer-impl.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/basic-auth/basic-auth-informer-impl.service.ts -------------------------------------------------------------------------------- /src/common/components/basic-auth/basic-auth.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/basic-auth/basic-auth.component.html -------------------------------------------------------------------------------- /src/common/components/basic-auth/basic-auth.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/basic-auth/basic-auth.component.scss -------------------------------------------------------------------------------- /src/common/components/basic-auth/basic-auth.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/basic-auth/basic-auth.component.spec.ts -------------------------------------------------------------------------------- /src/common/components/basic-auth/basic-auth.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/basic-auth/basic-auth.component.ts -------------------------------------------------------------------------------- /src/common/components/components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/components.module.ts -------------------------------------------------------------------------------- /src/common/components/custom-auto-update-timespan/custom-auto-update-timespan.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-auto-update-timespan/custom-auto-update-timespan.component.html -------------------------------------------------------------------------------- /src/common/components/custom-auto-update-timespan/custom-auto-update-timespan.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-auto-update-timespan/custom-auto-update-timespan.component.ts -------------------------------------------------------------------------------- /src/common/components/custom-favorite-toggler/custom-favorite-toggler.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-favorite-toggler/custom-favorite-toggler.component.html -------------------------------------------------------------------------------- /src/common/components/custom-favorite-toggler/custom-favorite-toggler.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/components/custom-favorite-toggler/custom-favorite-toggler.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-favorite-toggler/custom-favorite-toggler.component.spec.ts -------------------------------------------------------------------------------- /src/common/components/custom-favorite-toggler/custom-favorite-toggler.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-favorite-toggler/custom-favorite-toggler.component.ts -------------------------------------------------------------------------------- /src/common/components/custom-list-selector/custom-list-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-list-selector/custom-list-selector.component.html -------------------------------------------------------------------------------- /src/common/components/custom-list-selector/custom-list-selector.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-list-selector/custom-list-selector.component.scss -------------------------------------------------------------------------------- /src/common/components/custom-list-selector/custom-list-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-list-selector/custom-list-selector.component.ts -------------------------------------------------------------------------------- /src/common/components/custom-min-max-range/custom-min-max-range.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-min-max-range/custom-min-max-range.component.html -------------------------------------------------------------------------------- /src/common/components/custom-min-max-range/custom-min-max-range.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-min-max-range/custom-min-max-range.component.scss -------------------------------------------------------------------------------- /src/common/components/custom-min-max-range/custom-min-max-range.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-min-max-range/custom-min-max-range.component.ts -------------------------------------------------------------------------------- /src/common/components/custom-multi-service-filter-selector/custom-multi-service-filter-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-multi-service-filter-selector/custom-multi-service-filter-selector.component.html -------------------------------------------------------------------------------- /src/common/components/custom-multi-service-filter-selector/custom-multi-service-filter-selector.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-multi-service-filter-selector/custom-multi-service-filter-selector.component.scss -------------------------------------------------------------------------------- /src/common/components/custom-multi-service-filter-selector/custom-multi-service-filter-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-multi-service-filter-selector/custom-multi-service-filter-selector.component.ts -------------------------------------------------------------------------------- /src/common/components/custom-service-selector/custom-service-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-service-selector/custom-service-selector.component.html -------------------------------------------------------------------------------- /src/common/components/custom-service-selector/custom-service-selector.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-service-selector/custom-service-selector.component.scss -------------------------------------------------------------------------------- /src/common/components/custom-service-selector/custom-service-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-service-selector/custom-service-selector.component.ts -------------------------------------------------------------------------------- /src/common/components/custom-time-range-slider/custom-time-range-slider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-time-range-slider/custom-time-range-slider.component.html -------------------------------------------------------------------------------- /src/common/components/custom-time-range-slider/custom-time-range-slider.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-time-range-slider/custom-time-range-slider.component.scss -------------------------------------------------------------------------------- /src/common/components/custom-time-range-slider/custom-time-range-slider.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-time-range-slider/custom-time-range-slider.component.spec.ts -------------------------------------------------------------------------------- /src/common/components/custom-time-range-slider/custom-time-range-slider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-time-range-slider/custom-time-range-slider.component.ts -------------------------------------------------------------------------------- /src/common/components/custom-timespan-shift-selector/custom-timespan-shift-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-timespan-shift-selector/custom-timespan-shift-selector.component.html -------------------------------------------------------------------------------- /src/common/components/custom-timespan-shift-selector/custom-timespan-shift-selector.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/components/custom-timespan-shift-selector/custom-timespan-shift-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/custom-timespan-shift-selector/custom-timespan-shift-selector.component.ts -------------------------------------------------------------------------------- /src/common/components/local-selector/local-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/local-selector/local-selector.component.html -------------------------------------------------------------------------------- /src/common/components/local-selector/local-selector.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/local-selector/local-selector.component.scss -------------------------------------------------------------------------------- /src/common/components/local-selector/local-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/local-selector/local-selector.component.ts -------------------------------------------------------------------------------- /src/common/components/locate-button/locate-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/locate-button/locate-button.component.html -------------------------------------------------------------------------------- /src/common/components/locate-button/locate-button.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/components/locate-button/locate-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/locate-button/locate-button.component.ts -------------------------------------------------------------------------------- /src/common/components/modal-geometry-viewer/modal-geometry-viewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/modal-geometry-viewer/modal-geometry-viewer.component.html -------------------------------------------------------------------------------- /src/common/components/modal-geometry-viewer/modal-geometry-viewer.component.scss: -------------------------------------------------------------------------------- 1 | .geometryViewer { 2 | height: 50vh; 3 | } -------------------------------------------------------------------------------- /src/common/components/modal-geometry-viewer/modal-geometry-viewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/modal-geometry-viewer/modal-geometry-viewer.component.ts -------------------------------------------------------------------------------- /src/common/components/modal-options-editor/modal-options-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/modal-options-editor/modal-options-editor.component.html -------------------------------------------------------------------------------- /src/common/components/modal-options-editor/modal-options-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/modal-options-editor/modal-options-editor.component.scss -------------------------------------------------------------------------------- /src/common/components/modal-options-editor/modal-options-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/modal-options-editor/modal-options-editor.component.ts -------------------------------------------------------------------------------- /src/common/components/modal-timeseries-timespan/modal-timeseries-timespan.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/modal-timeseries-timespan/modal-timeseries-timespan.component.html -------------------------------------------------------------------------------- /src/common/components/modal-timeseries-timespan/modal-timeseries-timespan.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/components/modal-timeseries-timespan/modal-timeseries-timespan.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/modal-timeseries-timespan/modal-timeseries-timespan.component.ts -------------------------------------------------------------------------------- /src/common/components/permalink/in-mail/in-mail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/in-mail/in-mail.component.html -------------------------------------------------------------------------------- /src/common/components/permalink/in-mail/in-mail.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/components/permalink/in-mail/in-mail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/in-mail/in-mail.component.ts -------------------------------------------------------------------------------- /src/common/components/permalink/in-new-window/in-new-window.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/in-new-window/in-new-window.component.html -------------------------------------------------------------------------------- /src/common/components/permalink/in-new-window/in-new-window.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/components/permalink/in-new-window/in-new-window.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/in-new-window/in-new-window.component.ts -------------------------------------------------------------------------------- /src/common/components/permalink/permalink-button/permalink-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/permalink-button/permalink-button.component.html -------------------------------------------------------------------------------- /src/common/components/permalink/permalink-button/permalink-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/permalink-button/permalink-button.component.scss -------------------------------------------------------------------------------- /src/common/components/permalink/permalink-button/permalink-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/permalink-button/permalink-button.component.ts -------------------------------------------------------------------------------- /src/common/components/permalink/to-clipboard/to-clipboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/to-clipboard/to-clipboard.component.html -------------------------------------------------------------------------------- /src/common/components/permalink/to-clipboard/to-clipboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/components/permalink/to-clipboard/to-clipboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/permalink/to-clipboard/to-clipboard.component.ts -------------------------------------------------------------------------------- /src/common/components/provider-parameter-selector/provider-parameter-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/provider-parameter-selector/provider-parameter-selector.component.html -------------------------------------------------------------------------------- /src/common/components/provider-parameter-selector/provider-parameter-selector.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/components/provider-parameter-selector/provider-parameter-selector.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/provider-parameter-selector/provider-parameter-selector.component.spec.ts -------------------------------------------------------------------------------- /src/common/components/provider-parameter-selector/provider-parameter-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/provider-parameter-selector/provider-parameter-selector.component.ts -------------------------------------------------------------------------------- /src/common/components/timespan-selector/timespan-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/timespan-selector/timespan-selector.component.html -------------------------------------------------------------------------------- /src/common/components/timespan-selector/timespan-selector.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/timespan-selector/timespan-selector.component.scss -------------------------------------------------------------------------------- /src/common/components/timespan-selector/timespan-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/components/timespan-selector/timespan-selector.component.ts -------------------------------------------------------------------------------- /src/common/info/info.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/info/info.module.ts -------------------------------------------------------------------------------- /src/common/info/view/view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/info/view/view.component.html -------------------------------------------------------------------------------- /src/common/info/view/view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/info/view/view.component.scss -------------------------------------------------------------------------------- /src/common/info/view/view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/info/view/view.component.spec.ts -------------------------------------------------------------------------------- /src/common/info/view/view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/info/view/view.component.ts -------------------------------------------------------------------------------- /src/common/profiles/combi-view/combi-view-permalink.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/combi-view/combi-view-permalink.service.ts -------------------------------------------------------------------------------- /src/common/profiles/combi-view/combi-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/combi-view/combi-view.component.html -------------------------------------------------------------------------------- /src/common/profiles/combi-view/combi-view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/combi-view/combi-view.component.scss -------------------------------------------------------------------------------- /src/common/profiles/combi-view/combi-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/combi-view/combi-view.component.spec.ts -------------------------------------------------------------------------------- /src/common/profiles/combi-view/combi-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/combi-view/combi-view.component.ts -------------------------------------------------------------------------------- /src/common/profiles/combi-view/combi-view.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/combi-view/combi-view.service.ts -------------------------------------------------------------------------------- /src/common/profiles/diagram/diagram-permalink.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/diagram/diagram-permalink.service.ts -------------------------------------------------------------------------------- /src/common/profiles/diagram/diagram.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/diagram/diagram.component.html -------------------------------------------------------------------------------- /src/common/profiles/diagram/diagram.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/diagram/diagram.component.scss -------------------------------------------------------------------------------- /src/common/profiles/diagram/diagram.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/diagram/diagram.component.spec.ts -------------------------------------------------------------------------------- /src/common/profiles/diagram/diagram.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/diagram/diagram.component.ts -------------------------------------------------------------------------------- /src/common/profiles/diagram/profile-entry/custom-profile-entry.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/diagram/profile-entry/custom-profile-entry.component.html -------------------------------------------------------------------------------- /src/common/profiles/diagram/profile-entry/custom-profile-entry.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/diagram/profile-entry/custom-profile-entry.component.scss -------------------------------------------------------------------------------- /src/common/profiles/diagram/profile-entry/custom-profile-entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/diagram/profile-entry/custom-profile-entry.component.ts -------------------------------------------------------------------------------- /src/common/profiles/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/navigation/navigation.component.html -------------------------------------------------------------------------------- /src/common/profiles/navigation/navigation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/navigation/navigation.component.scss -------------------------------------------------------------------------------- /src/common/profiles/navigation/navigation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/navigation/navigation.component.spec.ts -------------------------------------------------------------------------------- /src/common/profiles/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/navigation/navigation.component.ts -------------------------------------------------------------------------------- /src/common/profiles/profiles.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/profiles.module.ts -------------------------------------------------------------------------------- /src/common/profiles/selection/selection-permalink.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/selection/selection-permalink.service.ts -------------------------------------------------------------------------------- /src/common/profiles/selection/selection.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/selection/selection.component.html -------------------------------------------------------------------------------- /src/common/profiles/selection/selection.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/selection/selection.component.scss -------------------------------------------------------------------------------- /src/common/profiles/selection/selection.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/selection/selection.component.spec.ts -------------------------------------------------------------------------------- /src/common/profiles/selection/selection.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/selection/selection.component.ts -------------------------------------------------------------------------------- /src/common/profiles/selection/selection.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/selection/selection.service.ts -------------------------------------------------------------------------------- /src/common/profiles/services/profiles.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/profiles/services/profiles.service.ts -------------------------------------------------------------------------------- /src/common/settings/helgoland-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/settings/helgoland-settings.ts -------------------------------------------------------------------------------- /src/common/timeseries/diagram/diagram-permalink.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/diagram-permalink.service.ts -------------------------------------------------------------------------------- /src/common/timeseries/diagram/diagram.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/diagram.component.html -------------------------------------------------------------------------------- /src/common/timeseries/diagram/diagram.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/diagram.component.scss -------------------------------------------------------------------------------- /src/common/timeseries/diagram/diagram.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/diagram.component.ts -------------------------------------------------------------------------------- /src/common/timeseries/diagram/legend-entry/custom-dataset-permalink-download.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/legend-entry/custom-dataset-permalink-download.component.html -------------------------------------------------------------------------------- /src/common/timeseries/diagram/legend-entry/custom-dataset-permalink-download.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/timeseries/diagram/legend-entry/custom-dataset-permalink-download.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/legend-entry/custom-dataset-permalink-download.component.ts -------------------------------------------------------------------------------- /src/common/timeseries/diagram/legend-entry/legend-entry.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/legend-entry/legend-entry.component.html -------------------------------------------------------------------------------- /src/common/timeseries/diagram/legend-entry/legend-entry.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/legend-entry/legend-entry.component.scss -------------------------------------------------------------------------------- /src/common/timeseries/diagram/legend-entry/legend-entry.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/legend-entry/legend-entry.component.spec.ts -------------------------------------------------------------------------------- /src/common/timeseries/diagram/legend-entry/legend-entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/diagram/legend-entry/legend-entry.component.ts -------------------------------------------------------------------------------- /src/common/timeseries/favorites/favorites.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/favorites/favorites.component.html -------------------------------------------------------------------------------- /src/common/timeseries/favorites/favorites.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/favorites/favorites.component.scss -------------------------------------------------------------------------------- /src/common/timeseries/favorites/favorites.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/favorites/favorites.component.ts -------------------------------------------------------------------------------- /src/common/timeseries/list-selection/list-selection.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/list-selection/list-selection.component.html -------------------------------------------------------------------------------- /src/common/timeseries/list-selection/list-selection.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/list-selection/list-selection.component.scss -------------------------------------------------------------------------------- /src/common/timeseries/list-selection/list-selection.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/list-selection/list-selection.component.ts -------------------------------------------------------------------------------- /src/common/timeseries/map-selection/map-selection.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/map-selection/map-selection.component.html -------------------------------------------------------------------------------- /src/common/timeseries/map-selection/map-selection.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/map-selection/map-selection.component.scss -------------------------------------------------------------------------------- /src/common/timeseries/map-selection/map-selection.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/map-selection/map-selection.component.ts -------------------------------------------------------------------------------- /src/common/timeseries/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/navigation/navigation.component.html -------------------------------------------------------------------------------- /src/common/timeseries/navigation/navigation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/navigation/navigation.component.scss -------------------------------------------------------------------------------- /src/common/timeseries/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/navigation/navigation.component.ts -------------------------------------------------------------------------------- /src/common/timeseries/services/list-selection-cache.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/services/list-selection-cache.service.ts -------------------------------------------------------------------------------- /src/common/timeseries/services/map-selection-cache.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/services/map-selection-cache.service.ts -------------------------------------------------------------------------------- /src/common/timeseries/services/timeseries-router.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/services/timeseries-router.service.ts -------------------------------------------------------------------------------- /src/common/timeseries/services/timeseries.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/services/timeseries.service.ts -------------------------------------------------------------------------------- /src/common/timeseries/table/table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/table/table.component.html -------------------------------------------------------------------------------- /src/common/timeseries/table/table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/table/table.component.scss -------------------------------------------------------------------------------- /src/common/timeseries/table/table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/table/table.component.ts -------------------------------------------------------------------------------- /src/common/timeseries/timeseries.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/timeseries/timeseries.module.ts -------------------------------------------------------------------------------- /src/common/trajectories/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/navigation/navigation.component.html -------------------------------------------------------------------------------- /src/common/trajectories/navigation/navigation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/navigation/navigation.component.scss -------------------------------------------------------------------------------- /src/common/trajectories/navigation/navigation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/navigation/navigation.component.spec.ts -------------------------------------------------------------------------------- /src/common/trajectories/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/navigation/navigation.component.ts -------------------------------------------------------------------------------- /src/common/trajectories/selection/selection.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/selection/selection.component.html -------------------------------------------------------------------------------- /src/common/trajectories/selection/selection.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/selection/selection.component.scss -------------------------------------------------------------------------------- /src/common/trajectories/selection/selection.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/selection/selection.component.spec.ts -------------------------------------------------------------------------------- /src/common/trajectories/selection/selection.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/selection/selection.component.ts -------------------------------------------------------------------------------- /src/common/trajectories/services/trajectories-router.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/services/trajectories-router.service.ts -------------------------------------------------------------------------------- /src/common/trajectories/services/trajectories.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/services/trajectories.service.spec.ts -------------------------------------------------------------------------------- /src/common/trajectories/services/trajectories.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/services/trajectories.service.ts -------------------------------------------------------------------------------- /src/common/trajectories/trajectories.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/trajectories.module.ts -------------------------------------------------------------------------------- /src/common/trajectories/view/custom-trajectory-entry/custom-trajectory-entry.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/view/custom-trajectory-entry/custom-trajectory-entry.component.html -------------------------------------------------------------------------------- /src/common/trajectories/view/custom-trajectory-entry/custom-trajectory-entry.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/trajectories/view/custom-trajectory-entry/custom-trajectory-entry.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/view/custom-trajectory-entry/custom-trajectory-entry.component.spec.ts -------------------------------------------------------------------------------- /src/common/trajectories/view/custom-trajectory-entry/custom-trajectory-entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/view/custom-trajectory-entry/custom-trajectory-entry.component.ts -------------------------------------------------------------------------------- /src/common/trajectories/view/view-permalink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/view/view-permalink.ts -------------------------------------------------------------------------------- /src/common/trajectories/view/view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/view/view.component.html -------------------------------------------------------------------------------- /src/common/trajectories/view/view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/view/view.component.scss -------------------------------------------------------------------------------- /src/common/trajectories/view/view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/view/view.component.spec.ts -------------------------------------------------------------------------------- /src/common/trajectories/view/view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/common/trajectories/view/view.component.ts -------------------------------------------------------------------------------- /src/styles/alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/alert.scss -------------------------------------------------------------------------------- /src/styles/graph.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/graph.scss -------------------------------------------------------------------------------- /src/styles/legend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/legend.scss -------------------------------------------------------------------------------- /src/styles/loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/loading.scss -------------------------------------------------------------------------------- /src/styles/map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/map.scss -------------------------------------------------------------------------------- /src/styles/miscellaneous.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/miscellaneous.scss -------------------------------------------------------------------------------- /src/styles/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/modal.scss -------------------------------------------------------------------------------- /src/styles/notifier.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/notifier.scss -------------------------------------------------------------------------------- /src/styles/selection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/styles/selection.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/52North/helgoland/HEAD/tslint.json --------------------------------------------------------------------------------