diff --git a/package.json b/package.json
index 8465824..2327efb 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "mitwelten-datawalk",
- "version": "0.6.6",
+ "version": "0.6.7",
"scripts": {
"ng": "ng",
"start": "ng serve",
diff --git a/src/app/components/community-hotspot/community-hotspot.component.html b/src/app/components/community-hotspot/community-hotspot.component.html
index fb5658a..e0a3c11 100644
--- a/src/app/components/community-hotspot/community-hotspot.component.html
+++ b/src/app/components/community-hotspot/community-hotspot.component.html
@@ -2,7 +2,7 @@
-
+
@@ -17,9 +17,15 @@
{{ hotspot.species }}
diff --git a/src/app/components/community-hotspot/community-hotspot.component.ts b/src/app/components/community-hotspot/community-hotspot.component.ts
index ec023e6..7d2a577 100644
--- a/src/app/components/community-hotspot/community-hotspot.component.ts
+++ b/src/app/components/community-hotspot/community-hotspot.component.ts
@@ -20,7 +20,6 @@ export class CommunityHotspotComponent {
this.hotspotService.trigger
.pipe(filter(h => h !== false && h.type === 5))
.subscribe(hotspot => {
- console.log(hotspot);
if (hotspot && hotspot.type === 5) this.hotspot = hotspot;
})
}
diff --git a/src/app/services/data.service.ts b/src/app/services/data.service.ts
index 443c55f..c2b9e6d 100644
--- a/src/app/services/data.service.ts
+++ b/src/app/services/data.service.ts
@@ -115,6 +115,9 @@ export class DataService {
subject: `WN: ${p.Art}`,
id: p.ID,
species: p.Art,
+ observation_type: p.Beobachtungsart,
+ comment: p.Bemerkungen,
+ copyright: p.Copyright,
date: p.Datum,
time_range: p.Zeitraum,
post_url: p.Meldung,
diff --git a/src/app/services/hotspot.service.ts b/src/app/services/hotspot.service.ts
index 55fae15..f82dd78 100644
--- a/src/app/services/hotspot.service.ts
+++ b/src/app/services/hotspot.service.ts
@@ -47,6 +47,9 @@ export interface HotspotAudiotext extends Hotspot {
export interface WildeNachbarnProperties {
ID: number;
Art: string;
+ Beobachtungsart: string;
+ Bemerkungen: string;
+ Copyright: string;
Datum: string;
Zeitraum: string;
Meldung: string;
@@ -58,6 +61,9 @@ export interface HotspotCommunity extends Hotspot {
type: 5;
id: number;
species: string;
+ observation_type: string;
+ comment: string;
+ copyright: string;
date: string;
time_range: string;
post_url: string;
@@ -249,6 +255,9 @@ export class HotspotService {
id: 87, type,
location: { lat: 1, lon: 4},
species: 'Biber',
+ observation_type: 'Frasspur',
+ comment: 'in der Nähe auch viele weitere neue Frassspuren',
+ copyright: 'Wilde Nachbarn (wildenachbarn.ch)',
date: '03.12.2016',
time_range: '14.00 - 14.59',
post_url: 'https://beidebasel.wildenachbarn.ch/beobachtung/50451',