diff --git a/package.json b/package.json index c6aabb6..237fd21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gridscore", - "version": "1.13.0", + "version": "1.14.0", "private": false, "scripts": { "serve": "vue-cli-service serve", diff --git a/src/mixin/index.js b/src/mixin/index.js index ca355b1..5b220ba 100644 --- a/src/mixin/index.js +++ b/src/mixin/index.js @@ -3,7 +3,7 @@ import { mapGetters } from 'vuex' export default { data: function () { return { - gridScoreVersion: '1.13.0', + gridScoreVersion: '1.14.0', multiTraitMethods: { // TODO: Handle dates! last: { diff --git a/src/plugins/changelog/de_DE.json b/src/plugins/changelog/de_DE.json index ede5a25..a2d98f8 100644 --- a/src/plugins/changelog/de_DE.json +++ b/src/plugins/changelog/de_DE.json @@ -85,5 +85,21 @@ "text": "Es war zuvor nicht möglich den Wert eines numerischen Merkmals komplett zu entfernen. Dies wurde in dieser Version behoben." } ] + }, + { + "version": "1.14.0", + "date": "2023-01-24", + "items": [ + { + "type": "new", + "title": "Nicht zusammengerechnete Mehrfachmessungen für Export zu Germinate", + "text": "Bisher musst beim Exportieren von Mehrfachmessungen in die Germinate Datenvorlagen immer eine Zusammenrechnungsmethode gewählt werden. Dies musste eine dieser Optionen sein: Durchschnitt, Summe oder zuletzt gemessener Wert. Jetzt können alle aufgezeichneten Werte individuell exportiert werden durch das Abwählen einer Zusammenrechnungsmethode. Dies resultiert in einer Datei die alle einzelnen Messungen enthält." + }, + { + "type": "new", + "title": "Heatmap-Zeitreihen-Diagramm", + "text": "Für Mehrfachmessungen ist es jetzt möglich sich alle aufgezeichneten Werte über die Zeit in Form einer Heatmap anzeigen zu lassen. Um dies zu erreichen haben wir eine neue Darstellungsoption hinzugefügt die 'Zeitreihe' heißt. Diese aktiviert einen Zeit-Schieberegler um den dargestellten Zeitpunkt zu ändern und zu sehen wie die Mehrfachmessungen sich über die Zeit verhalten." + } + ] } ] \ No newline at end of file diff --git a/src/plugins/changelog/en_GB.json b/src/plugins/changelog/en_GB.json index a179a25..16f793e 100644 --- a/src/plugins/changelog/en_GB.json +++ b/src/plugins/changelog/en_GB.json @@ -85,5 +85,21 @@ "text": "It was previously impossible to remove the value of a numeric trait. This has been fixed in this release." } ] + }, + { + "version": "1.14.0", + "date": "2023-01-24", + "items": [ + { + "type": "new", + "title": "Non-aggregated multi-trait export to Germinate", + "text": "Until now whenever exporting multi-trait data into the Germinate data templates, an aggregation method per multi-trait had to be selected. This was one of these options: average, sum or last recorded value. You can now export all individual data points for a multi-trait by de-selecting the aggregation during export. This will result in a file containing all individual measurements." + }, + { + "type": "new", + "title": "Heatmap timeline chart", + "text": "For multi-traits it's now possible to to look at all recorded values over time in the form of a heatmap. For this purpose, we added a new visualization option called 'Show timeline' which will activate a time slider to move through time and see how the multi-trait changed over time." + } + ] } ] \ No newline at end of file diff --git a/src/views/Export.vue b/src/views/Export.vue index 9a443ad..18ffec7 100644 --- a/src/views/Export.vue +++ b/src/views/Export.vue @@ -192,7 +192,7 @@ export default { 'storeTraitColors' ]), canExportShapefile: function () { - return this.storeCornerPoints && this.storeCornerPoints.length === 4 + return this.storeCornerPoints && this.storeCornerPoints.length === 4 && this.storeCornerPoints.every(cp => cp !== null) }, hasMultiTrait: function () { if (!this.storeTraits) {