test(pkg/storage): add test for compression and rounding

This commit is contained in:
Markus Pesch 2019-10-11 12:36:00 +02:00
parent 86f598bc7d
commit 25dd99cd3d
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
68 changed files with 7713 additions and 1481 deletions

View File

@ -16,7 +16,7 @@ RELEASE?=1
# binary. This is somethimes different to the variable VERSION, because the # binary. This is somethimes different to the variable VERSION, because the
# container image version should be latest instead contains the latest git tag # container image version should be latest instead contains the latest git tag
# and hash sum. # and hash sum.
CONTAINER_IMAGE_VERSION:=$(or ${VERSION}, latest) CONTAINER_IMAGE_VERSION:=latest
# CONTAINER_RUNTIME/BUILD_IMAGE # CONTAINER_RUNTIME/BUILD_IMAGE
# The CONTAINER_RUNTIME variable will be used to specified the path to a # The CONTAINER_RUNTIME variable will be used to specified the path to a
@ -43,22 +43,25 @@ DARWIN_EXECUTABLES:=\
darwin/386/${EXECUTABLE} \ darwin/386/${EXECUTABLE} \
darwin/amd64/${EXECUTABLE} darwin/amd64/${EXECUTABLE}
DARWIN_EXECUTABLE_TARGETS:=${DARWIN_EXECUTABLES:%=bin/%} DARWIN_EXECUTABLE_TARGETS:=\
${DARWIN_EXECUTABLES:%=bin/%}
# FREEBSD_EXECUTABLES AND TARGETS # FREEBSD_EXECUTABLES AND TARGETS
FREEBSD_EXECUTABLES:= \ FREEBSD_EXECUTABLES:=\
freebsd/amd64/${EXECUTABLE} freebsd/amd64/${EXECUTABLE}
FREEBSD_EXECUTABLE_TARGETS:=${FREEBSD_EXECUTABLES:%=bin/%} FREEBSD_EXECUTABLE_TARGETS:=\
${FREEBSD_EXECUTABLES:%=bin/%}
# LINUX_EXECUTABLES AND TARGETS # LINUX_EXECUTABLES AND TARGETS
LINUX_EXECUTABLES:= \ LINUX_EXECUTABLES:=\
linux/amd64/${EXECUTABLE} \ linux/amd64/${EXECUTABLE} \
linux/386/${EXECUTABLE} \ linux/386/${EXECUTABLE} \
linux/arm/5/${EXECUTABLE} \ linux/arm/5/${EXECUTABLE} \
linux/arm/7/${EXECUTABLE} linux/arm/7/${EXECUTABLE}
LINUX_EXECUTABLE_TARGETS:=${LINUX_EXECUTABLES:%=bin/%} LINUX_EXECUTABLE_TARGETS:=\
${LINUX_EXECUTABLES:%=bin/%}
# UNIX_EXECUTABLES AND TARGETS # UNIX_EXECUTABLES AND TARGETS
# Define all executables for different architectures and operation systems # Define all executables for different architectures and operation systems
@ -72,8 +75,11 @@ UNIX_EXECUTABLE_TARGETS:= \
${FREEBSD_EXECUTABLE_TARGETS} \ ${FREEBSD_EXECUTABLE_TARGETS} \
${LINUX_EXECUTABLE_TARGETS} ${LINUX_EXECUTABLE_TARGETS}
# EXECUTABLE_TARGETS # EXECUTABLES AND TARGETS
# Include all UNIX and Windows targets. # Include all UNIX and Windows targets.
EXECUTABLES:=\
${UNIX_EXECUTABLES}
EXECUTABLE_TARGETS:= \ EXECUTABLE_TARGETS:= \
${UNIX_EXECUTABLE_TARGETS} ${UNIX_EXECUTABLE_TARGETS}
@ -138,7 +144,7 @@ bin/linux/arm/7/${EXECUTABLE}: bindata
# ============================================================================== # ==============================================================================
bindata: bindata:
go-bindata -pkg db -o ./pkg/storage/db/bindataSQL.go ./pkg/storage/db/sql/*** ./pkg/storage/db/sql/psql/schema/*** go-bindata -pkg db -o ./pkg/storage/db/bindataSQL.go ./pkg/storage/db/sql/*** ./pkg/storage/db/sql/psql/schema/***
go-bindata -pkg goldenfiles -o ./test/goldenfiles/bindata.go ./test/goldenfiles/json go-bindata -pkg goldenfiles -ignore ".*\.go" -o ./test/goldenfiles/bindata.go ./test/goldenfiles/***
# TEST # TEST
# ============================================================================== # ==============================================================================

View File

@ -4,16 +4,16 @@ import (
"log" "log"
"github.com/Masterminds/semver" "github.com/Masterminds/semver"
"github.com/go-flucky/flucky/pkg/storage"
"github.com/go-flucky/flucky/pkg/storage/logfile" "github.com/go-flucky/flucky/pkg/storage/logfile"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )
var ( var (
compression bool configFile *string
configFile *string round float64
version *semver.Version
version *semver.Version
) )
var compressionCmd = &cobra.Command{ var compressionCmd = &cobra.Command{
@ -23,15 +23,19 @@ var compressionCmd = &cobra.Command{
Example: "flucky compression /var/log/flucky/logfile.csv", Example: "flucky compression /var/log/flucky/logfile.csv",
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
measuredValueLogfile := logfile.New(args[0]) logfileInput := logfile.New(args[0])
measuredValues, err := measuredValueLogfile.Read() measuredValues, err := logfileInput.Read()
if err != nil { if err != nil {
log.Fatalln(err) log.Fatalln(err)
} }
measuredValues = logfile.Compression(measuredValues) if round != 0 {
storage.Round(measuredValues, round)
}
err = measuredValueLogfile.Write(measuredValues) storage.Compression(measuredValues)
err = logfileInput.Write(measuredValues)
if err != nil { if err != nil {
log.Fatalln(err) log.Fatalln(err)
} }
@ -43,5 +47,6 @@ func InitCmd(cmd *cobra.Command, cnfFile *string, sverion *semver.Version) {
version = sverion version = sverion
cmd.AddCommand(compressionCmd) cmd.AddCommand(compressionCmd)
compressionCmd.Flags().Float64Var(&round, "round", 0, "Round values. The value 0 deactivates the function")
} }

View File

@ -4,6 +4,7 @@ import (
"log" "log"
"github.com/Masterminds/semver" "github.com/Masterminds/semver"
"github.com/go-flucky/flucky/pkg/storage"
"github.com/go-flucky/flucky/pkg/storage/logfile" "github.com/go-flucky/flucky/pkg/storage/logfile"
"github.com/spf13/cobra" "github.com/spf13/cobra"
@ -12,6 +13,7 @@ import (
var ( var (
compression bool compression bool
configFile *string configFile *string
round float64
version *semver.Version version *semver.Version
) )
@ -23,29 +25,35 @@ var convertCmd = &cobra.Command{
Example: "flucky convert /var/log/flucky/logfile.json /var/log/flucky/logfile.csv", Example: "flucky convert /var/log/flucky/logfile.json /var/log/flucky/logfile.csv",
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
measuredValuesInput := logfile.New(args[0]) logfileInput := logfile.New(args[0])
measuredValues, err := measuredValuesInput.Read() measuredValues, err := logfileInput.Read()
if err != nil { if err != nil {
log.Fatalln(err) log.Fatalln(err)
} }
if compression { if round != 0 {
measuredValues = logfile.Compression(measuredValues) storage.Round(measuredValues, round)
} }
measuredValuesOutput := logfile.New(args[1]) if compression {
err = measuredValuesOutput.Write(measuredValues) measuredValues = storage.Compression(measuredValues)
}
logfileOutput := logfile.New(args[1])
err = logfileOutput.Write(measuredValues)
if err != nil { if err != nil {
log.Fatalln(err) log.Fatalln(err)
} }
}, },
} }
// Execute a // InitCmd ...
func InitCmd(cmd *cobra.Command, cnfFile *string, sversion *semver.Version) { func InitCmd(cmd *cobra.Command, cnfFile *string, sversion *semver.Version) {
configFile = cnfFile configFile = cnfFile
version = sversion version = sversion
cmd.AddCommand(convertCmd) cmd.AddCommand(convertCmd)
convertCmd.Flags().BoolVar(&compression, "compression", true, "Compress measured values") convertCmd.Flags().BoolVar(&compression, "compression", false, "Compress measured values")
convertCmd.Flags().Float64Var(&round, "round", 0, "Round values. The value 0 deactivates the function")
} }

View File

@ -7,8 +7,8 @@ import (
"github.com/Masterminds/semver" "github.com/Masterminds/semver"
"github.com/go-flucky/flucky/pkg/config" "github.com/go-flucky/flucky/pkg/config"
"github.com/go-flucky/flucky/pkg/daemon" "github.com/go-flucky/flucky/pkg/daemon"
"github.com/volker-raschek/go-logger/pkg/logger"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/volker-raschek/go-logger/pkg/logger"
) )
var ( var (
@ -50,5 +50,5 @@ func InitCmd(cmd *cobra.Command, cnfFile *string, sversion *semver.Version) {
cmd.AddCommand(daemonCmd) cmd.AddCommand(daemonCmd)
daemonCmd.Flags().BoolVar(&compression, "compression", true, "Compress measured values") daemonCmd.Flags().BoolVar(&compression, "compression", true, "Compress measured values")
daemonCmd.Flags().StringVar(&cleanCacheInterval, "clean-cache-interval", "5m", "Minute intervall to clean cache and write measured values into logfile") daemonCmd.Flags().StringVar(&cleanCacheInterval, "clean-cache-interval", "5m", "Minute intervall to clean cache and write measured values into logfile")
daemonCmd.Flags().Float64Var(&round, "round", 0.5, "Round values. The value 0 deactivates the function") daemonCmd.Flags().Float64Var(&round, "round", 0, "Round values. The value 0 deactivates the function")
} }

View File

@ -57,7 +57,7 @@ var readHumidityCmd = &cobra.Command{
if logs { if logs {
measuredValuesLogfile := logfile.New(cnf.Logfile) measuredValuesLogfile := logfile.New(cnf.Logfile)
err := logfile.Append(measuredValuesLogfile, compression, round, measuredValues) err := logfile.Append(measuredValuesLogfile, measuredValues)
if err != nil { if err != nil {
log.Fatalln(err) log.Fatalln(err)
} }

View File

@ -7,8 +7,8 @@ import (
"github.com/go-flucky/flucky/pkg/cli" "github.com/go-flucky/flucky/pkg/cli"
"github.com/go-flucky/flucky/pkg/config" "github.com/go-flucky/flucky/pkg/config"
"github.com/go-flucky/flucky/pkg/storage/logfile"
"github.com/go-flucky/flucky/pkg/rgbled" "github.com/go-flucky/flucky/pkg/rgbled"
"github.com/go-flucky/flucky/pkg/storage/logfile"
"github.com/go-flucky/flucky/pkg/types" "github.com/go-flucky/flucky/pkg/types"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -57,7 +57,7 @@ var readPressureCmd = &cobra.Command{
if logs { if logs {
measuredValuesLogfile := logfile.New(cnf.Logfile) measuredValuesLogfile := logfile.New(cnf.Logfile)
err := logfile.Append(measuredValuesLogfile, compression, round, measuredValues) err := logfile.Append(measuredValuesLogfile, measuredValues)
if err != nil { if err != nil {
log.Fatalln(err) log.Fatalln(err)
} }

View File

@ -61,7 +61,7 @@ var readTemperatureCmd = &cobra.Command{
if logs { if logs {
measuredValuesLogfile := logfile.New(cnf.Logfile) measuredValuesLogfile := logfile.New(cnf.Logfile)
err := logfile.Append(measuredValuesLogfile, compression, round, measuredValues) err := logfile.Append(measuredValuesLogfile, measuredValues)
if err != nil { if err != nil {
rgbled.Error(rgbLEDs) rgbled.Error(rgbLEDs)
log.Fatalln(err) log.Fatalln(err)

1
go.mod
View File

@ -12,6 +12,7 @@ require (
github.com/docker/go-connections v0.4.0 // indirect github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect github.com/docker/go-units v0.4.0 // indirect
github.com/go-flucky/go-dht v0.1.1 github.com/go-flucky/go-dht v0.1.1
github.com/google/uuid v1.1.1
github.com/lib/pq v1.2.0 github.com/lib/pq v1.2.0
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/pkg/errors v0.8.1 // indirect github.com/pkg/errors v0.8.1 // indirect

2
go.sum
View File

@ -19,6 +19,8 @@ github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDD
github.com/go-flucky/flucky v0.0.0-20190714170626-0dd156f480be/go.mod h1:WNT729lCsTFhT6Vyvg6cG8aHV1t6p+DsA8l4omOuaos= github.com/go-flucky/flucky v0.0.0-20190714170626-0dd156f480be/go.mod h1:WNT729lCsTFhT6Vyvg6cG8aHV1t6p+DsA8l4omOuaos=
github.com/go-flucky/go-dht v0.1.1 h1:dPz9F5D7oUaTd0GUGTvT4lBH2R043h1bkmhTlpQax1Y= github.com/go-flucky/go-dht v0.1.1 h1:dPz9F5D7oUaTd0GUGTvT4lBH2R043h1bkmhTlpQax1Y=
github.com/go-flucky/go-dht v0.1.1/go.mod h1:Yk/cct+/u+eCS7pB/kc0tc7MrVXdFI4W15MJCj5FRUc= github.com/go-flucky/go-dht v0.1.1/go.mod h1:Yk/cct+/u+eCS7pB/kc0tc7MrVXdFI4W15MJCj5FRUc=
github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=

View File

@ -9,12 +9,12 @@ import (
"github.com/Masterminds/semver" "github.com/Masterminds/semver"
"github.com/go-flucky/flucky/pkg/config" "github.com/go-flucky/flucky/pkg/config"
"github.com/volker-raschek/go-logger/pkg/logger"
"github.com/go-flucky/flucky/pkg/rgbled" "github.com/go-flucky/flucky/pkg/rgbled"
"github.com/go-flucky/flucky/pkg/sensor" "github.com/go-flucky/flucky/pkg/sensor"
"github.com/go-flucky/flucky/pkg/storage/db" "github.com/go-flucky/flucky/pkg/storage/db"
"github.com/go-flucky/flucky/pkg/storage/logfile" "github.com/go-flucky/flucky/pkg/storage/logfile"
"github.com/go-flucky/flucky/pkg/types" "github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/go-logger/pkg/logger"
) )
var ( var (
@ -102,7 +102,7 @@ func Start(cnf *config.Configuration, cleanCacheInterval time.Duration, compress
flogger.Error("Can not turn on blue info light: %v", err) flogger.Error("Can not turn on blue info light: %v", err)
} }
if err := logfile.Append(measuredValuesLogfile, compression, round, measuredValuesCache); err != nil { if err := logfile.Append(measuredValuesLogfile, measuredValuesCache); err != nil {
err2 := rgbled.Error(rgbLEDs) err2 := rgbled.Error(rgbLEDs)
if err2 != nil { if err2 != nil {
flogger.Error("Can not turn on red info light: %v", err2) flogger.Error("Can not turn on red info light: %v", err2)
@ -136,7 +136,7 @@ func Start(cnf *config.Configuration, cleanCacheInterval time.Duration, compress
} }
flogger.Warn("Save remaining data from the cache") flogger.Warn("Save remaining data from the cache")
err = logfile.Append(measuredValuesLogfile, compression, round, measuredValuesCache) err = logfile.Append(measuredValuesLogfile, measuredValuesCache)
if err != nil { if err != nil {
flogger.Fatal("%v", err) flogger.Fatal("%v", err)
} }

View File

@ -80,12 +80,15 @@ func (cl *csvLogfile) Read() ([]*types.MeasuredValue, error) {
} }
// Creation date // Creation date
creationDate, err := time.Parse(format.TimeFormat, record[6]) if record[6] != "null" {
if err != nil { creationDate, err := time.Parse(format.TimeFormat, record[6])
return nil, fmt.Errorf("%v %v: %v", errorParseTime, record[6], err) if err != nil {
return nil, fmt.Errorf("%v %v: %v", errorParseTime, record[6], err)
}
measuredValue.CreationDate = &creationDate
} }
measuredValue.CreationDate = creationDate
// Update date
if record[7] != "null" { if record[7] != "null" {
updateDate, err := time.Parse(format.TimeFormat, record[7]) updateDate, err := time.Parse(format.TimeFormat, record[7])
if err != nil { if err != nil {

View File

@ -1,9 +1,7 @@
package logfile package logfile
import ( import (
"math"
"path/filepath" "path/filepath"
"sort"
"github.com/go-flucky/flucky/pkg/internal/format" "github.com/go-flucky/flucky/pkg/internal/format"
"github.com/go-flucky/flucky/pkg/types" "github.com/go-flucky/flucky/pkg/types"
@ -12,13 +10,7 @@ import (
// var validUUID = regexp.MustCompile("^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[8|9|aA|bB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$") // var validUUID = regexp.MustCompile("^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[8|9|aA|bB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$")
// Append adds an array of several measured values to a logfile // Append adds an array of several measured values to a logfile
func Append(logfile Logfile, compression bool, round float64, measuredValues []*types.MeasuredValue) error { func Append(logfile Logfile, measuredValues []*types.MeasuredValue) error {
if round != 0 {
for _, measuredValue := range measuredValues {
measuredValue.Value = math.Round(measuredValue.Value/round) * round
}
}
allMeasuredValues, err := logfile.Read() allMeasuredValues, err := logfile.Read()
if err != nil { if err != nil {
@ -27,10 +19,6 @@ func Append(logfile Logfile, compression bool, round float64, measuredValues []*
allMeasuredValues = append(allMeasuredValues, measuredValues...) allMeasuredValues = append(allMeasuredValues, measuredValues...)
if compression {
allMeasuredValues = Compression(allMeasuredValues)
}
err = logfile.Write(allMeasuredValues) err = logfile.Write(allMeasuredValues)
if err != nil { if err != nil {
return err return err
@ -40,61 +28,6 @@ func Append(logfile Logfile, compression bool, round float64, measuredValues []*
return nil return nil
} }
// Compression the measured values. The system checks whether the measured values
// of the same type correspond to those of the predecessor. If this is the case,
// the current value is discarded and the validity date of the previous value is
// set to that of the current value. This means that no information is lost.
// Only the validity period of the measured value is increased.
func Compression(measuredValues []*types.MeasuredValue) []*types.MeasuredValue {
compressedMeasuredValues := make([]*types.MeasuredValue, 0)
lastMeasuredValuesBySensors := make(map[string]map[types.MeasuredValueType]*types.MeasuredValue, 0)
// Sort all measured values according to the start time of the validity date
// in order to successfully implement the subsequent compression.
sort.SliceStable(measuredValues, func(i int, j int) bool {
return measuredValues[i].FromDate.Before(measuredValues[j].TillDate)
})
now := format.FormatedTime()
for _, measuredValue := range measuredValues {
if _, ok := lastMeasuredValuesBySensors[measuredValue.SensorID]; !ok {
lastMeasuredValuesBySensors[measuredValue.SensorID] = make(map[types.MeasuredValueType]*types.MeasuredValue, 0)
}
if _, ok := lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType]; !ok {
lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType] = measuredValue
continue
}
if lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType].Value == measuredValue.Value {
lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType].TillDate = measuredValue.TillDate
lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType].UpdateDate = &now
} else if lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType].Value != measuredValue.Value {
compressedMeasuredValues = append(compressedMeasuredValues, lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType])
delete(lastMeasuredValuesBySensors[measuredValue.SensorID], measuredValue.ValueType)
lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType] = measuredValue
}
}
// Copy all remaining entries from the map into the cache array
for _, lastMeasuredValuesBySensor := range lastMeasuredValuesBySensors {
for _, measuredValueType := range types.MeasuredValueTypes {
if measuredValue, ok := lastMeasuredValuesBySensor[measuredValueType]; ok {
compressedMeasuredValues = append(compressedMeasuredValues, measuredValue)
}
}
}
// Sort all measured values again to include the measured values from the
// cache.
sort.SliceStable(compressedMeasuredValues, func(i int, j int) bool {
return compressedMeasuredValues[i].FromDate.Before(compressedMeasuredValues[j].FromDate)
})
return compressedMeasuredValues
}
// New returns a log file with basic functions for reading and writing data. The // New returns a log file with basic functions for reading and writing data. The
// file extension of the logfile is taken into account to format the logfile // file extension of the logfile is taken into account to format the logfile
// into the correct format. // into the correct format.
@ -124,9 +57,11 @@ func New(logfile string) Logfile {
} }
func writeCreationDate(measuredValues []*types.MeasuredValue) error { func writeCreationDate(measuredValues []*types.MeasuredValue) error {
now := format.FormatedTime()
for _, measuredValue := range measuredValues { for _, measuredValue := range measuredValues {
now := format.FormatedTime() if measuredValue.CreationDate == nil {
measuredValue.CreationDate = now measuredValue.CreationDate = &now
}
} }
return nil return nil
} }

View File

@ -1 +0,0 @@
package logfile_test

70
pkg/storage/storage.go Normal file
View File

@ -0,0 +1,70 @@
package storage
import (
"math"
"sort"
"github.com/go-flucky/flucky/pkg/internal/format"
"github.com/go-flucky/flucky/pkg/types"
)
// Compression the measured values. The system checks whether the measured values
// of the same type correspond to those of the predecessor. If this is the case,
// the current value is discarded and the validity date of the previous value is
// set to that of the current value. This means that no information is lost.
// Only the validity period of the measured value is increased.
func Compression(measuredValues []*types.MeasuredValue) []*types.MeasuredValue {
compressedMeasuredValues := make([]*types.MeasuredValue, 0)
lastMeasuredValuesBySensors := make(map[string]map[types.MeasuredValueType]*types.MeasuredValue, 0)
// Sort all measured values according to the start time of the validity date
// in order to successfully implement the subsequent compression.
sort.SliceStable(measuredValues, func(i int, j int) bool {
return measuredValues[i].FromDate.Before(measuredValues[j].TillDate)
})
now := format.FormatedTime()
for _, measuredValue := range measuredValues {
if _, ok := lastMeasuredValuesBySensors[measuredValue.SensorID]; !ok {
lastMeasuredValuesBySensors[measuredValue.SensorID] = make(map[types.MeasuredValueType]*types.MeasuredValue, 0)
}
if _, ok := lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType]; !ok {
lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType] = measuredValue
continue
}
if lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType].Value == measuredValue.Value {
lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType].TillDate = measuredValue.TillDate
lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType].UpdateDate = &now
} else if lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType].Value != measuredValue.Value {
compressedMeasuredValues = append(compressedMeasuredValues, lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType])
delete(lastMeasuredValuesBySensors[measuredValue.SensorID], measuredValue.ValueType)
lastMeasuredValuesBySensors[measuredValue.SensorID][measuredValue.ValueType] = measuredValue
}
}
// Copy all remaining entries from the map into the cache array
for _, lastMeasuredValuesBySensor := range lastMeasuredValuesBySensors {
for _, measuredValueType := range types.MeasuredValueTypes {
if measuredValue, ok := lastMeasuredValuesBySensor[measuredValueType]; ok {
compressedMeasuredValues = append(compressedMeasuredValues, measuredValue)
}
}
}
// Sort all measured values again to include the measured values from the
// cache.
sort.SliceStable(compressedMeasuredValues, func(i int, j int) bool {
return compressedMeasuredValues[i].FromDate.Before(compressedMeasuredValues[j].FromDate)
})
return compressedMeasuredValues
}
func Round(measuredValues []*types.MeasuredValue, round float64) {
for _, measuredValue := range measuredValues {
measuredValue.Value = math.Round(measuredValue.Value/round) * round
}
}

286
pkg/storage/storage_test.go Normal file
View File

@ -0,0 +1,286 @@
package storage_test
import (
"testing"
"github.com/go-flucky/flucky/pkg/storage"
"github.com/go-flucky/flucky/test/goldenfiles"
"github.com/stretchr/testify/require"
)
type testCase struct {
source string
expected string
compression bool
round float64
}
var (
testCases = []*testCase{
// CSV - Uncompressed Not Rounded -> Uncompressed Rounded 0.5
&testCase{
source: "test/goldenfiles/csv/goldenMeasuredValuesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenMeasuredValuesUncompressedRounded.csv",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/csv/goldenHumiditiesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenHumiditiesUncompressedRounded.csv",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/csv/goldenPressuresUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenPressuresUncompressedRounded.csv",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/csv/goldenTemperaturesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenTemperaturesUncompressedRounded.csv",
compression: false,
round: 0.5,
},
// CSV - Uncompressed Not Rounded -> Compressed Not Rounded
&testCase{
source: "test/goldenfiles/csv/goldenMeasuredValuesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenMeasuredValuesCompressedNotRounded.csv",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/csv/goldenHumiditiesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenHumiditiesCompressedNotRounded.csv",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/csv/goldenPressuresUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenPressuresCompressedNotRounded.csv",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/csv/goldenTemperaturesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenTemperaturesCompressedNotRounded.csv",
compression: true,
round: 0,
},
// CSV - Uncompressed Not Rounded -> Compressed Rounded 0.5
&testCase{
source: "test/goldenfiles/csv/goldenMeasuredValuesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenMeasuredValuesCompressedRounded.csv",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/csv/goldenHumiditiesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenHumiditiesCompressedRounded.csv",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/csv/goldenPressuresUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenPressuresCompressedRounded.csv",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/csv/goldenTemperaturesUncompressedNotRounded.csv",
expected: "test/goldenfiles/csv/goldenTemperaturesCompressedRounded.csv",
compression: true,
round: 0.5,
},
// JSON - Uncompressed Not Rounded -> Uncompressed Rounded 0.5
&testCase{
source: "test/goldenfiles/json/goldenMeasuredValuesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenMeasuredValuesUncompressedRounded.json",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/json/goldenHumiditiesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenHumiditiesUncompressedRounded.json",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/json/goldenPressuresUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenPressuresUncompressedRounded.json",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/json/goldenTemperaturesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenTemperaturesUncompressedRounded.json",
compression: false,
round: 0.5,
},
// JSON - Uncompressed Not Rounded -> Compressed Not Rounded
&testCase{
source: "test/goldenfiles/json/goldenMeasuredValuesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenMeasuredValuesCompressedNotRounded.json",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/json/goldenHumiditiesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenHumiditiesCompressedNotRounded.json",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/json/goldenPressuresUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenPressuresCompressedNotRounded.json",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/json/goldenTemperaturesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenTemperaturesCompressedNotRounded.json",
compression: true,
round: 0,
},
// JSON - Uncompressed Not Rounded -> Compressed Rounded 0.5
&testCase{
source: "test/goldenfiles/json/goldenMeasuredValuesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenMeasuredValuesCompressedRounded.json",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/json/goldenHumiditiesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenHumiditiesCompressedRounded.json",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/json/goldenPressuresUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenPressuresCompressedRounded.json",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/json/goldenTemperaturesUncompressedNotRounded.json",
expected: "test/goldenfiles/json/goldenTemperaturesCompressedRounded.json",
compression: true,
round: 0.5,
},
// XML - Uncompressed Not Rounded -> Uncompressed Rounded 0.5
&testCase{
source: "test/goldenfiles/xml/goldenMeasuredValuesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenMeasuredValuesUncompressedRounded.xml",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/xml/goldenHumiditiesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenHumiditiesUncompressedRounded.xml",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/xml/goldenPressuresUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenPressuresUncompressedRounded.xml",
compression: false,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/xml/goldenTemperaturesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenTemperaturesUncompressedRounded.xml",
compression: false,
round: 0.5,
},
// XML - Uncompressed Not Rounded -> Compressed Not Rounded
&testCase{
source: "test/goldenfiles/xml/goldenMeasuredValuesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenMeasuredValuesCompressedNotRounded.xml",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/xml/goldenHumiditiesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenHumiditiesCompressedNotRounded.xml",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/xml/goldenPressuresUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenPressuresCompressedNotRounded.xml",
compression: true,
round: 0,
},
&testCase{
source: "test/goldenfiles/xml/goldenTemperaturesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenTemperaturesCompressedNotRounded.xml",
compression: true,
round: 0,
},
// XML - Uncompressed Not Rounded -> Compressed Rounded 0.5
&testCase{
source: "test/goldenfiles/xml/goldenMeasuredValuesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenMeasuredValuesCompressedRounded.xml",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/xml/goldenHumiditiesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenHumiditiesCompressedRounded.xml",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/xml/goldenPressuresUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenPressuresCompressedRounded.xml",
compression: true,
round: 0.5,
},
&testCase{
source: "test/goldenfiles/xml/goldenTemperaturesUncompressedNotRounded.xml",
expected: "test/goldenfiles/xml/goldenTemperaturesCompressedRounded.xml",
compression: true,
round: 0.5,
},
}
)
func TestCompressionAndRounding(t *testing.T) {
require := require.New(t)
for _, testCase := range testCases {
measuredValues, err := goldenfiles.GetGoldenMeasuredValues(testCase.source)
require.NoError(err)
expectedMeasuredValues, err := goldenfiles.GetGoldenMeasuredValues(testCase.expected)
require.NoError(err)
actualMeasuredValues := measuredValues
if testCase.round != 0 {
storage.Round(actualMeasuredValues, testCase.round)
}
if testCase.compression {
actualMeasuredValues = storage.Compression(actualMeasuredValues)
}
for i, _ := range expectedMeasuredValues {
require.Equal(expectedMeasuredValues[i].ID, actualMeasuredValues[i].ID, "ID of element %v is not equal between expected and actual", i)
require.Equal(expectedMeasuredValues[i].Value, actualMeasuredValues[i].Value, "Value of element %v is not equal between expected and actual", i)
require.Equal(expectedMeasuredValues[i].ValueType, actualMeasuredValues[i].ValueType, "ValueType of element %v is not equal between expected and actual", i)
require.Equal(expectedMeasuredValues[i].FromDate, actualMeasuredValues[i].FromDate, "FromDate of element %v is not equal between expected and actual", i)
require.Equal(expectedMeasuredValues[i].TillDate, actualMeasuredValues[i].TillDate, "TillDate of element %v is not equal between expected and actual", i)
require.Equal(expectedMeasuredValues[i].SensorID, actualMeasuredValues[i].SensorID, "SensorID of element %v is not equal between expected and actual", i)
}
}
}

View File

@ -12,7 +12,7 @@ type MeasuredValue struct {
FromDate time.Time `json:"from_date" xml:"from_date"` FromDate time.Time `json:"from_date" xml:"from_date"`
TillDate time.Time `json:"till_date" xml:"till_date"` TillDate time.Time `json:"till_date" xml:"till_date"`
SensorID string `json:"sensor_id" xml:"sensor_id"` SensorID string `json:"sensor_id" xml:"sensor_id"`
CreationDate time.Time `json:"creation_date" xml:"creation_date"` CreationDate *time.Time `json:"creation_date" xml:"creation_date"`
UpdateDate *time.Time `json:"update_date" xml:"update_date"` UpdateDate *time.Time `json:"update_date" xml:"update_date"`
} }

5
test/goldenfiles/copy.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
scp -r ${FLUCKY_REMOTE}:/var/log/flucky/*.csv csv
scp -r ${FLUCKY_REMOTE}:/var/log/flucky/*.json json
scp -r ${FLUCKY_REMOTE}:/var/log/flucky/*.xml xml

View File

@ -0,0 +1,18 @@
0fc9c4bf-7e86-4cee-b99c-7642984b5fcd,humidity,50.8740234375,2019-10-11T11:51:01.969+02:00,2019-10-11T11:51:03.109+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.971+02:00,2019-10-11T11:51:20.729+02:00
7b4f0fc3-ecec-4226-b621-49dd01cf9eb7,humidity,50.884765625,2019-10-11T11:51:04.251+02:00,2019-10-11T11:51:04.252+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:04.254+02:00,null
72ccf0a7-e680-460c-a3b8-7d14f46b5b0c,humidity,50.861328125,2019-10-11T11:51:05.402+02:00,2019-10-11T11:51:05.403+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:05.405+02:00,null
6f5277d9-abe3-4e87-b0f1-e4320756bbac,humidity,50.8505859375,2019-10-11T11:51:06.551+02:00,2019-10-11T11:51:06.552+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:06.565+02:00,null
026370e8-2011-4bf0-8da9-ec4a9fe1ee19,humidity,50.7734375,2019-10-11T11:51:07.7+02:00,2019-10-11T11:51:07.7+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:07.702+02:00,null
e96eff46-8322-424d-9a79-51c746124354,humidity,50.728515625,2019-10-11T11:51:08.843+02:00,2019-10-11T11:51:08.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:08.846+02:00,null
6beb6aee-6888-4f4a-82ff-5bf700a22b0a,humidity,50.67578125,2019-10-11T11:51:09.986+02:00,2019-10-11T11:51:09.986+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:09.989+02:00,null
62a8f169-344d-4f9c-828a-7b4ea4261fad,humidity,50.6650390625,2019-10-11T11:51:11.129+02:00,2019-10-11T11:51:11.13+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.133+02:00,null
b1d64d40-59d7-4093-ba1d-208d869c9aae,humidity,50.6884765625,2019-10-11T11:51:11.264+02:00,2019-10-11T11:51:11.265+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.267+02:00,null
f98b69ee-bef9-4609-8bfa-82f11d7f51b6,humidity,50.76171875,2019-10-11T11:51:12.401+02:00,2019-10-11T11:51:12.402+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:12.41+02:00,null
eab34e23-2b43-40c2-9d6e-90e72fa13db5,humidity,50.7373046875,2019-10-11T11:51:13.551+02:00,2019-10-11T11:51:13.551+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:13.554+02:00,null
4659b946-8a40-4ba4-9888-6997bd1795f2,humidity,50.73828125,2019-10-11T11:51:14.695+02:00,2019-10-11T11:51:14.695+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:14.698+02:00,null
a6552aff-724c-4339-810a-36d911ddaa58,humidity,50.6845703125,2019-10-11T11:51:15.839+02:00,2019-10-11T11:51:15.839+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.842+02:00,null
c311cacd-e346-4b68-902b-400be0f8e02e,humidity,50.6767578125,2019-10-11T11:51:15.976+02:00,2019-10-11T11:51:15.977+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.98+02:00,null
2d4db614-17f8-4ddd-ba08-e2a5f77d74ea,humidity,50.68359375,2019-10-11T11:51:17.118+02:00,2019-10-11T11:51:17.118+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.121+02:00,null
936d61e4-494e-4959-a39a-c1dbc4a7d162,humidity,50.685546875,2019-10-11T11:51:17.243+02:00,2019-10-11T11:51:17.244+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.247+02:00,null
b913c9ca-4b5e-4c01-9aea-ee31d0d97977,humidity,50.6943359375,2019-10-11T11:51:18.381+02:00,2019-10-11T11:51:19.529+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:18.385+02:00,2019-10-11T11:51:20.729+02:00
d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312,humidity,50.7080078125,2019-10-11T11:51:19.664+02:00,2019-10-11T11:51:19.664+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.667+02:00,null
1 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd humidity 50.8740234375 2019-10-11T11:51:01.969+02:00 2019-10-11T11:51:03.109+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.971+02:00 2019-10-11T11:51:20.729+02:00
2 7b4f0fc3-ecec-4226-b621-49dd01cf9eb7 humidity 50.884765625 2019-10-11T11:51:04.251+02:00 2019-10-11T11:51:04.252+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:04.254+02:00 null
3 72ccf0a7-e680-460c-a3b8-7d14f46b5b0c humidity 50.861328125 2019-10-11T11:51:05.402+02:00 2019-10-11T11:51:05.403+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:05.405+02:00 null
4 6f5277d9-abe3-4e87-b0f1-e4320756bbac humidity 50.8505859375 2019-10-11T11:51:06.551+02:00 2019-10-11T11:51:06.552+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:06.565+02:00 null
5 026370e8-2011-4bf0-8da9-ec4a9fe1ee19 humidity 50.7734375 2019-10-11T11:51:07.7+02:00 2019-10-11T11:51:07.7+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:07.702+02:00 null
6 e96eff46-8322-424d-9a79-51c746124354 humidity 50.728515625 2019-10-11T11:51:08.843+02:00 2019-10-11T11:51:08.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:08.846+02:00 null
7 6beb6aee-6888-4f4a-82ff-5bf700a22b0a humidity 50.67578125 2019-10-11T11:51:09.986+02:00 2019-10-11T11:51:09.986+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:09.989+02:00 null
8 62a8f169-344d-4f9c-828a-7b4ea4261fad humidity 50.6650390625 2019-10-11T11:51:11.129+02:00 2019-10-11T11:51:11.13+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:11.133+02:00 null
9 b1d64d40-59d7-4093-ba1d-208d869c9aae humidity 50.6884765625 2019-10-11T11:51:11.264+02:00 2019-10-11T11:51:11.265+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:11.267+02:00 null
10 f98b69ee-bef9-4609-8bfa-82f11d7f51b6 humidity 50.76171875 2019-10-11T11:51:12.401+02:00 2019-10-11T11:51:12.402+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:12.41+02:00 null
11 eab34e23-2b43-40c2-9d6e-90e72fa13db5 humidity 50.7373046875 2019-10-11T11:51:13.551+02:00 2019-10-11T11:51:13.551+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:13.554+02:00 null
12 4659b946-8a40-4ba4-9888-6997bd1795f2 humidity 50.73828125 2019-10-11T11:51:14.695+02:00 2019-10-11T11:51:14.695+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:14.698+02:00 null
13 a6552aff-724c-4339-810a-36d911ddaa58 humidity 50.6845703125 2019-10-11T11:51:15.839+02:00 2019-10-11T11:51:15.839+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.842+02:00 null
14 c311cacd-e346-4b68-902b-400be0f8e02e humidity 50.6767578125 2019-10-11T11:51:15.976+02:00 2019-10-11T11:51:15.977+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.98+02:00 null
15 2d4db614-17f8-4ddd-ba08-e2a5f77d74ea humidity 50.68359375 2019-10-11T11:51:17.118+02:00 2019-10-11T11:51:17.118+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.121+02:00 null
16 936d61e4-494e-4959-a39a-c1dbc4a7d162 humidity 50.685546875 2019-10-11T11:51:17.243+02:00 2019-10-11T11:51:17.244+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.247+02:00 null
17 b913c9ca-4b5e-4c01-9aea-ee31d0d97977 humidity 50.6943359375 2019-10-11T11:51:18.381+02:00 2019-10-11T11:51:19.529+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:18.385+02:00 2019-10-11T11:51:20.729+02:00
18 d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312 humidity 50.7080078125 2019-10-11T11:51:19.664+02:00 2019-10-11T11:51:19.664+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.667+02:00 null

View File

@ -0,0 +1,4 @@
0fc9c4bf-7e86-4cee-b99c-7642984b5fcd,humidity,51,2019-10-11T11:51:01.969+02:00,2019-10-11T11:51:07.7+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.971+02:00,2019-10-11T11:51:20.754+02:00
e96eff46-8322-424d-9a79-51c746124354,humidity,50.5,2019-10-11T11:51:08.843+02:00,2019-10-11T11:51:11.265+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:08.846+02:00,2019-10-11T11:51:20.754+02:00
f98b69ee-bef9-4609-8bfa-82f11d7f51b6,humidity,51,2019-10-11T11:51:12.401+02:00,2019-10-11T11:51:12.402+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:12.41+02:00,null
eab34e23-2b43-40c2-9d6e-90e72fa13db5,humidity,50.5,2019-10-11T11:51:13.551+02:00,2019-10-11T11:51:19.664+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:13.554+02:00,2019-10-11T11:51:20.754+02:00
1 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd humidity 51 2019-10-11T11:51:01.969+02:00 2019-10-11T11:51:07.7+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.971+02:00 2019-10-11T11:51:20.754+02:00
2 e96eff46-8322-424d-9a79-51c746124354 humidity 50.5 2019-10-11T11:51:08.843+02:00 2019-10-11T11:51:11.265+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:08.846+02:00 2019-10-11T11:51:20.754+02:00
3 f98b69ee-bef9-4609-8bfa-82f11d7f51b6 humidity 51 2019-10-11T11:51:12.401+02:00 2019-10-11T11:51:12.402+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:12.41+02:00 null
4 eab34e23-2b43-40c2-9d6e-90e72fa13db5 humidity 50.5 2019-10-11T11:51:13.551+02:00 2019-10-11T11:51:19.664+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:13.554+02:00 2019-10-11T11:51:20.754+02:00

View File

@ -1,11 +1,20 @@
7d3286c3-3f32-40e7-9656-f587de5d5341,humidity,58.55859375,2019-09-29T19:32:33.862+02:00,2019-09-29T19:32:33.862+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.191+02:00,null 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd,humidity,50.8740234375,2019-10-11T11:51:01.969+02:00,2019-10-11T11:51:01.969+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.971+02:00,null
9890f244-9854-4a78-826e-124dc7b179af,humidity,58.55859375,2019-09-29T19:32:35.521+02:00,2019-09-29T19:32:35.521+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.191+02:00,null 45e8b20c-1ab0-4cf1-9ef1-aa82537557f6,humidity,50.8740234375,2019-10-11T11:51:03.109+02:00,2019-10-11T11:51:03.109+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:03.111+02:00,null
40124dc7-a6af-4864-8566-7c2925b4471b,humidity,58.525390625,2019-09-29T19:32:36.186+02:00,2019-09-29T19:32:36.186+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.191+02:00,null 7b4f0fc3-ecec-4226-b621-49dd01cf9eb7,humidity,50.884765625,2019-10-11T11:51:04.251+02:00,2019-10-11T11:51:04.252+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:04.254+02:00,null
92bfde08-0f2a-4b6e-b227-44f341f35446,humidity,58.5068359375,2019-09-29T19:32:36.881+02:00,2019-09-29T19:32:36.882+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.191+02:00,null 72ccf0a7-e680-460c-a3b8-7d14f46b5b0c,humidity,50.861328125,2019-10-11T11:51:05.402+02:00,2019-10-11T11:51:05.403+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:05.405+02:00,null
c22e278e-f6fb-4755-8bf3-7a7313816abf,humidity,58.470703125,2019-09-29T19:32:37.485+02:00,2019-09-29T19:32:37.485+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 6f5277d9-abe3-4e87-b0f1-e4320756bbac,humidity,50.8505859375,2019-10-11T11:51:06.551+02:00,2019-10-11T11:51:06.552+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:06.565+02:00,null
c0468792-72c2-45f6-a9f4-c798f9307bc2,humidity,58.4384765625,2019-09-29T19:32:38.073+02:00,2019-09-29T19:32:38.073+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 026370e8-2011-4bf0-8da9-ec4a9fe1ee19,humidity,50.7734375,2019-10-11T11:51:07.7+02:00,2019-10-11T11:51:07.7+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:07.702+02:00,null
9afab5be-7502-47fc-a5b2-cf8bd1a62054,humidity,58.4384765625,2019-09-29T19:32:38.675+02:00,2019-09-29T19:32:38.676+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null e96eff46-8322-424d-9a79-51c746124354,humidity,50.728515625,2019-10-11T11:51:08.843+02:00,2019-10-11T11:51:08.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:08.846+02:00,null
3b8560f9-9536-47e3-839e-8351ffecbfcf,humidity,58.4384765625,2019-09-29T19:32:39.258+02:00,2019-09-29T19:32:39.259+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 6beb6aee-6888-4f4a-82ff-5bf700a22b0a,humidity,50.67578125,2019-10-11T11:51:09.986+02:00,2019-10-11T11:51:09.986+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:09.989+02:00,null
4afcb00e-4035-443d-8495-535932d45623,humidity,58.4375,2019-09-29T19:32:39.839+02:00,2019-09-29T19:32:39.839+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 62a8f169-344d-4f9c-828a-7b4ea4261fad,humidity,50.6650390625,2019-10-11T11:51:11.129+02:00,2019-10-11T11:51:11.13+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.133+02:00,null
132e91ec-9b06-4792-a8c0-b82ccdcbce16,humidity,58.447265625,2019-09-29T19:32:40.503+02:00,2019-09-29T19:32:40.504+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null b1d64d40-59d7-4093-ba1d-208d869c9aae,humidity,50.6884765625,2019-10-11T11:51:11.264+02:00,2019-10-11T11:51:11.265+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.267+02:00,null
5aba6643-3fe3-422f-aa40-2d98591d9a82,humidity,58.46875,2019-09-29T19:32:41.187+02:00,2019-09-29T19:32:41.188+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.193+02:00,null f98b69ee-bef9-4609-8bfa-82f11d7f51b6,humidity,50.76171875,2019-10-11T11:51:12.401+02:00,2019-10-11T11:51:12.402+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:12.41+02:00,null
eab34e23-2b43-40c2-9d6e-90e72fa13db5,humidity,50.7373046875,2019-10-11T11:51:13.551+02:00,2019-10-11T11:51:13.551+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:13.554+02:00,null
4659b946-8a40-4ba4-9888-6997bd1795f2,humidity,50.73828125,2019-10-11T11:51:14.695+02:00,2019-10-11T11:51:14.695+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:14.698+02:00,null
a6552aff-724c-4339-810a-36d911ddaa58,humidity,50.6845703125,2019-10-11T11:51:15.839+02:00,2019-10-11T11:51:15.839+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.842+02:00,null
c311cacd-e346-4b68-902b-400be0f8e02e,humidity,50.6767578125,2019-10-11T11:51:15.976+02:00,2019-10-11T11:51:15.977+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.98+02:00,null
2d4db614-17f8-4ddd-ba08-e2a5f77d74ea,humidity,50.68359375,2019-10-11T11:51:17.118+02:00,2019-10-11T11:51:17.118+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.121+02:00,null
936d61e4-494e-4959-a39a-c1dbc4a7d162,humidity,50.685546875,2019-10-11T11:51:17.243+02:00,2019-10-11T11:51:17.244+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.247+02:00,null
b913c9ca-4b5e-4c01-9aea-ee31d0d97977,humidity,50.6943359375,2019-10-11T11:51:18.381+02:00,2019-10-11T11:51:18.382+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:18.385+02:00,null
1171d0dd-2173-4da2-b2c6-7f7daaad7cd1,humidity,50.6943359375,2019-10-11T11:51:19.529+02:00,2019-10-11T11:51:19.529+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.532+02:00,null
d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312,humidity,50.7080078125,2019-10-11T11:51:19.664+02:00,2019-10-11T11:51:19.664+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.667+02:00,null

1 7d3286c3-3f32-40e7-9656-f587de5d5341 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd humidity 58.55859375 50.8740234375 2019-09-29T19:32:33.862+02:00 2019-10-11T11:51:01.969+02:00 2019-09-29T19:32:33.862+02:00 2019-10-11T11:51:01.969+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.191+02:00 2019-10-11T11:51:01.971+02:00 null
2 9890f244-9854-4a78-826e-124dc7b179af 45e8b20c-1ab0-4cf1-9ef1-aa82537557f6 humidity 58.55859375 50.8740234375 2019-09-29T19:32:35.521+02:00 2019-10-11T11:51:03.109+02:00 2019-09-29T19:32:35.521+02:00 2019-10-11T11:51:03.109+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.191+02:00 2019-10-11T11:51:03.111+02:00 null
3 40124dc7-a6af-4864-8566-7c2925b4471b 7b4f0fc3-ecec-4226-b621-49dd01cf9eb7 humidity 58.525390625 50.884765625 2019-09-29T19:32:36.186+02:00 2019-10-11T11:51:04.251+02:00 2019-09-29T19:32:36.186+02:00 2019-10-11T11:51:04.252+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.191+02:00 2019-10-11T11:51:04.254+02:00 null
4 92bfde08-0f2a-4b6e-b227-44f341f35446 72ccf0a7-e680-460c-a3b8-7d14f46b5b0c humidity 58.5068359375 50.861328125 2019-09-29T19:32:36.881+02:00 2019-10-11T11:51:05.402+02:00 2019-09-29T19:32:36.882+02:00 2019-10-11T11:51:05.403+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.191+02:00 2019-10-11T11:51:05.405+02:00 null
5 c22e278e-f6fb-4755-8bf3-7a7313816abf 6f5277d9-abe3-4e87-b0f1-e4320756bbac humidity 58.470703125 50.8505859375 2019-09-29T19:32:37.485+02:00 2019-10-11T11:51:06.551+02:00 2019-09-29T19:32:37.485+02:00 2019-10-11T11:51:06.552+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:51:06.565+02:00 null
6 c0468792-72c2-45f6-a9f4-c798f9307bc2 026370e8-2011-4bf0-8da9-ec4a9fe1ee19 humidity 58.4384765625 50.7734375 2019-09-29T19:32:38.073+02:00 2019-10-11T11:51:07.7+02:00 2019-09-29T19:32:38.073+02:00 2019-10-11T11:51:07.7+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:51:07.702+02:00 null
7 9afab5be-7502-47fc-a5b2-cf8bd1a62054 e96eff46-8322-424d-9a79-51c746124354 humidity 58.4384765625 50.728515625 2019-09-29T19:32:38.675+02:00 2019-10-11T11:51:08.843+02:00 2019-09-29T19:32:38.676+02:00 2019-10-11T11:51:08.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:51:08.846+02:00 null
8 3b8560f9-9536-47e3-839e-8351ffecbfcf 6beb6aee-6888-4f4a-82ff-5bf700a22b0a humidity 58.4384765625 50.67578125 2019-09-29T19:32:39.258+02:00 2019-10-11T11:51:09.986+02:00 2019-09-29T19:32:39.259+02:00 2019-10-11T11:51:09.986+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:51:09.989+02:00 null
9 4afcb00e-4035-443d-8495-535932d45623 62a8f169-344d-4f9c-828a-7b4ea4261fad humidity 58.4375 50.6650390625 2019-09-29T19:32:39.839+02:00 2019-10-11T11:51:11.129+02:00 2019-09-29T19:32:39.839+02:00 2019-10-11T11:51:11.13+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:51:11.133+02:00 null
10 132e91ec-9b06-4792-a8c0-b82ccdcbce16 b1d64d40-59d7-4093-ba1d-208d869c9aae humidity 58.447265625 50.6884765625 2019-09-29T19:32:40.503+02:00 2019-10-11T11:51:11.264+02:00 2019-09-29T19:32:40.504+02:00 2019-10-11T11:51:11.265+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:51:11.267+02:00 null
11 5aba6643-3fe3-422f-aa40-2d98591d9a82 f98b69ee-bef9-4609-8bfa-82f11d7f51b6 humidity 58.46875 50.76171875 2019-09-29T19:32:41.187+02:00 2019-10-11T11:51:12.401+02:00 2019-09-29T19:32:41.188+02:00 2019-10-11T11:51:12.402+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.193+02:00 2019-10-11T11:51:12.41+02:00 null
12 eab34e23-2b43-40c2-9d6e-90e72fa13db5 humidity 50.7373046875 2019-10-11T11:51:13.551+02:00 2019-10-11T11:51:13.551+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:13.554+02:00 null
13 4659b946-8a40-4ba4-9888-6997bd1795f2 humidity 50.73828125 2019-10-11T11:51:14.695+02:00 2019-10-11T11:51:14.695+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:14.698+02:00 null
14 a6552aff-724c-4339-810a-36d911ddaa58 humidity 50.6845703125 2019-10-11T11:51:15.839+02:00 2019-10-11T11:51:15.839+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.842+02:00 null
15 c311cacd-e346-4b68-902b-400be0f8e02e humidity 50.6767578125 2019-10-11T11:51:15.976+02:00 2019-10-11T11:51:15.977+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.98+02:00 null
16 2d4db614-17f8-4ddd-ba08-e2a5f77d74ea humidity 50.68359375 2019-10-11T11:51:17.118+02:00 2019-10-11T11:51:17.118+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.121+02:00 null
17 936d61e4-494e-4959-a39a-c1dbc4a7d162 humidity 50.685546875 2019-10-11T11:51:17.243+02:00 2019-10-11T11:51:17.244+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.247+02:00 null
18 b913c9ca-4b5e-4c01-9aea-ee31d0d97977 humidity 50.6943359375 2019-10-11T11:51:18.381+02:00 2019-10-11T11:51:18.382+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:18.385+02:00 null
19 1171d0dd-2173-4da2-b2c6-7f7daaad7cd1 humidity 50.6943359375 2019-10-11T11:51:19.529+02:00 2019-10-11T11:51:19.529+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.532+02:00 null
20 d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312 humidity 50.7080078125 2019-10-11T11:51:19.664+02:00 2019-10-11T11:51:19.664+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.667+02:00 null

View File

@ -0,0 +1,20 @@
0fc9c4bf-7e86-4cee-b99c-7642984b5fcd,humidity,51,2019-10-11T11:51:01.969+02:00,2019-10-11T11:51:01.969+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.971+02:00,null
45e8b20c-1ab0-4cf1-9ef1-aa82537557f6,humidity,51,2019-10-11T11:51:03.109+02:00,2019-10-11T11:51:03.109+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:03.111+02:00,null
7b4f0fc3-ecec-4226-b621-49dd01cf9eb7,humidity,51,2019-10-11T11:51:04.251+02:00,2019-10-11T11:51:04.252+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:04.254+02:00,null
72ccf0a7-e680-460c-a3b8-7d14f46b5b0c,humidity,51,2019-10-11T11:51:05.402+02:00,2019-10-11T11:51:05.403+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:05.405+02:00,null
6f5277d9-abe3-4e87-b0f1-e4320756bbac,humidity,51,2019-10-11T11:51:06.551+02:00,2019-10-11T11:51:06.552+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:06.565+02:00,null
026370e8-2011-4bf0-8da9-ec4a9fe1ee19,humidity,51,2019-10-11T11:51:07.7+02:00,2019-10-11T11:51:07.7+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:07.702+02:00,null
e96eff46-8322-424d-9a79-51c746124354,humidity,50.5,2019-10-11T11:51:08.843+02:00,2019-10-11T11:51:08.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:08.846+02:00,null
6beb6aee-6888-4f4a-82ff-5bf700a22b0a,humidity,50.5,2019-10-11T11:51:09.986+02:00,2019-10-11T11:51:09.986+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:09.989+02:00,null
62a8f169-344d-4f9c-828a-7b4ea4261fad,humidity,50.5,2019-10-11T11:51:11.129+02:00,2019-10-11T11:51:11.13+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.133+02:00,null
b1d64d40-59d7-4093-ba1d-208d869c9aae,humidity,50.5,2019-10-11T11:51:11.264+02:00,2019-10-11T11:51:11.265+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.267+02:00,null
f98b69ee-bef9-4609-8bfa-82f11d7f51b6,humidity,51,2019-10-11T11:51:12.401+02:00,2019-10-11T11:51:12.402+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:12.41+02:00,null
eab34e23-2b43-40c2-9d6e-90e72fa13db5,humidity,50.5,2019-10-11T11:51:13.551+02:00,2019-10-11T11:51:13.551+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:13.554+02:00,null
4659b946-8a40-4ba4-9888-6997bd1795f2,humidity,50.5,2019-10-11T11:51:14.695+02:00,2019-10-11T11:51:14.695+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:14.698+02:00,null
a6552aff-724c-4339-810a-36d911ddaa58,humidity,50.5,2019-10-11T11:51:15.839+02:00,2019-10-11T11:51:15.839+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.842+02:00,null
c311cacd-e346-4b68-902b-400be0f8e02e,humidity,50.5,2019-10-11T11:51:15.976+02:00,2019-10-11T11:51:15.977+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.98+02:00,null
2d4db614-17f8-4ddd-ba08-e2a5f77d74ea,humidity,50.5,2019-10-11T11:51:17.118+02:00,2019-10-11T11:51:17.118+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.121+02:00,null
936d61e4-494e-4959-a39a-c1dbc4a7d162,humidity,50.5,2019-10-11T11:51:17.243+02:00,2019-10-11T11:51:17.244+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.247+02:00,null
b913c9ca-4b5e-4c01-9aea-ee31d0d97977,humidity,50.5,2019-10-11T11:51:18.381+02:00,2019-10-11T11:51:18.382+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:18.385+02:00,null
1171d0dd-2173-4da2-b2c6-7f7daaad7cd1,humidity,50.5,2019-10-11T11:51:19.529+02:00,2019-10-11T11:51:19.529+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.532+02:00,null
d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312,humidity,50.5,2019-10-11T11:51:19.664+02:00,2019-10-11T11:51:19.664+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.667+02:00,null
1 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd humidity 51 2019-10-11T11:51:01.969+02:00 2019-10-11T11:51:01.969+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.971+02:00 null
2 45e8b20c-1ab0-4cf1-9ef1-aa82537557f6 humidity 51 2019-10-11T11:51:03.109+02:00 2019-10-11T11:51:03.109+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:03.111+02:00 null
3 7b4f0fc3-ecec-4226-b621-49dd01cf9eb7 humidity 51 2019-10-11T11:51:04.251+02:00 2019-10-11T11:51:04.252+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:04.254+02:00 null
4 72ccf0a7-e680-460c-a3b8-7d14f46b5b0c humidity 51 2019-10-11T11:51:05.402+02:00 2019-10-11T11:51:05.403+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:05.405+02:00 null
5 6f5277d9-abe3-4e87-b0f1-e4320756bbac humidity 51 2019-10-11T11:51:06.551+02:00 2019-10-11T11:51:06.552+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:06.565+02:00 null
6 026370e8-2011-4bf0-8da9-ec4a9fe1ee19 humidity 51 2019-10-11T11:51:07.7+02:00 2019-10-11T11:51:07.7+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:07.702+02:00 null
7 e96eff46-8322-424d-9a79-51c746124354 humidity 50.5 2019-10-11T11:51:08.843+02:00 2019-10-11T11:51:08.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:08.846+02:00 null
8 6beb6aee-6888-4f4a-82ff-5bf700a22b0a humidity 50.5 2019-10-11T11:51:09.986+02:00 2019-10-11T11:51:09.986+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:09.989+02:00 null
9 62a8f169-344d-4f9c-828a-7b4ea4261fad humidity 50.5 2019-10-11T11:51:11.129+02:00 2019-10-11T11:51:11.13+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:11.133+02:00 null
10 b1d64d40-59d7-4093-ba1d-208d869c9aae humidity 50.5 2019-10-11T11:51:11.264+02:00 2019-10-11T11:51:11.265+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:11.267+02:00 null
11 f98b69ee-bef9-4609-8bfa-82f11d7f51b6 humidity 51 2019-10-11T11:51:12.401+02:00 2019-10-11T11:51:12.402+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:12.41+02:00 null
12 eab34e23-2b43-40c2-9d6e-90e72fa13db5 humidity 50.5 2019-10-11T11:51:13.551+02:00 2019-10-11T11:51:13.551+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:13.554+02:00 null
13 4659b946-8a40-4ba4-9888-6997bd1795f2 humidity 50.5 2019-10-11T11:51:14.695+02:00 2019-10-11T11:51:14.695+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:14.698+02:00 null
14 a6552aff-724c-4339-810a-36d911ddaa58 humidity 50.5 2019-10-11T11:51:15.839+02:00 2019-10-11T11:51:15.839+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.842+02:00 null
15 c311cacd-e346-4b68-902b-400be0f8e02e humidity 50.5 2019-10-11T11:51:15.976+02:00 2019-10-11T11:51:15.977+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.98+02:00 null
16 2d4db614-17f8-4ddd-ba08-e2a5f77d74ea humidity 50.5 2019-10-11T11:51:17.118+02:00 2019-10-11T11:51:17.118+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.121+02:00 null
17 936d61e4-494e-4959-a39a-c1dbc4a7d162 humidity 50.5 2019-10-11T11:51:17.243+02:00 2019-10-11T11:51:17.244+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.247+02:00 null
18 b913c9ca-4b5e-4c01-9aea-ee31d0d97977 humidity 50.5 2019-10-11T11:51:18.381+02:00 2019-10-11T11:51:18.382+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:18.385+02:00 null
19 1171d0dd-2173-4da2-b2c6-7f7daaad7cd1 humidity 50.5 2019-10-11T11:51:19.529+02:00 2019-10-11T11:51:19.529+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.532+02:00 null
20 d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312 humidity 50.5 2019-10-11T11:51:19.664+02:00 2019-10-11T11:51:19.664+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.667+02:00 null

View File

@ -0,0 +1,50 @@
2029cc8c-56cf-4cd1-adf8-06e768fbad29,temperature,20.90999984741211,2019-10-11T11:50:43.317+02:00,2019-10-11T11:50:43.317+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:43.319+02:00,null
a588cc90-4dca-4a4e-be81-2d20b9f64458,temperature,20.920000076293945,2019-10-11T11:50:44.459+02:00,2019-10-11T11:50:47.745+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:44.473+02:00,2019-10-11T11:51:01.71+02:00
88f5c095-8e88-4c80-b66a-cf154919afa8,temperature,20.93000030517578,2019-10-11T11:50:49.53+02:00,2019-10-11T11:50:49.53+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:50.018+02:00,null
7c3b7eac-3b43-4461-b204-d74c2bde3a08,temperature,20.920000076293945,2019-10-11T11:50:51.187+02:00,2019-10-11T11:50:53.652+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:51.189+02:00,2019-10-11T11:51:01.71+02:00
acb55d68-d909-41ba-a445-8ef9eab0c7aa,temperature,20.950000762939453,2019-10-11T11:50:53.788+02:00,2019-10-11T11:50:53.789+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.79+02:00,null
6563ff1e-371b-46a2-aca8-cc49b418bf61,temperature,20.93000030517578,2019-10-11T11:50:54.929+02:00,2019-10-11T11:50:55.536+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.405+02:00,2019-10-11T11:51:01.71+02:00
157eda79-3283-4cda-a21d-db0aa2da8548,temperature,20.959999084472656,2019-10-11T11:50:55.674+02:00,2019-10-11T11:50:55.674+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.677+02:00,null
c7d8d6ce-59d9-4448-9934-69cebc071cf6,temperature,20.940000534057617,2019-10-11T11:50:56.817+02:00,2019-10-11T11:50:56.817+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:56.82+02:00,null
07d08037-7267-44ab-8d90-878271809a4c,temperature,20.93000030517578,2019-10-11T11:50:57.959+02:00,2019-10-11T11:50:59.1+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:57.962+02:00,2019-10-11T11:51:01.71+02:00
0b865113-d0f4-42f4-af3d-50e60edcc523,temperature,20.959999084472656,2019-10-11T11:50:59.238+02:00,2019-10-11T11:50:59.238+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.241+02:00,null
c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2,temperature,20.979999542236328,2019-10-11T11:50:59.368+02:00,2019-10-11T11:50:59.368+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.371+02:00,null
8d98e723-7a07-4ccf-b3bc-7a2653952b8b,temperature,20.920000076293945,2019-10-11T11:51:00.509+02:00,2019-10-11T11:51:01.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:00.516+02:00,2019-10-11T11:51:01.71+02:00
0fc9c4bf-7e86-4cee-b99c-7642984b5fcd,humidity,50.8740234375,2019-10-11T11:51:01.969+02:00,2019-10-11T11:51:03.109+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.971+02:00,2019-10-11T11:51:20.729+02:00
7b4f0fc3-ecec-4226-b621-49dd01cf9eb7,humidity,50.884765625,2019-10-11T11:51:04.251+02:00,2019-10-11T11:51:04.252+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:04.254+02:00,null
72ccf0a7-e680-460c-a3b8-7d14f46b5b0c,humidity,50.861328125,2019-10-11T11:51:05.402+02:00,2019-10-11T11:51:05.403+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:05.405+02:00,null
6f5277d9-abe3-4e87-b0f1-e4320756bbac,humidity,50.8505859375,2019-10-11T11:51:06.551+02:00,2019-10-11T11:51:06.552+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:06.565+02:00,null
026370e8-2011-4bf0-8da9-ec4a9fe1ee19,humidity,50.7734375,2019-10-11T11:51:07.7+02:00,2019-10-11T11:51:07.7+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:07.702+02:00,null
e96eff46-8322-424d-9a79-51c746124354,humidity,50.728515625,2019-10-11T11:51:08.843+02:00,2019-10-11T11:51:08.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:08.846+02:00,null
6beb6aee-6888-4f4a-82ff-5bf700a22b0a,humidity,50.67578125,2019-10-11T11:51:09.986+02:00,2019-10-11T11:51:09.986+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:09.989+02:00,null
62a8f169-344d-4f9c-828a-7b4ea4261fad,humidity,50.6650390625,2019-10-11T11:51:11.129+02:00,2019-10-11T11:51:11.13+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.133+02:00,null
b1d64d40-59d7-4093-ba1d-208d869c9aae,humidity,50.6884765625,2019-10-11T11:51:11.264+02:00,2019-10-11T11:51:11.265+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.267+02:00,null
f98b69ee-bef9-4609-8bfa-82f11d7f51b6,humidity,50.76171875,2019-10-11T11:51:12.401+02:00,2019-10-11T11:51:12.402+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:12.41+02:00,null
eab34e23-2b43-40c2-9d6e-90e72fa13db5,humidity,50.7373046875,2019-10-11T11:51:13.551+02:00,2019-10-11T11:51:13.551+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:13.554+02:00,null
4659b946-8a40-4ba4-9888-6997bd1795f2,humidity,50.73828125,2019-10-11T11:51:14.695+02:00,2019-10-11T11:51:14.695+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:14.698+02:00,null
a6552aff-724c-4339-810a-36d911ddaa58,humidity,50.6845703125,2019-10-11T11:51:15.839+02:00,2019-10-11T11:51:15.839+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.842+02:00,null
c311cacd-e346-4b68-902b-400be0f8e02e,humidity,50.6767578125,2019-10-11T11:51:15.976+02:00,2019-10-11T11:51:15.977+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.98+02:00,null
2d4db614-17f8-4ddd-ba08-e2a5f77d74ea,humidity,50.68359375,2019-10-11T11:51:17.118+02:00,2019-10-11T11:51:17.118+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.121+02:00,null
936d61e4-494e-4959-a39a-c1dbc4a7d162,humidity,50.685546875,2019-10-11T11:51:17.243+02:00,2019-10-11T11:51:17.244+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.247+02:00,null
b913c9ca-4b5e-4c01-9aea-ee31d0d97977,humidity,50.6943359375,2019-10-11T11:51:18.381+02:00,2019-10-11T11:51:19.529+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:18.385+02:00,2019-10-11T11:51:20.729+02:00
d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312,humidity,50.7080078125,2019-10-11T11:51:19.664+02:00,2019-10-11T11:51:19.664+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.667+02:00,null
140d6183-36c8-4903-a798-def4fcb3bd74,pressure,100150.5,2019-10-11T11:51:20.98+02:00,2019-10-11T11:51:20.98+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:20.982+02:00,null
98102a36-a38e-4ccc-9886-c119a7971414,pressure,100151.703125,2019-10-11T11:51:22.123+02:00,2019-10-11T11:51:22.123+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:22.125+02:00,null
5ffe51ae-687c-47df-8936-7785de9beed7,pressure,100150.8984375,2019-10-11T11:51:23.261+02:00,2019-10-11T11:51:23.262+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:23.263+02:00,null
e534cb23-c725-403b-b5c9-5455256a8662,pressure,100153.203125,2019-10-11T11:51:23.739+02:00,2019-10-11T11:51:23.739+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.594+02:00,null
e3c2a10b-373f-43d5-b02c-b381d1ad203b,pressure,100149.296875,2019-10-11T11:51:24.721+02:00,2019-10-11T11:51:24.721+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.723+02:00,null
e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94,pressure,100150.796875,2019-10-11T11:51:24.849+02:00,2019-10-11T11:51:24.849+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:25.212+02:00,null
70f6de4d-3a17-4688-b635-b8965e85be43,pressure,100149.6015625,2019-10-11T11:51:26.352+02:00,2019-10-11T11:51:26.352+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.354+02:00,null
0e42478b-da36-4096-afad-d8c2a7685ccd,pressure,100149.5,2019-10-11T11:51:26.488+02:00,2019-10-11T11:51:26.488+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.49+02:00,null
0313994c-db52-42d6-b059-2ca13afdd5d8,pressure,100151.3984375,2019-10-11T11:51:26.622+02:00,2019-10-11T11:51:26.622+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.624+02:00,null
9cb66b4c-31d8-40dc-8c5b-9d243c2bb974,pressure,100150.203125,2019-10-11T11:51:26.754+02:00,2019-10-11T11:51:26.754+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.757+02:00,null
6e626fdb-326d-4984-9585-7b64976be1a2,pressure,100150.5,2019-10-11T11:51:26.894+02:00,2019-10-11T11:51:26.894+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.896+02:00,null
6869ae37-0200-40c2-85a5-d4412d81b62d,pressure,100154.1015625,2019-10-11T11:51:27.029+02:00,2019-10-11T11:51:27.029+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:27.032+02:00,null
8a0770b9-f8b0-42de-90fe-3e6a6311818b,pressure,100152.3984375,2019-10-11T11:51:28.169+02:00,2019-10-11T11:51:28.169+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.171+02:00,null
cf989dbb-2e73-4042-b339-b4dbc75b0a7c,pressure,100151.3984375,2019-10-11T11:51:28.294+02:00,2019-10-11T11:51:28.294+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.296+02:00,null
53a2d8fb-3b15-48a2-a277-1b821adba088,pressure,100151.1015625,2019-10-11T11:51:28.426+02:00,2019-10-11T11:51:28.426+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.428+02:00,null
9de16913-67f3-4e0b-9976-ddadbd057bae,pressure,100153.8984375,2019-10-11T11:51:29.563+02:00,2019-10-11T11:51:29.563+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:29.565+02:00,null
d8c255a5-c5bd-4e9e-9aec-d0e6ae795719,pressure,100154.6015625,2019-10-11T11:51:30.707+02:00,2019-10-11T11:51:30.707+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:30.71+02:00,null
31ab31ac-e991-4081-8b4e-eba0f789b806,pressure,100153.796875,2019-10-11T11:51:31.843+02:00,2019-10-11T11:51:31.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:31.846+02:00,null
ed2ec0a9-9bc1-424a-9edf-85aad7a059ec,pressure,100150.703125,2019-10-11T11:51:32.981+02:00,2019-10-11T11:51:32.981+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:32.984+02:00,null
31e03c4c-49a1-4c0d-a750-16c09b75f96b,pressure,100151.203125,2019-10-11T11:51:34.125+02:00,2019-10-11T11:51:34.126+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:34.133+02:00,null
1 2029cc8c-56cf-4cd1-adf8-06e768fbad29 temperature 20.90999984741211 2019-10-11T11:50:43.317+02:00 2019-10-11T11:50:43.317+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:43.319+02:00 null
2 a588cc90-4dca-4a4e-be81-2d20b9f64458 temperature 20.920000076293945 2019-10-11T11:50:44.459+02:00 2019-10-11T11:50:47.745+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:44.473+02:00 2019-10-11T11:51:01.71+02:00
3 88f5c095-8e88-4c80-b66a-cf154919afa8 temperature 20.93000030517578 2019-10-11T11:50:49.53+02:00 2019-10-11T11:50:49.53+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:50.018+02:00 null
4 7c3b7eac-3b43-4461-b204-d74c2bde3a08 temperature 20.920000076293945 2019-10-11T11:50:51.187+02:00 2019-10-11T11:50:53.652+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:51.189+02:00 2019-10-11T11:51:01.71+02:00
5 acb55d68-d909-41ba-a445-8ef9eab0c7aa temperature 20.950000762939453 2019-10-11T11:50:53.788+02:00 2019-10-11T11:50:53.789+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:53.79+02:00 null
6 6563ff1e-371b-46a2-aca8-cc49b418bf61 temperature 20.93000030517578 2019-10-11T11:50:54.929+02:00 2019-10-11T11:50:55.536+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.405+02:00 2019-10-11T11:51:01.71+02:00
7 157eda79-3283-4cda-a21d-db0aa2da8548 temperature 20.959999084472656 2019-10-11T11:50:55.674+02:00 2019-10-11T11:50:55.674+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.677+02:00 null
8 c7d8d6ce-59d9-4448-9934-69cebc071cf6 temperature 20.940000534057617 2019-10-11T11:50:56.817+02:00 2019-10-11T11:50:56.817+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:56.82+02:00 null
9 07d08037-7267-44ab-8d90-878271809a4c temperature 20.93000030517578 2019-10-11T11:50:57.959+02:00 2019-10-11T11:50:59.1+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:57.962+02:00 2019-10-11T11:51:01.71+02:00
10 0b865113-d0f4-42f4-af3d-50e60edcc523 temperature 20.959999084472656 2019-10-11T11:50:59.238+02:00 2019-10-11T11:50:59.238+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.241+02:00 null
11 c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2 temperature 20.979999542236328 2019-10-11T11:50:59.368+02:00 2019-10-11T11:50:59.368+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.371+02:00 null
12 8d98e723-7a07-4ccf-b3bc-7a2653952b8b temperature 20.920000076293945 2019-10-11T11:51:00.509+02:00 2019-10-11T11:51:01.658+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:00.516+02:00 2019-10-11T11:51:01.71+02:00
13 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd humidity 50.8740234375 2019-10-11T11:51:01.969+02:00 2019-10-11T11:51:03.109+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.971+02:00 2019-10-11T11:51:20.729+02:00
14 7b4f0fc3-ecec-4226-b621-49dd01cf9eb7 humidity 50.884765625 2019-10-11T11:51:04.251+02:00 2019-10-11T11:51:04.252+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:04.254+02:00 null
15 72ccf0a7-e680-460c-a3b8-7d14f46b5b0c humidity 50.861328125 2019-10-11T11:51:05.402+02:00 2019-10-11T11:51:05.403+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:05.405+02:00 null
16 6f5277d9-abe3-4e87-b0f1-e4320756bbac humidity 50.8505859375 2019-10-11T11:51:06.551+02:00 2019-10-11T11:51:06.552+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:06.565+02:00 null
17 026370e8-2011-4bf0-8da9-ec4a9fe1ee19 humidity 50.7734375 2019-10-11T11:51:07.7+02:00 2019-10-11T11:51:07.7+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:07.702+02:00 null
18 e96eff46-8322-424d-9a79-51c746124354 humidity 50.728515625 2019-10-11T11:51:08.843+02:00 2019-10-11T11:51:08.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:08.846+02:00 null
19 6beb6aee-6888-4f4a-82ff-5bf700a22b0a humidity 50.67578125 2019-10-11T11:51:09.986+02:00 2019-10-11T11:51:09.986+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:09.989+02:00 null
20 62a8f169-344d-4f9c-828a-7b4ea4261fad humidity 50.6650390625 2019-10-11T11:51:11.129+02:00 2019-10-11T11:51:11.13+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:11.133+02:00 null
21 b1d64d40-59d7-4093-ba1d-208d869c9aae humidity 50.6884765625 2019-10-11T11:51:11.264+02:00 2019-10-11T11:51:11.265+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:11.267+02:00 null
22 f98b69ee-bef9-4609-8bfa-82f11d7f51b6 humidity 50.76171875 2019-10-11T11:51:12.401+02:00 2019-10-11T11:51:12.402+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:12.41+02:00 null
23 eab34e23-2b43-40c2-9d6e-90e72fa13db5 humidity 50.7373046875 2019-10-11T11:51:13.551+02:00 2019-10-11T11:51:13.551+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:13.554+02:00 null
24 4659b946-8a40-4ba4-9888-6997bd1795f2 humidity 50.73828125 2019-10-11T11:51:14.695+02:00 2019-10-11T11:51:14.695+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:14.698+02:00 null
25 a6552aff-724c-4339-810a-36d911ddaa58 humidity 50.6845703125 2019-10-11T11:51:15.839+02:00 2019-10-11T11:51:15.839+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.842+02:00 null
26 c311cacd-e346-4b68-902b-400be0f8e02e humidity 50.6767578125 2019-10-11T11:51:15.976+02:00 2019-10-11T11:51:15.977+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.98+02:00 null
27 2d4db614-17f8-4ddd-ba08-e2a5f77d74ea humidity 50.68359375 2019-10-11T11:51:17.118+02:00 2019-10-11T11:51:17.118+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.121+02:00 null
28 936d61e4-494e-4959-a39a-c1dbc4a7d162 humidity 50.685546875 2019-10-11T11:51:17.243+02:00 2019-10-11T11:51:17.244+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.247+02:00 null
29 b913c9ca-4b5e-4c01-9aea-ee31d0d97977 humidity 50.6943359375 2019-10-11T11:51:18.381+02:00 2019-10-11T11:51:19.529+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:18.385+02:00 2019-10-11T11:51:20.729+02:00
30 d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312 humidity 50.7080078125 2019-10-11T11:51:19.664+02:00 2019-10-11T11:51:19.664+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.667+02:00 null
31 140d6183-36c8-4903-a798-def4fcb3bd74 pressure 100150.5 2019-10-11T11:51:20.98+02:00 2019-10-11T11:51:20.98+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:20.982+02:00 null
32 98102a36-a38e-4ccc-9886-c119a7971414 pressure 100151.703125 2019-10-11T11:51:22.123+02:00 2019-10-11T11:51:22.123+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:22.125+02:00 null
33 5ffe51ae-687c-47df-8936-7785de9beed7 pressure 100150.8984375 2019-10-11T11:51:23.261+02:00 2019-10-11T11:51:23.262+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:23.263+02:00 null
34 e534cb23-c725-403b-b5c9-5455256a8662 pressure 100153.203125 2019-10-11T11:51:23.739+02:00 2019-10-11T11:51:23.739+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.594+02:00 null
35 e3c2a10b-373f-43d5-b02c-b381d1ad203b pressure 100149.296875 2019-10-11T11:51:24.721+02:00 2019-10-11T11:51:24.721+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.723+02:00 null
36 e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94 pressure 100150.796875 2019-10-11T11:51:24.849+02:00 2019-10-11T11:51:24.849+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:25.212+02:00 null
37 70f6de4d-3a17-4688-b635-b8965e85be43 pressure 100149.6015625 2019-10-11T11:51:26.352+02:00 2019-10-11T11:51:26.352+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.354+02:00 null
38 0e42478b-da36-4096-afad-d8c2a7685ccd pressure 100149.5 2019-10-11T11:51:26.488+02:00 2019-10-11T11:51:26.488+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.49+02:00 null
39 0313994c-db52-42d6-b059-2ca13afdd5d8 pressure 100151.3984375 2019-10-11T11:51:26.622+02:00 2019-10-11T11:51:26.622+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.624+02:00 null
40 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974 pressure 100150.203125 2019-10-11T11:51:26.754+02:00 2019-10-11T11:51:26.754+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.757+02:00 null
41 6e626fdb-326d-4984-9585-7b64976be1a2 pressure 100150.5 2019-10-11T11:51:26.894+02:00 2019-10-11T11:51:26.894+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.896+02:00 null
42 6869ae37-0200-40c2-85a5-d4412d81b62d pressure 100154.1015625 2019-10-11T11:51:27.029+02:00 2019-10-11T11:51:27.029+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:27.032+02:00 null
43 8a0770b9-f8b0-42de-90fe-3e6a6311818b pressure 100152.3984375 2019-10-11T11:51:28.169+02:00 2019-10-11T11:51:28.169+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.171+02:00 null
44 cf989dbb-2e73-4042-b339-b4dbc75b0a7c pressure 100151.3984375 2019-10-11T11:51:28.294+02:00 2019-10-11T11:51:28.294+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.296+02:00 null
45 53a2d8fb-3b15-48a2-a277-1b821adba088 pressure 100151.1015625 2019-10-11T11:51:28.426+02:00 2019-10-11T11:51:28.426+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.428+02:00 null
46 9de16913-67f3-4e0b-9976-ddadbd057bae pressure 100153.8984375 2019-10-11T11:51:29.563+02:00 2019-10-11T11:51:29.563+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:29.565+02:00 null
47 d8c255a5-c5bd-4e9e-9aec-d0e6ae795719 pressure 100154.6015625 2019-10-11T11:51:30.707+02:00 2019-10-11T11:51:30.707+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:30.71+02:00 null
48 31ab31ac-e991-4081-8b4e-eba0f789b806 pressure 100153.796875 2019-10-11T11:51:31.843+02:00 2019-10-11T11:51:31.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:31.846+02:00 null
49 ed2ec0a9-9bc1-424a-9edf-85aad7a059ec pressure 100150.703125 2019-10-11T11:51:32.981+02:00 2019-10-11T11:51:32.981+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:32.984+02:00 null
50 31e03c4c-49a1-4c0d-a750-16c09b75f96b pressure 100151.203125 2019-10-11T11:51:34.125+02:00 2019-10-11T11:51:34.126+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:34.133+02:00 null

View File

@ -0,0 +1,24 @@
2029cc8c-56cf-4cd1-adf8-06e768fbad29,temperature,21,2019-10-11T11:50:43.317+02:00,2019-10-11T11:51:01.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:43.319+02:00,2019-10-11T11:51:01.735+02:00
0fc9c4bf-7e86-4cee-b99c-7642984b5fcd,humidity,51,2019-10-11T11:51:01.969+02:00,2019-10-11T11:51:07.7+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.971+02:00,2019-10-11T11:51:20.754+02:00
e96eff46-8322-424d-9a79-51c746124354,humidity,50.5,2019-10-11T11:51:08.843+02:00,2019-10-11T11:51:11.265+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:08.846+02:00,2019-10-11T11:51:20.754+02:00
f98b69ee-bef9-4609-8bfa-82f11d7f51b6,humidity,51,2019-10-11T11:51:12.401+02:00,2019-10-11T11:51:12.402+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:12.41+02:00,null
eab34e23-2b43-40c2-9d6e-90e72fa13db5,humidity,50.5,2019-10-11T11:51:13.551+02:00,2019-10-11T11:51:19.664+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:13.554+02:00,2019-10-11T11:51:20.754+02:00
140d6183-36c8-4903-a798-def4fcb3bd74,pressure,100150.5,2019-10-11T11:51:20.98+02:00,2019-10-11T11:51:20.98+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:20.982+02:00,null
98102a36-a38e-4ccc-9886-c119a7971414,pressure,100151.5,2019-10-11T11:51:22.123+02:00,2019-10-11T11:51:22.123+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:22.125+02:00,null
5ffe51ae-687c-47df-8936-7785de9beed7,pressure,100151,2019-10-11T11:51:23.261+02:00,2019-10-11T11:51:23.262+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:23.263+02:00,null
e534cb23-c725-403b-b5c9-5455256a8662,pressure,100153,2019-10-11T11:51:23.739+02:00,2019-10-11T11:51:23.739+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.594+02:00,null
e3c2a10b-373f-43d5-b02c-b381d1ad203b,pressure,100149.5,2019-10-11T11:51:24.721+02:00,2019-10-11T11:51:24.721+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.723+02:00,null
e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94,pressure,100151,2019-10-11T11:51:24.849+02:00,2019-10-11T11:51:24.849+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:25.212+02:00,null
70f6de4d-3a17-4688-b635-b8965e85be43,pressure,100149.5,2019-10-11T11:51:26.352+02:00,2019-10-11T11:51:26.488+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.354+02:00,2019-10-11T11:51:35.22+02:00
0313994c-db52-42d6-b059-2ca13afdd5d8,pressure,100151.5,2019-10-11T11:51:26.622+02:00,2019-10-11T11:51:26.622+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.624+02:00,null
9cb66b4c-31d8-40dc-8c5b-9d243c2bb974,pressure,100150,2019-10-11T11:51:26.754+02:00,2019-10-11T11:51:26.754+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.757+02:00,null
6e626fdb-326d-4984-9585-7b64976be1a2,pressure,100150.5,2019-10-11T11:51:26.894+02:00,2019-10-11T11:51:26.894+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.896+02:00,null
6869ae37-0200-40c2-85a5-d4412d81b62d,pressure,100154,2019-10-11T11:51:27.029+02:00,2019-10-11T11:51:27.029+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:27.032+02:00,null
8a0770b9-f8b0-42de-90fe-3e6a6311818b,pressure,100152.5,2019-10-11T11:51:28.169+02:00,2019-10-11T11:51:28.169+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.171+02:00,null
cf989dbb-2e73-4042-b339-b4dbc75b0a7c,pressure,100151.5,2019-10-11T11:51:28.294+02:00,2019-10-11T11:51:28.294+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.296+02:00,null
53a2d8fb-3b15-48a2-a277-1b821adba088,pressure,100151,2019-10-11T11:51:28.426+02:00,2019-10-11T11:51:28.426+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.428+02:00,null
9de16913-67f3-4e0b-9976-ddadbd057bae,pressure,100154,2019-10-11T11:51:29.563+02:00,2019-10-11T11:51:29.563+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:29.565+02:00,null
d8c255a5-c5bd-4e9e-9aec-d0e6ae795719,pressure,100154.5,2019-10-11T11:51:30.707+02:00,2019-10-11T11:51:30.707+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:30.71+02:00,null
31ab31ac-e991-4081-8b4e-eba0f789b806,pressure,100154,2019-10-11T11:51:31.843+02:00,2019-10-11T11:51:31.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:31.846+02:00,null
ed2ec0a9-9bc1-424a-9edf-85aad7a059ec,pressure,100150.5,2019-10-11T11:51:32.981+02:00,2019-10-11T11:51:32.981+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:32.984+02:00,null
31e03c4c-49a1-4c0d-a750-16c09b75f96b,pressure,100151,2019-10-11T11:51:34.125+02:00,2019-10-11T11:51:34.126+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:34.133+02:00,null
1 2029cc8c-56cf-4cd1-adf8-06e768fbad29 temperature 21 2019-10-11T11:50:43.317+02:00 2019-10-11T11:51:01.658+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:43.319+02:00 2019-10-11T11:51:01.735+02:00
2 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd humidity 51 2019-10-11T11:51:01.969+02:00 2019-10-11T11:51:07.7+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.971+02:00 2019-10-11T11:51:20.754+02:00
3 e96eff46-8322-424d-9a79-51c746124354 humidity 50.5 2019-10-11T11:51:08.843+02:00 2019-10-11T11:51:11.265+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:08.846+02:00 2019-10-11T11:51:20.754+02:00
4 f98b69ee-bef9-4609-8bfa-82f11d7f51b6 humidity 51 2019-10-11T11:51:12.401+02:00 2019-10-11T11:51:12.402+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:12.41+02:00 null
5 eab34e23-2b43-40c2-9d6e-90e72fa13db5 humidity 50.5 2019-10-11T11:51:13.551+02:00 2019-10-11T11:51:19.664+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:13.554+02:00 2019-10-11T11:51:20.754+02:00
6 140d6183-36c8-4903-a798-def4fcb3bd74 pressure 100150.5 2019-10-11T11:51:20.98+02:00 2019-10-11T11:51:20.98+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:20.982+02:00 null
7 98102a36-a38e-4ccc-9886-c119a7971414 pressure 100151.5 2019-10-11T11:51:22.123+02:00 2019-10-11T11:51:22.123+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:22.125+02:00 null
8 5ffe51ae-687c-47df-8936-7785de9beed7 pressure 100151 2019-10-11T11:51:23.261+02:00 2019-10-11T11:51:23.262+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:23.263+02:00 null
9 e534cb23-c725-403b-b5c9-5455256a8662 pressure 100153 2019-10-11T11:51:23.739+02:00 2019-10-11T11:51:23.739+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.594+02:00 null
10 e3c2a10b-373f-43d5-b02c-b381d1ad203b pressure 100149.5 2019-10-11T11:51:24.721+02:00 2019-10-11T11:51:24.721+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.723+02:00 null
11 e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94 pressure 100151 2019-10-11T11:51:24.849+02:00 2019-10-11T11:51:24.849+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:25.212+02:00 null
12 70f6de4d-3a17-4688-b635-b8965e85be43 pressure 100149.5 2019-10-11T11:51:26.352+02:00 2019-10-11T11:51:26.488+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.354+02:00 2019-10-11T11:51:35.22+02:00
13 0313994c-db52-42d6-b059-2ca13afdd5d8 pressure 100151.5 2019-10-11T11:51:26.622+02:00 2019-10-11T11:51:26.622+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.624+02:00 null
14 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974 pressure 100150 2019-10-11T11:51:26.754+02:00 2019-10-11T11:51:26.754+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.757+02:00 null
15 6e626fdb-326d-4984-9585-7b64976be1a2 pressure 100150.5 2019-10-11T11:51:26.894+02:00 2019-10-11T11:51:26.894+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.896+02:00 null
16 6869ae37-0200-40c2-85a5-d4412d81b62d pressure 100154 2019-10-11T11:51:27.029+02:00 2019-10-11T11:51:27.029+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:27.032+02:00 null
17 8a0770b9-f8b0-42de-90fe-3e6a6311818b pressure 100152.5 2019-10-11T11:51:28.169+02:00 2019-10-11T11:51:28.169+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.171+02:00 null
18 cf989dbb-2e73-4042-b339-b4dbc75b0a7c pressure 100151.5 2019-10-11T11:51:28.294+02:00 2019-10-11T11:51:28.294+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.296+02:00 null
19 53a2d8fb-3b15-48a2-a277-1b821adba088 pressure 100151 2019-10-11T11:51:28.426+02:00 2019-10-11T11:51:28.426+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.428+02:00 null
20 9de16913-67f3-4e0b-9976-ddadbd057bae pressure 100154 2019-10-11T11:51:29.563+02:00 2019-10-11T11:51:29.563+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:29.565+02:00 null
21 d8c255a5-c5bd-4e9e-9aec-d0e6ae795719 pressure 100154.5 2019-10-11T11:51:30.707+02:00 2019-10-11T11:51:30.707+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:30.71+02:00 null
22 31ab31ac-e991-4081-8b4e-eba0f789b806 pressure 100154 2019-10-11T11:51:31.843+02:00 2019-10-11T11:51:31.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:31.846+02:00 null
23 ed2ec0a9-9bc1-424a-9edf-85aad7a059ec pressure 100150.5 2019-10-11T11:51:32.981+02:00 2019-10-11T11:51:32.981+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:32.984+02:00 null
24 31e03c4c-49a1-4c0d-a750-16c09b75f96b pressure 100151 2019-10-11T11:51:34.125+02:00 2019-10-11T11:51:34.126+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:34.133+02:00 null

View File

@ -1,33 +1,60 @@
7d3286c3-3f32-40e7-9656-f587de5d5341,humidity,58.55859375,2019-09-29T19:32:33.862+02:00,2019-09-29T19:32:33.862+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.191+02:00,null 2029cc8c-56cf-4cd1-adf8-06e768fbad29,temperature,20.90999984741211,2019-10-11T11:50:43.317+02:00,2019-10-11T11:50:43.317+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:43.319+02:00,null
9890f244-9854-4a78-826e-124dc7b179af,humidity,58.55859375,2019-09-29T19:32:35.521+02:00,2019-09-29T19:32:35.521+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.191+02:00,null a588cc90-4dca-4a4e-be81-2d20b9f64458,temperature,20.920000076293945,2019-10-11T11:50:44.459+02:00,2019-10-11T11:50:44.459+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:44.473+02:00,null
40124dc7-a6af-4864-8566-7c2925b4471b,humidity,58.525390625,2019-09-29T19:32:36.186+02:00,2019-09-29T19:32:36.186+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.191+02:00,null 1ebb60de-6066-4731-9f55-ee1c51748b7f,temperature,20.920000076293945,2019-10-11T11:50:45.614+02:00,2019-10-11T11:50:45.614+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:45.615+02:00,null
92bfde08-0f2a-4b6e-b227-44f341f35446,humidity,58.5068359375,2019-09-29T19:32:36.881+02:00,2019-09-29T19:32:36.882+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.191+02:00,null 6cbc586f-a5c9-4296-b3b2-200afae12059,temperature,20.920000076293945,2019-10-11T11:50:46.776+02:00,2019-10-11T11:50:46.776+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:47.134+02:00,null
c22e278e-f6fb-4755-8bf3-7a7313816abf,humidity,58.470703125,2019-09-29T19:32:37.485+02:00,2019-09-29T19:32:37.485+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 14e03e32-f214-4f61-97b0-8e021c47bead,temperature,20.920000076293945,2019-10-11T11:50:47.745+02:00,2019-10-11T11:50:47.745+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:47.747+02:00,null
c0468792-72c2-45f6-a9f4-c798f9307bc2,humidity,58.4384765625,2019-09-29T19:32:38.073+02:00,2019-09-29T19:32:38.073+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 88f5c095-8e88-4c80-b66a-cf154919afa8,temperature,20.93000030517578,2019-10-11T11:50:49.53+02:00,2019-10-11T11:50:49.53+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:50.018+02:00,null
9afab5be-7502-47fc-a5b2-cf8bd1a62054,humidity,58.4384765625,2019-09-29T19:32:38.675+02:00,2019-09-29T19:32:38.676+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 7c3b7eac-3b43-4461-b204-d74c2bde3a08,temperature,20.920000076293945,2019-10-11T11:50:51.187+02:00,2019-10-11T11:50:51.187+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:51.189+02:00,null
3b8560f9-9536-47e3-839e-8351ffecbfcf,humidity,58.4384765625,2019-09-29T19:32:39.258+02:00,2019-09-29T19:32:39.259+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 3caf0b08-38d5-4536-baa5-86d4d75e359d,temperature,20.920000076293945,2019-10-11T11:50:52.508+02:00,2019-10-11T11:50:52.508+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:52.51+02:00,null
4afcb00e-4035-443d-8495-535932d45623,humidity,58.4375,2019-09-29T19:32:39.839+02:00,2019-09-29T19:32:39.839+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null 4b8595bf-3624-4963-b796-efc648515cd9,temperature,20.920000076293945,2019-10-11T11:50:53.652+02:00,2019-10-11T11:50:53.652+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.654+02:00,null
132e91ec-9b06-4792-a8c0-b82ccdcbce16,humidity,58.447265625,2019-09-29T19:32:40.503+02:00,2019-09-29T19:32:40.504+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.192+02:00,null acb55d68-d909-41ba-a445-8ef9eab0c7aa,temperature,20.950000762939453,2019-10-11T11:50:53.788+02:00,2019-10-11T11:50:53.789+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.79+02:00,null
5aba6643-3fe3-422f-aa40-2d98591d9a82,humidity,58.46875,2019-09-29T19:32:41.187+02:00,2019-09-29T19:32:41.188+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:32:41.193+02:00,null 6563ff1e-371b-46a2-aca8-cc49b418bf61,temperature,20.93000030517578,2019-10-11T11:50:54.929+02:00,2019-10-11T11:50:54.93+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.405+02:00,null
c18c918e-180b-40ea-8509-b37a2d19c1b8,pressure,98527.1015625,2019-09-29T19:29:56.579+02:00,2019-09-29T19:29:56.579+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null a64f57c4-b95c-45b1-b78a-a6be263abb85,temperature,20.93000030517578,2019-10-11T11:50:55.536+02:00,2019-10-11T11:50:55.536+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.538+02:00,null
31269000-f855-472c-b607-5ef7dbcc2d3b,pressure,98531.296875,2019-09-29T19:29:58.02+02:00,2019-09-29T19:29:58.02+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null 157eda79-3283-4cda-a21d-db0aa2da8548,temperature,20.959999084472656,2019-10-11T11:50:55.674+02:00,2019-10-11T11:50:55.674+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.677+02:00,null
7df14e44-185e-43a4-ba67-c86561bf19a0,pressure,98526.8984375,2019-09-29T19:29:58.886+02:00,2019-09-29T19:29:58.886+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null c7d8d6ce-59d9-4448-9934-69cebc071cf6,temperature,20.940000534057617,2019-10-11T11:50:56.817+02:00,2019-10-11T11:50:56.817+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:56.82+02:00,null
e63f2d08-cbbe-43c6-80f6-70e504aebce5,pressure,98530.5,2019-09-29T19:29:59.657+02:00,2019-09-29T19:29:59.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null 07d08037-7267-44ab-8d90-878271809a4c,temperature,20.93000030517578,2019-10-11T11:50:57.959+02:00,2019-10-11T11:50:57.96+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:57.962+02:00,null
1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c,pressure,98529.796875,2019-09-29T19:30:00.301+02:00,2019-09-29T19:30:00.302+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null bf2e981f-8bad-466e-9a12-c1a5d9b64399,temperature,20.93000030517578,2019-10-11T11:50:59.1+02:00,2019-10-11T11:50:59.1+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.103+02:00,null
b002af5d-3ef0-4608-b6c6-2745be36c7f0,pressure,98530.1015625,2019-09-29T19:30:00.878+02:00,2019-09-29T19:30:00.879+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 0b865113-d0f4-42f4-af3d-50e60edcc523,temperature,20.959999084472656,2019-10-11T11:50:59.238+02:00,2019-10-11T11:50:59.238+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.241+02:00,null
e0753df7-865d-41ec-a2fc-58692c0e6a12,pressure,98530.3984375,2019-09-29T19:30:01.513+02:00,2019-09-29T19:30:01.513+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2,temperature,20.979999542236328,2019-10-11T11:50:59.368+02:00,2019-10-11T11:50:59.368+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.371+02:00,null
a46d74d4-dce8-497d-a08a-a609d2ed1238,pressure,98532.5,2019-09-29T19:30:02.095+02:00,2019-09-29T19:30:02.095+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 8d98e723-7a07-4ccf-b3bc-7a2653952b8b,temperature,20.920000076293945,2019-10-11T11:51:00.509+02:00,2019-10-11T11:51:00.51+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:00.516+02:00,null
2a17ada0-caad-42d3-b12e-9ef432d79e59,pressure,98532.203125,2019-09-29T19:30:02.643+02:00,2019-09-29T19:30:02.643+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null f61b7bfb-14eb-4b43-a7b6-47b61fa46dda,temperature,20.920000076293945,2019-10-11T11:51:01.658+02:00,2019-10-11T11:51:01.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.661+02:00,null
f83d1000-9fe5-4ced-9c10-587525b2a9e7,pressure,98528.296875,2019-09-29T19:30:03.26+02:00,2019-09-29T19:30:03.26+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd,humidity,50.8740234375,2019-10-11T11:51:01.969+02:00,2019-10-11T11:51:01.969+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.971+02:00,null
e2d50392-2d67-4324-add5-dd5c566ba826,pressure,98532.796875,2019-09-29T19:30:03.835+02:00,2019-09-29T19:30:03.835+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 45e8b20c-1ab0-4cf1-9ef1-aa82537557f6,humidity,50.8740234375,2019-10-11T11:51:03.109+02:00,2019-10-11T11:51:03.109+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:03.111+02:00,null
63d546fe-4e27-4816-8e8c-cd16026cf079,temperature,22.040000915527344,2019-09-29T19:26:12.887+02:00,2019-09-29T19:26:12.887+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.292+02:00,null 7b4f0fc3-ecec-4226-b621-49dd01cf9eb7,humidity,50.884765625,2019-10-11T11:51:04.251+02:00,2019-10-11T11:51:04.252+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:04.254+02:00,null
ac3dddda-a669-4215-8174-42eaa3af741b,temperature,22.049999237060547,2019-09-29T19:26:13.312+02:00,2019-09-29T19:26:13.312+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.292+02:00,null 72ccf0a7-e680-460c-a3b8-7d14f46b5b0c,humidity,50.861328125,2019-10-11T11:51:05.402+02:00,2019-10-11T11:51:05.403+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:05.405+02:00,null
0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae,temperature,22.049999237060547,2019-09-29T19:26:13.848+02:00,2019-09-29T19:26:13.848+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.292+02:00,null 6f5277d9-abe3-4e87-b0f1-e4320756bbac,humidity,50.8505859375,2019-10-11T11:51:06.551+02:00,2019-10-11T11:51:06.552+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:06.565+02:00,null
2ebc3339-974e-4a8f-bec1-531f9045ffe6,temperature,22.049999237060547,2019-09-29T19:26:14.381+02:00,2019-09-29T19:26:14.382+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.292+02:00,null 026370e8-2011-4bf0-8da9-ec4a9fe1ee19,humidity,50.7734375,2019-10-11T11:51:07.7+02:00,2019-10-11T11:51:07.7+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:07.702+02:00,null
dfa35a46-803b-4c21-9cbc-092efc8d3646,temperature,22.059999465942383,2019-09-29T19:26:14.923+02:00,2019-09-29T19:26:14.923+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null e96eff46-8322-424d-9a79-51c746124354,humidity,50.728515625,2019-10-11T11:51:08.843+02:00,2019-10-11T11:51:08.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:08.846+02:00,null
ce284f94-6032-467a-804d-34f7dc47ffcb,temperature,22.049999237060547,2019-09-29T19:26:15.472+02:00,2019-09-29T19:26:15.472+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null 6beb6aee-6888-4f4a-82ff-5bf700a22b0a,humidity,50.67578125,2019-10-11T11:51:09.986+02:00,2019-10-11T11:51:09.986+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:09.989+02:00,null
9926b8e7-2092-48c7-9906-856af2fa7251,temperature,22.049999237060547,2019-09-29T19:26:16.001+02:00,2019-09-29T19:26:16.001+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null 62a8f169-344d-4f9c-828a-7b4ea4261fad,humidity,50.6650390625,2019-10-11T11:51:11.129+02:00,2019-10-11T11:51:11.13+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.133+02:00,null
9170f2e0-c6aa-4c75-95dc-d1f129df541f,temperature,22.049999237060547,2019-09-29T19:26:16.591+02:00,2019-09-29T19:26:16.591+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null b1d64d40-59d7-4093-ba1d-208d869c9aae,humidity,50.6884765625,2019-10-11T11:51:11.264+02:00,2019-10-11T11:51:11.265+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.267+02:00,null
ebce8428-d414-4ed2-98c1-2f3b8b45dd0b,temperature,22.049999237060547,2019-09-29T19:26:17.124+02:00,2019-09-29T19:26:17.124+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null f98b69ee-bef9-4609-8bfa-82f11d7f51b6,humidity,50.76171875,2019-10-11T11:51:12.401+02:00,2019-10-11T11:51:12.402+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:12.41+02:00,null
58e55045-33c6-4122-a2d9-b5bc12059b77,temperature,22.059999465942383,2019-09-29T19:26:17.679+02:00,2019-09-29T19:26:17.679+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null eab34e23-2b43-40c2-9d6e-90e72fa13db5,humidity,50.7373046875,2019-10-11T11:51:13.551+02:00,2019-10-11T11:51:13.551+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:13.554+02:00,null
1df7d65b-149c-46f5-a377-5d9ad399f471,temperature,22.049999237060547,2019-09-29T19:26:18.291+02:00,2019-09-29T19:26:18.291+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.294+02:00,null 4659b946-8a40-4ba4-9888-6997bd1795f2,humidity,50.73828125,2019-10-11T11:51:14.695+02:00,2019-10-11T11:51:14.695+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:14.698+02:00,null
a6552aff-724c-4339-810a-36d911ddaa58,humidity,50.6845703125,2019-10-11T11:51:15.839+02:00,2019-10-11T11:51:15.839+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.842+02:00,null
c311cacd-e346-4b68-902b-400be0f8e02e,humidity,50.6767578125,2019-10-11T11:51:15.976+02:00,2019-10-11T11:51:15.977+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.98+02:00,null
2d4db614-17f8-4ddd-ba08-e2a5f77d74ea,humidity,50.68359375,2019-10-11T11:51:17.118+02:00,2019-10-11T11:51:17.118+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.121+02:00,null
936d61e4-494e-4959-a39a-c1dbc4a7d162,humidity,50.685546875,2019-10-11T11:51:17.243+02:00,2019-10-11T11:51:17.244+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.247+02:00,null
b913c9ca-4b5e-4c01-9aea-ee31d0d97977,humidity,50.6943359375,2019-10-11T11:51:18.381+02:00,2019-10-11T11:51:18.382+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:18.385+02:00,null
1171d0dd-2173-4da2-b2c6-7f7daaad7cd1,humidity,50.6943359375,2019-10-11T11:51:19.529+02:00,2019-10-11T11:51:19.529+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.532+02:00,null
d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312,humidity,50.7080078125,2019-10-11T11:51:19.664+02:00,2019-10-11T11:51:19.664+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.667+02:00,null
140d6183-36c8-4903-a798-def4fcb3bd74,pressure,100150.5,2019-10-11T11:51:20.98+02:00,2019-10-11T11:51:20.98+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:20.982+02:00,null
98102a36-a38e-4ccc-9886-c119a7971414,pressure,100151.703125,2019-10-11T11:51:22.123+02:00,2019-10-11T11:51:22.123+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:22.125+02:00,null
5ffe51ae-687c-47df-8936-7785de9beed7,pressure,100150.8984375,2019-10-11T11:51:23.261+02:00,2019-10-11T11:51:23.262+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:23.263+02:00,null
e534cb23-c725-403b-b5c9-5455256a8662,pressure,100153.203125,2019-10-11T11:51:23.739+02:00,2019-10-11T11:51:23.739+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.594+02:00,null
e3c2a10b-373f-43d5-b02c-b381d1ad203b,pressure,100149.296875,2019-10-11T11:51:24.721+02:00,2019-10-11T11:51:24.721+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.723+02:00,null
e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94,pressure,100150.796875,2019-10-11T11:51:24.849+02:00,2019-10-11T11:51:24.849+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:25.212+02:00,null
70f6de4d-3a17-4688-b635-b8965e85be43,pressure,100149.6015625,2019-10-11T11:51:26.352+02:00,2019-10-11T11:51:26.352+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.354+02:00,null
0e42478b-da36-4096-afad-d8c2a7685ccd,pressure,100149.5,2019-10-11T11:51:26.488+02:00,2019-10-11T11:51:26.488+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.49+02:00,null
0313994c-db52-42d6-b059-2ca13afdd5d8,pressure,100151.3984375,2019-10-11T11:51:26.622+02:00,2019-10-11T11:51:26.622+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.624+02:00,null
9cb66b4c-31d8-40dc-8c5b-9d243c2bb974,pressure,100150.203125,2019-10-11T11:51:26.754+02:00,2019-10-11T11:51:26.754+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.757+02:00,null
6e626fdb-326d-4984-9585-7b64976be1a2,pressure,100150.5,2019-10-11T11:51:26.894+02:00,2019-10-11T11:51:26.894+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.896+02:00,null
6869ae37-0200-40c2-85a5-d4412d81b62d,pressure,100154.1015625,2019-10-11T11:51:27.029+02:00,2019-10-11T11:51:27.029+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:27.032+02:00,null
8a0770b9-f8b0-42de-90fe-3e6a6311818b,pressure,100152.3984375,2019-10-11T11:51:28.169+02:00,2019-10-11T11:51:28.169+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.171+02:00,null
cf989dbb-2e73-4042-b339-b4dbc75b0a7c,pressure,100151.3984375,2019-10-11T11:51:28.294+02:00,2019-10-11T11:51:28.294+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.296+02:00,null
53a2d8fb-3b15-48a2-a277-1b821adba088,pressure,100151.1015625,2019-10-11T11:51:28.426+02:00,2019-10-11T11:51:28.426+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.428+02:00,null
9de16913-67f3-4e0b-9976-ddadbd057bae,pressure,100153.8984375,2019-10-11T11:51:29.563+02:00,2019-10-11T11:51:29.563+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:29.565+02:00,null
d8c255a5-c5bd-4e9e-9aec-d0e6ae795719,pressure,100154.6015625,2019-10-11T11:51:30.707+02:00,2019-10-11T11:51:30.707+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:30.71+02:00,null
31ab31ac-e991-4081-8b4e-eba0f789b806,pressure,100153.796875,2019-10-11T11:51:31.843+02:00,2019-10-11T11:51:31.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:31.846+02:00,null
ed2ec0a9-9bc1-424a-9edf-85aad7a059ec,pressure,100150.703125,2019-10-11T11:51:32.981+02:00,2019-10-11T11:51:32.981+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:32.984+02:00,null
31e03c4c-49a1-4c0d-a750-16c09b75f96b,pressure,100151.203125,2019-10-11T11:51:34.125+02:00,2019-10-11T11:51:34.126+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:34.133+02:00,null

1 7d3286c3-3f32-40e7-9656-f587de5d5341 2029cc8c-56cf-4cd1-adf8-06e768fbad29 humidity temperature 58.55859375 20.90999984741211 2019-09-29T19:32:33.862+02:00 2019-10-11T11:50:43.317+02:00 2019-09-29T19:32:33.862+02:00 2019-10-11T11:50:43.317+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.191+02:00 2019-10-11T11:50:43.319+02:00 null
2 9890f244-9854-4a78-826e-124dc7b179af a588cc90-4dca-4a4e-be81-2d20b9f64458 humidity temperature 58.55859375 20.920000076293945 2019-09-29T19:32:35.521+02:00 2019-10-11T11:50:44.459+02:00 2019-09-29T19:32:35.521+02:00 2019-10-11T11:50:44.459+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.191+02:00 2019-10-11T11:50:44.473+02:00 null
3 40124dc7-a6af-4864-8566-7c2925b4471b 1ebb60de-6066-4731-9f55-ee1c51748b7f humidity temperature 58.525390625 20.920000076293945 2019-09-29T19:32:36.186+02:00 2019-10-11T11:50:45.614+02:00 2019-09-29T19:32:36.186+02:00 2019-10-11T11:50:45.614+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.191+02:00 2019-10-11T11:50:45.615+02:00 null
4 92bfde08-0f2a-4b6e-b227-44f341f35446 6cbc586f-a5c9-4296-b3b2-200afae12059 humidity temperature 58.5068359375 20.920000076293945 2019-09-29T19:32:36.881+02:00 2019-10-11T11:50:46.776+02:00 2019-09-29T19:32:36.882+02:00 2019-10-11T11:50:46.776+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.191+02:00 2019-10-11T11:50:47.134+02:00 null
5 c22e278e-f6fb-4755-8bf3-7a7313816abf 14e03e32-f214-4f61-97b0-8e021c47bead humidity temperature 58.470703125 20.920000076293945 2019-09-29T19:32:37.485+02:00 2019-10-11T11:50:47.745+02:00 2019-09-29T19:32:37.485+02:00 2019-10-11T11:50:47.745+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:50:47.747+02:00 null
6 c0468792-72c2-45f6-a9f4-c798f9307bc2 88f5c095-8e88-4c80-b66a-cf154919afa8 humidity temperature 58.4384765625 20.93000030517578 2019-09-29T19:32:38.073+02:00 2019-10-11T11:50:49.53+02:00 2019-09-29T19:32:38.073+02:00 2019-10-11T11:50:49.53+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:50:50.018+02:00 null
7 9afab5be-7502-47fc-a5b2-cf8bd1a62054 7c3b7eac-3b43-4461-b204-d74c2bde3a08 humidity temperature 58.4384765625 20.920000076293945 2019-09-29T19:32:38.675+02:00 2019-10-11T11:50:51.187+02:00 2019-09-29T19:32:38.676+02:00 2019-10-11T11:50:51.187+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:50:51.189+02:00 null
8 3b8560f9-9536-47e3-839e-8351ffecbfcf 3caf0b08-38d5-4536-baa5-86d4d75e359d humidity temperature 58.4384765625 20.920000076293945 2019-09-29T19:32:39.258+02:00 2019-10-11T11:50:52.508+02:00 2019-09-29T19:32:39.259+02:00 2019-10-11T11:50:52.508+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:50:52.51+02:00 null
9 4afcb00e-4035-443d-8495-535932d45623 4b8595bf-3624-4963-b796-efc648515cd9 humidity temperature 58.4375 20.920000076293945 2019-09-29T19:32:39.839+02:00 2019-10-11T11:50:53.652+02:00 2019-09-29T19:32:39.839+02:00 2019-10-11T11:50:53.652+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:50:53.654+02:00 null
10 132e91ec-9b06-4792-a8c0-b82ccdcbce16 acb55d68-d909-41ba-a445-8ef9eab0c7aa humidity temperature 58.447265625 20.950000762939453 2019-09-29T19:32:40.503+02:00 2019-10-11T11:50:53.788+02:00 2019-09-29T19:32:40.504+02:00 2019-10-11T11:50:53.789+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.192+02:00 2019-10-11T11:50:53.79+02:00 null
11 5aba6643-3fe3-422f-aa40-2d98591d9a82 6563ff1e-371b-46a2-aca8-cc49b418bf61 humidity temperature 58.46875 20.93000030517578 2019-09-29T19:32:41.187+02:00 2019-10-11T11:50:54.929+02:00 2019-09-29T19:32:41.188+02:00 2019-10-11T11:50:54.93+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:32:41.193+02:00 2019-10-11T11:50:55.405+02:00 null
12 c18c918e-180b-40ea-8509-b37a2d19c1b8 a64f57c4-b95c-45b1-b78a-a6be263abb85 pressure temperature 98527.1015625 20.93000030517578 2019-09-29T19:29:56.579+02:00 2019-10-11T11:50:55.536+02:00 2019-09-29T19:29:56.579+02:00 2019-10-11T11:50:55.536+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:50:55.538+02:00 null
13 31269000-f855-472c-b607-5ef7dbcc2d3b 157eda79-3283-4cda-a21d-db0aa2da8548 pressure temperature 98531.296875 20.959999084472656 2019-09-29T19:29:58.02+02:00 2019-10-11T11:50:55.674+02:00 2019-09-29T19:29:58.02+02:00 2019-10-11T11:50:55.674+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:50:55.677+02:00 null
14 7df14e44-185e-43a4-ba67-c86561bf19a0 c7d8d6ce-59d9-4448-9934-69cebc071cf6 pressure temperature 98526.8984375 20.940000534057617 2019-09-29T19:29:58.886+02:00 2019-10-11T11:50:56.817+02:00 2019-09-29T19:29:58.886+02:00 2019-10-11T11:50:56.817+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:50:56.82+02:00 null
15 e63f2d08-cbbe-43c6-80f6-70e504aebce5 07d08037-7267-44ab-8d90-878271809a4c pressure temperature 98530.5 20.93000030517578 2019-09-29T19:29:59.657+02:00 2019-10-11T11:50:57.959+02:00 2019-09-29T19:29:59.658+02:00 2019-10-11T11:50:57.96+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:50:57.962+02:00 null
16 1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c bf2e981f-8bad-466e-9a12-c1a5d9b64399 pressure temperature 98529.796875 20.93000030517578 2019-09-29T19:30:00.301+02:00 2019-10-11T11:50:59.1+02:00 2019-09-29T19:30:00.302+02:00 2019-10-11T11:50:59.1+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:50:59.103+02:00 null
17 b002af5d-3ef0-4608-b6c6-2745be36c7f0 0b865113-d0f4-42f4-af3d-50e60edcc523 pressure temperature 98530.1015625 20.959999084472656 2019-09-29T19:30:00.878+02:00 2019-10-11T11:50:59.238+02:00 2019-09-29T19:30:00.879+02:00 2019-10-11T11:50:59.238+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:50:59.241+02:00 null
18 e0753df7-865d-41ec-a2fc-58692c0e6a12 c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2 pressure temperature 98530.3984375 20.979999542236328 2019-09-29T19:30:01.513+02:00 2019-10-11T11:50:59.368+02:00 2019-09-29T19:30:01.513+02:00 2019-10-11T11:50:59.368+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:50:59.371+02:00 null
19 a46d74d4-dce8-497d-a08a-a609d2ed1238 8d98e723-7a07-4ccf-b3bc-7a2653952b8b pressure temperature 98532.5 20.920000076293945 2019-09-29T19:30:02.095+02:00 2019-10-11T11:51:00.509+02:00 2019-09-29T19:30:02.095+02:00 2019-10-11T11:51:00.51+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:00.516+02:00 null
20 2a17ada0-caad-42d3-b12e-9ef432d79e59 f61b7bfb-14eb-4b43-a7b6-47b61fa46dda pressure temperature 98532.203125 20.920000076293945 2019-09-29T19:30:02.643+02:00 2019-10-11T11:51:01.658+02:00 2019-09-29T19:30:02.643+02:00 2019-10-11T11:51:01.658+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:01.661+02:00 null
21 f83d1000-9fe5-4ced-9c10-587525b2a9e7 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd pressure humidity 98528.296875 50.8740234375 2019-09-29T19:30:03.26+02:00 2019-10-11T11:51:01.969+02:00 2019-09-29T19:30:03.26+02:00 2019-10-11T11:51:01.969+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:01.971+02:00 null
22 e2d50392-2d67-4324-add5-dd5c566ba826 45e8b20c-1ab0-4cf1-9ef1-aa82537557f6 pressure humidity 98532.796875 50.8740234375 2019-09-29T19:30:03.835+02:00 2019-10-11T11:51:03.109+02:00 2019-09-29T19:30:03.835+02:00 2019-10-11T11:51:03.109+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:03.111+02:00 null
23 63d546fe-4e27-4816-8e8c-cd16026cf079 7b4f0fc3-ecec-4226-b621-49dd01cf9eb7 temperature humidity 22.040000915527344 50.884765625 2019-09-29T19:26:12.887+02:00 2019-10-11T11:51:04.251+02:00 2019-09-29T19:26:12.887+02:00 2019-10-11T11:51:04.252+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.292+02:00 2019-10-11T11:51:04.254+02:00 null
24 ac3dddda-a669-4215-8174-42eaa3af741b 72ccf0a7-e680-460c-a3b8-7d14f46b5b0c temperature humidity 22.049999237060547 50.861328125 2019-09-29T19:26:13.312+02:00 2019-10-11T11:51:05.402+02:00 2019-09-29T19:26:13.312+02:00 2019-10-11T11:51:05.403+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.292+02:00 2019-10-11T11:51:05.405+02:00 null
25 0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae 6f5277d9-abe3-4e87-b0f1-e4320756bbac temperature humidity 22.049999237060547 50.8505859375 2019-09-29T19:26:13.848+02:00 2019-10-11T11:51:06.551+02:00 2019-09-29T19:26:13.848+02:00 2019-10-11T11:51:06.552+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.292+02:00 2019-10-11T11:51:06.565+02:00 null
26 2ebc3339-974e-4a8f-bec1-531f9045ffe6 026370e8-2011-4bf0-8da9-ec4a9fe1ee19 temperature humidity 22.049999237060547 50.7734375 2019-09-29T19:26:14.381+02:00 2019-10-11T11:51:07.7+02:00 2019-09-29T19:26:14.382+02:00 2019-10-11T11:51:07.7+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.292+02:00 2019-10-11T11:51:07.702+02:00 null
27 dfa35a46-803b-4c21-9cbc-092efc8d3646 e96eff46-8322-424d-9a79-51c746124354 temperature humidity 22.059999465942383 50.728515625 2019-09-29T19:26:14.923+02:00 2019-10-11T11:51:08.843+02:00 2019-09-29T19:26:14.923+02:00 2019-10-11T11:51:08.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:51:08.846+02:00 null
28 ce284f94-6032-467a-804d-34f7dc47ffcb 6beb6aee-6888-4f4a-82ff-5bf700a22b0a temperature humidity 22.049999237060547 50.67578125 2019-09-29T19:26:15.472+02:00 2019-10-11T11:51:09.986+02:00 2019-09-29T19:26:15.472+02:00 2019-10-11T11:51:09.986+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:51:09.989+02:00 null
29 9926b8e7-2092-48c7-9906-856af2fa7251 62a8f169-344d-4f9c-828a-7b4ea4261fad temperature humidity 22.049999237060547 50.6650390625 2019-09-29T19:26:16.001+02:00 2019-10-11T11:51:11.129+02:00 2019-09-29T19:26:16.001+02:00 2019-10-11T11:51:11.13+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:51:11.133+02:00 null
30 9170f2e0-c6aa-4c75-95dc-d1f129df541f b1d64d40-59d7-4093-ba1d-208d869c9aae temperature humidity 22.049999237060547 50.6884765625 2019-09-29T19:26:16.591+02:00 2019-10-11T11:51:11.264+02:00 2019-09-29T19:26:16.591+02:00 2019-10-11T11:51:11.265+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:51:11.267+02:00 null
31 ebce8428-d414-4ed2-98c1-2f3b8b45dd0b f98b69ee-bef9-4609-8bfa-82f11d7f51b6 temperature humidity 22.049999237060547 50.76171875 2019-09-29T19:26:17.124+02:00 2019-10-11T11:51:12.401+02:00 2019-09-29T19:26:17.124+02:00 2019-10-11T11:51:12.402+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:51:12.41+02:00 null
32 58e55045-33c6-4122-a2d9-b5bc12059b77 eab34e23-2b43-40c2-9d6e-90e72fa13db5 temperature humidity 22.059999465942383 50.7373046875 2019-09-29T19:26:17.679+02:00 2019-10-11T11:51:13.551+02:00 2019-09-29T19:26:17.679+02:00 2019-10-11T11:51:13.551+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:51:13.554+02:00 null
33 1df7d65b-149c-46f5-a377-5d9ad399f471 4659b946-8a40-4ba4-9888-6997bd1795f2 temperature humidity 22.049999237060547 50.73828125 2019-09-29T19:26:18.291+02:00 2019-10-11T11:51:14.695+02:00 2019-09-29T19:26:18.291+02:00 2019-10-11T11:51:14.695+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.294+02:00 2019-10-11T11:51:14.698+02:00 null
34 a6552aff-724c-4339-810a-36d911ddaa58 humidity 50.6845703125 2019-10-11T11:51:15.839+02:00 2019-10-11T11:51:15.839+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.842+02:00 null
35 c311cacd-e346-4b68-902b-400be0f8e02e humidity 50.6767578125 2019-10-11T11:51:15.976+02:00 2019-10-11T11:51:15.977+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.98+02:00 null
36 2d4db614-17f8-4ddd-ba08-e2a5f77d74ea humidity 50.68359375 2019-10-11T11:51:17.118+02:00 2019-10-11T11:51:17.118+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.121+02:00 null
37 936d61e4-494e-4959-a39a-c1dbc4a7d162 humidity 50.685546875 2019-10-11T11:51:17.243+02:00 2019-10-11T11:51:17.244+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.247+02:00 null
38 b913c9ca-4b5e-4c01-9aea-ee31d0d97977 humidity 50.6943359375 2019-10-11T11:51:18.381+02:00 2019-10-11T11:51:18.382+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:18.385+02:00 null
39 1171d0dd-2173-4da2-b2c6-7f7daaad7cd1 humidity 50.6943359375 2019-10-11T11:51:19.529+02:00 2019-10-11T11:51:19.529+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.532+02:00 null
40 d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312 humidity 50.7080078125 2019-10-11T11:51:19.664+02:00 2019-10-11T11:51:19.664+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.667+02:00 null
41 140d6183-36c8-4903-a798-def4fcb3bd74 pressure 100150.5 2019-10-11T11:51:20.98+02:00 2019-10-11T11:51:20.98+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:20.982+02:00 null
42 98102a36-a38e-4ccc-9886-c119a7971414 pressure 100151.703125 2019-10-11T11:51:22.123+02:00 2019-10-11T11:51:22.123+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:22.125+02:00 null
43 5ffe51ae-687c-47df-8936-7785de9beed7 pressure 100150.8984375 2019-10-11T11:51:23.261+02:00 2019-10-11T11:51:23.262+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:23.263+02:00 null
44 e534cb23-c725-403b-b5c9-5455256a8662 pressure 100153.203125 2019-10-11T11:51:23.739+02:00 2019-10-11T11:51:23.739+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.594+02:00 null
45 e3c2a10b-373f-43d5-b02c-b381d1ad203b pressure 100149.296875 2019-10-11T11:51:24.721+02:00 2019-10-11T11:51:24.721+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.723+02:00 null
46 e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94 pressure 100150.796875 2019-10-11T11:51:24.849+02:00 2019-10-11T11:51:24.849+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:25.212+02:00 null
47 70f6de4d-3a17-4688-b635-b8965e85be43 pressure 100149.6015625 2019-10-11T11:51:26.352+02:00 2019-10-11T11:51:26.352+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.354+02:00 null
48 0e42478b-da36-4096-afad-d8c2a7685ccd pressure 100149.5 2019-10-11T11:51:26.488+02:00 2019-10-11T11:51:26.488+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.49+02:00 null
49 0313994c-db52-42d6-b059-2ca13afdd5d8 pressure 100151.3984375 2019-10-11T11:51:26.622+02:00 2019-10-11T11:51:26.622+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.624+02:00 null
50 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974 pressure 100150.203125 2019-10-11T11:51:26.754+02:00 2019-10-11T11:51:26.754+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.757+02:00 null
51 6e626fdb-326d-4984-9585-7b64976be1a2 pressure 100150.5 2019-10-11T11:51:26.894+02:00 2019-10-11T11:51:26.894+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.896+02:00 null
52 6869ae37-0200-40c2-85a5-d4412d81b62d pressure 100154.1015625 2019-10-11T11:51:27.029+02:00 2019-10-11T11:51:27.029+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:27.032+02:00 null
53 8a0770b9-f8b0-42de-90fe-3e6a6311818b pressure 100152.3984375 2019-10-11T11:51:28.169+02:00 2019-10-11T11:51:28.169+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.171+02:00 null
54 cf989dbb-2e73-4042-b339-b4dbc75b0a7c pressure 100151.3984375 2019-10-11T11:51:28.294+02:00 2019-10-11T11:51:28.294+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.296+02:00 null
55 53a2d8fb-3b15-48a2-a277-1b821adba088 pressure 100151.1015625 2019-10-11T11:51:28.426+02:00 2019-10-11T11:51:28.426+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.428+02:00 null
56 9de16913-67f3-4e0b-9976-ddadbd057bae pressure 100153.8984375 2019-10-11T11:51:29.563+02:00 2019-10-11T11:51:29.563+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:29.565+02:00 null
57 d8c255a5-c5bd-4e9e-9aec-d0e6ae795719 pressure 100154.6015625 2019-10-11T11:51:30.707+02:00 2019-10-11T11:51:30.707+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:30.71+02:00 null
58 31ab31ac-e991-4081-8b4e-eba0f789b806 pressure 100153.796875 2019-10-11T11:51:31.843+02:00 2019-10-11T11:51:31.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:31.846+02:00 null
59 ed2ec0a9-9bc1-424a-9edf-85aad7a059ec pressure 100150.703125 2019-10-11T11:51:32.981+02:00 2019-10-11T11:51:32.981+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:32.984+02:00 null
60 31e03c4c-49a1-4c0d-a750-16c09b75f96b pressure 100151.203125 2019-10-11T11:51:34.125+02:00 2019-10-11T11:51:34.126+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:34.133+02:00 null

View File

@ -0,0 +1,60 @@
2029cc8c-56cf-4cd1-adf8-06e768fbad29,temperature,21,2019-10-11T11:50:43.317+02:00,2019-10-11T11:50:43.317+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:43.319+02:00,null
a588cc90-4dca-4a4e-be81-2d20b9f64458,temperature,21,2019-10-11T11:50:44.459+02:00,2019-10-11T11:50:44.459+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:44.473+02:00,null
1ebb60de-6066-4731-9f55-ee1c51748b7f,temperature,21,2019-10-11T11:50:45.614+02:00,2019-10-11T11:50:45.614+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:45.615+02:00,null
6cbc586f-a5c9-4296-b3b2-200afae12059,temperature,21,2019-10-11T11:50:46.776+02:00,2019-10-11T11:50:46.776+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:47.134+02:00,null
14e03e32-f214-4f61-97b0-8e021c47bead,temperature,21,2019-10-11T11:50:47.745+02:00,2019-10-11T11:50:47.745+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:47.747+02:00,null
88f5c095-8e88-4c80-b66a-cf154919afa8,temperature,21,2019-10-11T11:50:49.53+02:00,2019-10-11T11:50:49.53+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:50.018+02:00,null
7c3b7eac-3b43-4461-b204-d74c2bde3a08,temperature,21,2019-10-11T11:50:51.187+02:00,2019-10-11T11:50:51.187+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:51.189+02:00,null
3caf0b08-38d5-4536-baa5-86d4d75e359d,temperature,21,2019-10-11T11:50:52.508+02:00,2019-10-11T11:50:52.508+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:52.51+02:00,null
4b8595bf-3624-4963-b796-efc648515cd9,temperature,21,2019-10-11T11:50:53.652+02:00,2019-10-11T11:50:53.652+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.654+02:00,null
acb55d68-d909-41ba-a445-8ef9eab0c7aa,temperature,21,2019-10-11T11:50:53.788+02:00,2019-10-11T11:50:53.789+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.79+02:00,null
6563ff1e-371b-46a2-aca8-cc49b418bf61,temperature,21,2019-10-11T11:50:54.929+02:00,2019-10-11T11:50:54.93+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.405+02:00,null
a64f57c4-b95c-45b1-b78a-a6be263abb85,temperature,21,2019-10-11T11:50:55.536+02:00,2019-10-11T11:50:55.536+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.538+02:00,null
157eda79-3283-4cda-a21d-db0aa2da8548,temperature,21,2019-10-11T11:50:55.674+02:00,2019-10-11T11:50:55.674+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.677+02:00,null
c7d8d6ce-59d9-4448-9934-69cebc071cf6,temperature,21,2019-10-11T11:50:56.817+02:00,2019-10-11T11:50:56.817+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:56.82+02:00,null
07d08037-7267-44ab-8d90-878271809a4c,temperature,21,2019-10-11T11:50:57.959+02:00,2019-10-11T11:50:57.96+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:57.962+02:00,null
bf2e981f-8bad-466e-9a12-c1a5d9b64399,temperature,21,2019-10-11T11:50:59.1+02:00,2019-10-11T11:50:59.1+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.103+02:00,null
0b865113-d0f4-42f4-af3d-50e60edcc523,temperature,21,2019-10-11T11:50:59.238+02:00,2019-10-11T11:50:59.238+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.241+02:00,null
c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2,temperature,21,2019-10-11T11:50:59.368+02:00,2019-10-11T11:50:59.368+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.371+02:00,null
8d98e723-7a07-4ccf-b3bc-7a2653952b8b,temperature,21,2019-10-11T11:51:00.509+02:00,2019-10-11T11:51:00.51+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:00.516+02:00,null
f61b7bfb-14eb-4b43-a7b6-47b61fa46dda,temperature,21,2019-10-11T11:51:01.658+02:00,2019-10-11T11:51:01.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.661+02:00,null
0fc9c4bf-7e86-4cee-b99c-7642984b5fcd,humidity,51,2019-10-11T11:51:01.969+02:00,2019-10-11T11:51:01.969+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.971+02:00,null
45e8b20c-1ab0-4cf1-9ef1-aa82537557f6,humidity,51,2019-10-11T11:51:03.109+02:00,2019-10-11T11:51:03.109+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:03.111+02:00,null
7b4f0fc3-ecec-4226-b621-49dd01cf9eb7,humidity,51,2019-10-11T11:51:04.251+02:00,2019-10-11T11:51:04.252+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:04.254+02:00,null
72ccf0a7-e680-460c-a3b8-7d14f46b5b0c,humidity,51,2019-10-11T11:51:05.402+02:00,2019-10-11T11:51:05.403+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:05.405+02:00,null
6f5277d9-abe3-4e87-b0f1-e4320756bbac,humidity,51,2019-10-11T11:51:06.551+02:00,2019-10-11T11:51:06.552+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:06.565+02:00,null
026370e8-2011-4bf0-8da9-ec4a9fe1ee19,humidity,51,2019-10-11T11:51:07.7+02:00,2019-10-11T11:51:07.7+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:07.702+02:00,null
e96eff46-8322-424d-9a79-51c746124354,humidity,50.5,2019-10-11T11:51:08.843+02:00,2019-10-11T11:51:08.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:08.846+02:00,null
6beb6aee-6888-4f4a-82ff-5bf700a22b0a,humidity,50.5,2019-10-11T11:51:09.986+02:00,2019-10-11T11:51:09.986+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:09.989+02:00,null
62a8f169-344d-4f9c-828a-7b4ea4261fad,humidity,50.5,2019-10-11T11:51:11.129+02:00,2019-10-11T11:51:11.13+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.133+02:00,null
b1d64d40-59d7-4093-ba1d-208d869c9aae,humidity,50.5,2019-10-11T11:51:11.264+02:00,2019-10-11T11:51:11.265+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:11.267+02:00,null
f98b69ee-bef9-4609-8bfa-82f11d7f51b6,humidity,51,2019-10-11T11:51:12.401+02:00,2019-10-11T11:51:12.402+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:12.41+02:00,null
eab34e23-2b43-40c2-9d6e-90e72fa13db5,humidity,50.5,2019-10-11T11:51:13.551+02:00,2019-10-11T11:51:13.551+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:13.554+02:00,null
4659b946-8a40-4ba4-9888-6997bd1795f2,humidity,50.5,2019-10-11T11:51:14.695+02:00,2019-10-11T11:51:14.695+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:14.698+02:00,null
a6552aff-724c-4339-810a-36d911ddaa58,humidity,50.5,2019-10-11T11:51:15.839+02:00,2019-10-11T11:51:15.839+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.842+02:00,null
c311cacd-e346-4b68-902b-400be0f8e02e,humidity,50.5,2019-10-11T11:51:15.976+02:00,2019-10-11T11:51:15.977+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:15.98+02:00,null
2d4db614-17f8-4ddd-ba08-e2a5f77d74ea,humidity,50.5,2019-10-11T11:51:17.118+02:00,2019-10-11T11:51:17.118+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.121+02:00,null
936d61e4-494e-4959-a39a-c1dbc4a7d162,humidity,50.5,2019-10-11T11:51:17.243+02:00,2019-10-11T11:51:17.244+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:17.247+02:00,null
b913c9ca-4b5e-4c01-9aea-ee31d0d97977,humidity,50.5,2019-10-11T11:51:18.381+02:00,2019-10-11T11:51:18.382+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:18.385+02:00,null
1171d0dd-2173-4da2-b2c6-7f7daaad7cd1,humidity,50.5,2019-10-11T11:51:19.529+02:00,2019-10-11T11:51:19.529+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.532+02:00,null
d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312,humidity,50.5,2019-10-11T11:51:19.664+02:00,2019-10-11T11:51:19.664+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:19.667+02:00,null
140d6183-36c8-4903-a798-def4fcb3bd74,pressure,100150.5,2019-10-11T11:51:20.98+02:00,2019-10-11T11:51:20.98+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:20.982+02:00,null
98102a36-a38e-4ccc-9886-c119a7971414,pressure,100151.5,2019-10-11T11:51:22.123+02:00,2019-10-11T11:51:22.123+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:22.125+02:00,null
5ffe51ae-687c-47df-8936-7785de9beed7,pressure,100151,2019-10-11T11:51:23.261+02:00,2019-10-11T11:51:23.262+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:23.263+02:00,null
e534cb23-c725-403b-b5c9-5455256a8662,pressure,100153,2019-10-11T11:51:23.739+02:00,2019-10-11T11:51:23.739+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.594+02:00,null
e3c2a10b-373f-43d5-b02c-b381d1ad203b,pressure,100149.5,2019-10-11T11:51:24.721+02:00,2019-10-11T11:51:24.721+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.723+02:00,null
e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94,pressure,100151,2019-10-11T11:51:24.849+02:00,2019-10-11T11:51:24.849+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:25.212+02:00,null
70f6de4d-3a17-4688-b635-b8965e85be43,pressure,100149.5,2019-10-11T11:51:26.352+02:00,2019-10-11T11:51:26.352+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.354+02:00,null
0e42478b-da36-4096-afad-d8c2a7685ccd,pressure,100149.5,2019-10-11T11:51:26.488+02:00,2019-10-11T11:51:26.488+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.49+02:00,null
0313994c-db52-42d6-b059-2ca13afdd5d8,pressure,100151.5,2019-10-11T11:51:26.622+02:00,2019-10-11T11:51:26.622+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.624+02:00,null
9cb66b4c-31d8-40dc-8c5b-9d243c2bb974,pressure,100150,2019-10-11T11:51:26.754+02:00,2019-10-11T11:51:26.754+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.757+02:00,null
6e626fdb-326d-4984-9585-7b64976be1a2,pressure,100150.5,2019-10-11T11:51:26.894+02:00,2019-10-11T11:51:26.894+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.896+02:00,null
6869ae37-0200-40c2-85a5-d4412d81b62d,pressure,100154,2019-10-11T11:51:27.029+02:00,2019-10-11T11:51:27.029+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:27.032+02:00,null
8a0770b9-f8b0-42de-90fe-3e6a6311818b,pressure,100152.5,2019-10-11T11:51:28.169+02:00,2019-10-11T11:51:28.169+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.171+02:00,null
cf989dbb-2e73-4042-b339-b4dbc75b0a7c,pressure,100151.5,2019-10-11T11:51:28.294+02:00,2019-10-11T11:51:28.294+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.296+02:00,null
53a2d8fb-3b15-48a2-a277-1b821adba088,pressure,100151,2019-10-11T11:51:28.426+02:00,2019-10-11T11:51:28.426+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.428+02:00,null
9de16913-67f3-4e0b-9976-ddadbd057bae,pressure,100154,2019-10-11T11:51:29.563+02:00,2019-10-11T11:51:29.563+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:29.565+02:00,null
d8c255a5-c5bd-4e9e-9aec-d0e6ae795719,pressure,100154.5,2019-10-11T11:51:30.707+02:00,2019-10-11T11:51:30.707+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:30.71+02:00,null
31ab31ac-e991-4081-8b4e-eba0f789b806,pressure,100154,2019-10-11T11:51:31.843+02:00,2019-10-11T11:51:31.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:31.846+02:00,null
ed2ec0a9-9bc1-424a-9edf-85aad7a059ec,pressure,100150.5,2019-10-11T11:51:32.981+02:00,2019-10-11T11:51:32.981+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:32.984+02:00,null
31e03c4c-49a1-4c0d-a750-16c09b75f96b,pressure,100151,2019-10-11T11:51:34.125+02:00,2019-10-11T11:51:34.126+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:34.133+02:00,null
1 2029cc8c-56cf-4cd1-adf8-06e768fbad29 temperature 21 2019-10-11T11:50:43.317+02:00 2019-10-11T11:50:43.317+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:43.319+02:00 null
2 a588cc90-4dca-4a4e-be81-2d20b9f64458 temperature 21 2019-10-11T11:50:44.459+02:00 2019-10-11T11:50:44.459+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:44.473+02:00 null
3 1ebb60de-6066-4731-9f55-ee1c51748b7f temperature 21 2019-10-11T11:50:45.614+02:00 2019-10-11T11:50:45.614+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:45.615+02:00 null
4 6cbc586f-a5c9-4296-b3b2-200afae12059 temperature 21 2019-10-11T11:50:46.776+02:00 2019-10-11T11:50:46.776+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:47.134+02:00 null
5 14e03e32-f214-4f61-97b0-8e021c47bead temperature 21 2019-10-11T11:50:47.745+02:00 2019-10-11T11:50:47.745+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:47.747+02:00 null
6 88f5c095-8e88-4c80-b66a-cf154919afa8 temperature 21 2019-10-11T11:50:49.53+02:00 2019-10-11T11:50:49.53+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:50.018+02:00 null
7 7c3b7eac-3b43-4461-b204-d74c2bde3a08 temperature 21 2019-10-11T11:50:51.187+02:00 2019-10-11T11:50:51.187+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:51.189+02:00 null
8 3caf0b08-38d5-4536-baa5-86d4d75e359d temperature 21 2019-10-11T11:50:52.508+02:00 2019-10-11T11:50:52.508+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:52.51+02:00 null
9 4b8595bf-3624-4963-b796-efc648515cd9 temperature 21 2019-10-11T11:50:53.652+02:00 2019-10-11T11:50:53.652+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:53.654+02:00 null
10 acb55d68-d909-41ba-a445-8ef9eab0c7aa temperature 21 2019-10-11T11:50:53.788+02:00 2019-10-11T11:50:53.789+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:53.79+02:00 null
11 6563ff1e-371b-46a2-aca8-cc49b418bf61 temperature 21 2019-10-11T11:50:54.929+02:00 2019-10-11T11:50:54.93+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.405+02:00 null
12 a64f57c4-b95c-45b1-b78a-a6be263abb85 temperature 21 2019-10-11T11:50:55.536+02:00 2019-10-11T11:50:55.536+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.538+02:00 null
13 157eda79-3283-4cda-a21d-db0aa2da8548 temperature 21 2019-10-11T11:50:55.674+02:00 2019-10-11T11:50:55.674+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.677+02:00 null
14 c7d8d6ce-59d9-4448-9934-69cebc071cf6 temperature 21 2019-10-11T11:50:56.817+02:00 2019-10-11T11:50:56.817+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:56.82+02:00 null
15 07d08037-7267-44ab-8d90-878271809a4c temperature 21 2019-10-11T11:50:57.959+02:00 2019-10-11T11:50:57.96+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:57.962+02:00 null
16 bf2e981f-8bad-466e-9a12-c1a5d9b64399 temperature 21 2019-10-11T11:50:59.1+02:00 2019-10-11T11:50:59.1+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.103+02:00 null
17 0b865113-d0f4-42f4-af3d-50e60edcc523 temperature 21 2019-10-11T11:50:59.238+02:00 2019-10-11T11:50:59.238+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.241+02:00 null
18 c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2 temperature 21 2019-10-11T11:50:59.368+02:00 2019-10-11T11:50:59.368+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.371+02:00 null
19 8d98e723-7a07-4ccf-b3bc-7a2653952b8b temperature 21 2019-10-11T11:51:00.509+02:00 2019-10-11T11:51:00.51+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:00.516+02:00 null
20 f61b7bfb-14eb-4b43-a7b6-47b61fa46dda temperature 21 2019-10-11T11:51:01.658+02:00 2019-10-11T11:51:01.658+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.661+02:00 null
21 0fc9c4bf-7e86-4cee-b99c-7642984b5fcd humidity 51 2019-10-11T11:51:01.969+02:00 2019-10-11T11:51:01.969+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.971+02:00 null
22 45e8b20c-1ab0-4cf1-9ef1-aa82537557f6 humidity 51 2019-10-11T11:51:03.109+02:00 2019-10-11T11:51:03.109+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:03.111+02:00 null
23 7b4f0fc3-ecec-4226-b621-49dd01cf9eb7 humidity 51 2019-10-11T11:51:04.251+02:00 2019-10-11T11:51:04.252+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:04.254+02:00 null
24 72ccf0a7-e680-460c-a3b8-7d14f46b5b0c humidity 51 2019-10-11T11:51:05.402+02:00 2019-10-11T11:51:05.403+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:05.405+02:00 null
25 6f5277d9-abe3-4e87-b0f1-e4320756bbac humidity 51 2019-10-11T11:51:06.551+02:00 2019-10-11T11:51:06.552+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:06.565+02:00 null
26 026370e8-2011-4bf0-8da9-ec4a9fe1ee19 humidity 51 2019-10-11T11:51:07.7+02:00 2019-10-11T11:51:07.7+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:07.702+02:00 null
27 e96eff46-8322-424d-9a79-51c746124354 humidity 50.5 2019-10-11T11:51:08.843+02:00 2019-10-11T11:51:08.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:08.846+02:00 null
28 6beb6aee-6888-4f4a-82ff-5bf700a22b0a humidity 50.5 2019-10-11T11:51:09.986+02:00 2019-10-11T11:51:09.986+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:09.989+02:00 null
29 62a8f169-344d-4f9c-828a-7b4ea4261fad humidity 50.5 2019-10-11T11:51:11.129+02:00 2019-10-11T11:51:11.13+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:11.133+02:00 null
30 b1d64d40-59d7-4093-ba1d-208d869c9aae humidity 50.5 2019-10-11T11:51:11.264+02:00 2019-10-11T11:51:11.265+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:11.267+02:00 null
31 f98b69ee-bef9-4609-8bfa-82f11d7f51b6 humidity 51 2019-10-11T11:51:12.401+02:00 2019-10-11T11:51:12.402+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:12.41+02:00 null
32 eab34e23-2b43-40c2-9d6e-90e72fa13db5 humidity 50.5 2019-10-11T11:51:13.551+02:00 2019-10-11T11:51:13.551+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:13.554+02:00 null
33 4659b946-8a40-4ba4-9888-6997bd1795f2 humidity 50.5 2019-10-11T11:51:14.695+02:00 2019-10-11T11:51:14.695+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:14.698+02:00 null
34 a6552aff-724c-4339-810a-36d911ddaa58 humidity 50.5 2019-10-11T11:51:15.839+02:00 2019-10-11T11:51:15.839+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.842+02:00 null
35 c311cacd-e346-4b68-902b-400be0f8e02e humidity 50.5 2019-10-11T11:51:15.976+02:00 2019-10-11T11:51:15.977+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:15.98+02:00 null
36 2d4db614-17f8-4ddd-ba08-e2a5f77d74ea humidity 50.5 2019-10-11T11:51:17.118+02:00 2019-10-11T11:51:17.118+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.121+02:00 null
37 936d61e4-494e-4959-a39a-c1dbc4a7d162 humidity 50.5 2019-10-11T11:51:17.243+02:00 2019-10-11T11:51:17.244+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:17.247+02:00 null
38 b913c9ca-4b5e-4c01-9aea-ee31d0d97977 humidity 50.5 2019-10-11T11:51:18.381+02:00 2019-10-11T11:51:18.382+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:18.385+02:00 null
39 1171d0dd-2173-4da2-b2c6-7f7daaad7cd1 humidity 50.5 2019-10-11T11:51:19.529+02:00 2019-10-11T11:51:19.529+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.532+02:00 null
40 d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312 humidity 50.5 2019-10-11T11:51:19.664+02:00 2019-10-11T11:51:19.664+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:19.667+02:00 null
41 140d6183-36c8-4903-a798-def4fcb3bd74 pressure 100150.5 2019-10-11T11:51:20.98+02:00 2019-10-11T11:51:20.98+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:20.982+02:00 null
42 98102a36-a38e-4ccc-9886-c119a7971414 pressure 100151.5 2019-10-11T11:51:22.123+02:00 2019-10-11T11:51:22.123+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:22.125+02:00 null
43 5ffe51ae-687c-47df-8936-7785de9beed7 pressure 100151 2019-10-11T11:51:23.261+02:00 2019-10-11T11:51:23.262+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:23.263+02:00 null
44 e534cb23-c725-403b-b5c9-5455256a8662 pressure 100153 2019-10-11T11:51:23.739+02:00 2019-10-11T11:51:23.739+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.594+02:00 null
45 e3c2a10b-373f-43d5-b02c-b381d1ad203b pressure 100149.5 2019-10-11T11:51:24.721+02:00 2019-10-11T11:51:24.721+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.723+02:00 null
46 e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94 pressure 100151 2019-10-11T11:51:24.849+02:00 2019-10-11T11:51:24.849+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:25.212+02:00 null
47 70f6de4d-3a17-4688-b635-b8965e85be43 pressure 100149.5 2019-10-11T11:51:26.352+02:00 2019-10-11T11:51:26.352+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.354+02:00 null
48 0e42478b-da36-4096-afad-d8c2a7685ccd pressure 100149.5 2019-10-11T11:51:26.488+02:00 2019-10-11T11:51:26.488+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.49+02:00 null
49 0313994c-db52-42d6-b059-2ca13afdd5d8 pressure 100151.5 2019-10-11T11:51:26.622+02:00 2019-10-11T11:51:26.622+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.624+02:00 null
50 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974 pressure 100150 2019-10-11T11:51:26.754+02:00 2019-10-11T11:51:26.754+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.757+02:00 null
51 6e626fdb-326d-4984-9585-7b64976be1a2 pressure 100150.5 2019-10-11T11:51:26.894+02:00 2019-10-11T11:51:26.894+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.896+02:00 null
52 6869ae37-0200-40c2-85a5-d4412d81b62d pressure 100154 2019-10-11T11:51:27.029+02:00 2019-10-11T11:51:27.029+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:27.032+02:00 null
53 8a0770b9-f8b0-42de-90fe-3e6a6311818b pressure 100152.5 2019-10-11T11:51:28.169+02:00 2019-10-11T11:51:28.169+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.171+02:00 null
54 cf989dbb-2e73-4042-b339-b4dbc75b0a7c pressure 100151.5 2019-10-11T11:51:28.294+02:00 2019-10-11T11:51:28.294+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.296+02:00 null
55 53a2d8fb-3b15-48a2-a277-1b821adba088 pressure 100151 2019-10-11T11:51:28.426+02:00 2019-10-11T11:51:28.426+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.428+02:00 null
56 9de16913-67f3-4e0b-9976-ddadbd057bae pressure 100154 2019-10-11T11:51:29.563+02:00 2019-10-11T11:51:29.563+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:29.565+02:00 null
57 d8c255a5-c5bd-4e9e-9aec-d0e6ae795719 pressure 100154.5 2019-10-11T11:51:30.707+02:00 2019-10-11T11:51:30.707+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:30.71+02:00 null
58 31ab31ac-e991-4081-8b4e-eba0f789b806 pressure 100154 2019-10-11T11:51:31.843+02:00 2019-10-11T11:51:31.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:31.846+02:00 null
59 ed2ec0a9-9bc1-424a-9edf-85aad7a059ec pressure 100150.5 2019-10-11T11:51:32.981+02:00 2019-10-11T11:51:32.981+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:32.984+02:00 null
60 31e03c4c-49a1-4c0d-a750-16c09b75f96b pressure 100151 2019-10-11T11:51:34.125+02:00 2019-10-11T11:51:34.126+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:34.133+02:00 null

View File

@ -0,0 +1,20 @@
140d6183-36c8-4903-a798-def4fcb3bd74,pressure,100150.5,2019-10-11T11:51:20.98+02:00,2019-10-11T11:51:20.98+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:20.982+02:00,null
98102a36-a38e-4ccc-9886-c119a7971414,pressure,100151.703125,2019-10-11T11:51:22.123+02:00,2019-10-11T11:51:22.123+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:22.125+02:00,null
5ffe51ae-687c-47df-8936-7785de9beed7,pressure,100150.8984375,2019-10-11T11:51:23.261+02:00,2019-10-11T11:51:23.262+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:23.263+02:00,null
e534cb23-c725-403b-b5c9-5455256a8662,pressure,100153.203125,2019-10-11T11:51:23.739+02:00,2019-10-11T11:51:23.739+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.594+02:00,null
e3c2a10b-373f-43d5-b02c-b381d1ad203b,pressure,100149.296875,2019-10-11T11:51:24.721+02:00,2019-10-11T11:51:24.721+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.723+02:00,null
e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94,pressure,100150.796875,2019-10-11T11:51:24.849+02:00,2019-10-11T11:51:24.849+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:25.212+02:00,null
70f6de4d-3a17-4688-b635-b8965e85be43,pressure,100149.6015625,2019-10-11T11:51:26.352+02:00,2019-10-11T11:51:26.352+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.354+02:00,null
0e42478b-da36-4096-afad-d8c2a7685ccd,pressure,100149.5,2019-10-11T11:51:26.488+02:00,2019-10-11T11:51:26.488+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.49+02:00,null
0313994c-db52-42d6-b059-2ca13afdd5d8,pressure,100151.3984375,2019-10-11T11:51:26.622+02:00,2019-10-11T11:51:26.622+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.624+02:00,null
9cb66b4c-31d8-40dc-8c5b-9d243c2bb974,pressure,100150.203125,2019-10-11T11:51:26.754+02:00,2019-10-11T11:51:26.754+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.757+02:00,null
6e626fdb-326d-4984-9585-7b64976be1a2,pressure,100150.5,2019-10-11T11:51:26.894+02:00,2019-10-11T11:51:26.894+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.896+02:00,null
6869ae37-0200-40c2-85a5-d4412d81b62d,pressure,100154.1015625,2019-10-11T11:51:27.029+02:00,2019-10-11T11:51:27.029+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:27.032+02:00,null
8a0770b9-f8b0-42de-90fe-3e6a6311818b,pressure,100152.3984375,2019-10-11T11:51:28.169+02:00,2019-10-11T11:51:28.169+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.171+02:00,null
cf989dbb-2e73-4042-b339-b4dbc75b0a7c,pressure,100151.3984375,2019-10-11T11:51:28.294+02:00,2019-10-11T11:51:28.294+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.296+02:00,null
53a2d8fb-3b15-48a2-a277-1b821adba088,pressure,100151.1015625,2019-10-11T11:51:28.426+02:00,2019-10-11T11:51:28.426+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.428+02:00,null
9de16913-67f3-4e0b-9976-ddadbd057bae,pressure,100153.8984375,2019-10-11T11:51:29.563+02:00,2019-10-11T11:51:29.563+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:29.565+02:00,null
d8c255a5-c5bd-4e9e-9aec-d0e6ae795719,pressure,100154.6015625,2019-10-11T11:51:30.707+02:00,2019-10-11T11:51:30.707+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:30.71+02:00,null
31ab31ac-e991-4081-8b4e-eba0f789b806,pressure,100153.796875,2019-10-11T11:51:31.843+02:00,2019-10-11T11:51:31.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:31.846+02:00,null
ed2ec0a9-9bc1-424a-9edf-85aad7a059ec,pressure,100150.703125,2019-10-11T11:51:32.981+02:00,2019-10-11T11:51:32.981+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:32.984+02:00,null
31e03c4c-49a1-4c0d-a750-16c09b75f96b,pressure,100151.203125,2019-10-11T11:51:34.125+02:00,2019-10-11T11:51:34.126+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:34.133+02:00,null
1 140d6183-36c8-4903-a798-def4fcb3bd74 pressure 100150.5 2019-10-11T11:51:20.98+02:00 2019-10-11T11:51:20.98+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:20.982+02:00 null
2 98102a36-a38e-4ccc-9886-c119a7971414 pressure 100151.703125 2019-10-11T11:51:22.123+02:00 2019-10-11T11:51:22.123+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:22.125+02:00 null
3 5ffe51ae-687c-47df-8936-7785de9beed7 pressure 100150.8984375 2019-10-11T11:51:23.261+02:00 2019-10-11T11:51:23.262+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:23.263+02:00 null
4 e534cb23-c725-403b-b5c9-5455256a8662 pressure 100153.203125 2019-10-11T11:51:23.739+02:00 2019-10-11T11:51:23.739+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.594+02:00 null
5 e3c2a10b-373f-43d5-b02c-b381d1ad203b pressure 100149.296875 2019-10-11T11:51:24.721+02:00 2019-10-11T11:51:24.721+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.723+02:00 null
6 e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94 pressure 100150.796875 2019-10-11T11:51:24.849+02:00 2019-10-11T11:51:24.849+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:25.212+02:00 null
7 70f6de4d-3a17-4688-b635-b8965e85be43 pressure 100149.6015625 2019-10-11T11:51:26.352+02:00 2019-10-11T11:51:26.352+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.354+02:00 null
8 0e42478b-da36-4096-afad-d8c2a7685ccd pressure 100149.5 2019-10-11T11:51:26.488+02:00 2019-10-11T11:51:26.488+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.49+02:00 null
9 0313994c-db52-42d6-b059-2ca13afdd5d8 pressure 100151.3984375 2019-10-11T11:51:26.622+02:00 2019-10-11T11:51:26.622+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.624+02:00 null
10 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974 pressure 100150.203125 2019-10-11T11:51:26.754+02:00 2019-10-11T11:51:26.754+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.757+02:00 null
11 6e626fdb-326d-4984-9585-7b64976be1a2 pressure 100150.5 2019-10-11T11:51:26.894+02:00 2019-10-11T11:51:26.894+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.896+02:00 null
12 6869ae37-0200-40c2-85a5-d4412d81b62d pressure 100154.1015625 2019-10-11T11:51:27.029+02:00 2019-10-11T11:51:27.029+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:27.032+02:00 null
13 8a0770b9-f8b0-42de-90fe-3e6a6311818b pressure 100152.3984375 2019-10-11T11:51:28.169+02:00 2019-10-11T11:51:28.169+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.171+02:00 null
14 cf989dbb-2e73-4042-b339-b4dbc75b0a7c pressure 100151.3984375 2019-10-11T11:51:28.294+02:00 2019-10-11T11:51:28.294+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.296+02:00 null
15 53a2d8fb-3b15-48a2-a277-1b821adba088 pressure 100151.1015625 2019-10-11T11:51:28.426+02:00 2019-10-11T11:51:28.426+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.428+02:00 null
16 9de16913-67f3-4e0b-9976-ddadbd057bae pressure 100153.8984375 2019-10-11T11:51:29.563+02:00 2019-10-11T11:51:29.563+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:29.565+02:00 null
17 d8c255a5-c5bd-4e9e-9aec-d0e6ae795719 pressure 100154.6015625 2019-10-11T11:51:30.707+02:00 2019-10-11T11:51:30.707+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:30.71+02:00 null
18 31ab31ac-e991-4081-8b4e-eba0f789b806 pressure 100153.796875 2019-10-11T11:51:31.843+02:00 2019-10-11T11:51:31.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:31.846+02:00 null
19 ed2ec0a9-9bc1-424a-9edf-85aad7a059ec pressure 100150.703125 2019-10-11T11:51:32.981+02:00 2019-10-11T11:51:32.981+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:32.984+02:00 null
20 31e03c4c-49a1-4c0d-a750-16c09b75f96b pressure 100151.203125 2019-10-11T11:51:34.125+02:00 2019-10-11T11:51:34.126+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:34.133+02:00 null

View File

@ -0,0 +1,19 @@
140d6183-36c8-4903-a798-def4fcb3bd74,pressure,100150.5,2019-10-11T11:51:20.98+02:00,2019-10-11T11:51:20.98+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:20.982+02:00,null
98102a36-a38e-4ccc-9886-c119a7971414,pressure,100151.5,2019-10-11T11:51:22.123+02:00,2019-10-11T11:51:22.123+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:22.125+02:00,null
5ffe51ae-687c-47df-8936-7785de9beed7,pressure,100151,2019-10-11T11:51:23.261+02:00,2019-10-11T11:51:23.262+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:23.263+02:00,null
e534cb23-c725-403b-b5c9-5455256a8662,pressure,100153,2019-10-11T11:51:23.739+02:00,2019-10-11T11:51:23.739+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.594+02:00,null
e3c2a10b-373f-43d5-b02c-b381d1ad203b,pressure,100149.5,2019-10-11T11:51:24.721+02:00,2019-10-11T11:51:24.721+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.723+02:00,null
e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94,pressure,100151,2019-10-11T11:51:24.849+02:00,2019-10-11T11:51:24.849+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:25.212+02:00,null
70f6de4d-3a17-4688-b635-b8965e85be43,pressure,100149.5,2019-10-11T11:51:26.352+02:00,2019-10-11T11:51:26.488+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.354+02:00,2019-10-11T11:51:35.22+02:00
0313994c-db52-42d6-b059-2ca13afdd5d8,pressure,100151.5,2019-10-11T11:51:26.622+02:00,2019-10-11T11:51:26.622+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.624+02:00,null
9cb66b4c-31d8-40dc-8c5b-9d243c2bb974,pressure,100150,2019-10-11T11:51:26.754+02:00,2019-10-11T11:51:26.754+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.757+02:00,null
6e626fdb-326d-4984-9585-7b64976be1a2,pressure,100150.5,2019-10-11T11:51:26.894+02:00,2019-10-11T11:51:26.894+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.896+02:00,null
6869ae37-0200-40c2-85a5-d4412d81b62d,pressure,100154,2019-10-11T11:51:27.029+02:00,2019-10-11T11:51:27.029+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:27.032+02:00,null
8a0770b9-f8b0-42de-90fe-3e6a6311818b,pressure,100152.5,2019-10-11T11:51:28.169+02:00,2019-10-11T11:51:28.169+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.171+02:00,null
cf989dbb-2e73-4042-b339-b4dbc75b0a7c,pressure,100151.5,2019-10-11T11:51:28.294+02:00,2019-10-11T11:51:28.294+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.296+02:00,null
53a2d8fb-3b15-48a2-a277-1b821adba088,pressure,100151,2019-10-11T11:51:28.426+02:00,2019-10-11T11:51:28.426+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.428+02:00,null
9de16913-67f3-4e0b-9976-ddadbd057bae,pressure,100154,2019-10-11T11:51:29.563+02:00,2019-10-11T11:51:29.563+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:29.565+02:00,null
d8c255a5-c5bd-4e9e-9aec-d0e6ae795719,pressure,100154.5,2019-10-11T11:51:30.707+02:00,2019-10-11T11:51:30.707+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:30.71+02:00,null
31ab31ac-e991-4081-8b4e-eba0f789b806,pressure,100154,2019-10-11T11:51:31.843+02:00,2019-10-11T11:51:31.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:31.846+02:00,null
ed2ec0a9-9bc1-424a-9edf-85aad7a059ec,pressure,100150.5,2019-10-11T11:51:32.981+02:00,2019-10-11T11:51:32.981+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:32.984+02:00,null
31e03c4c-49a1-4c0d-a750-16c09b75f96b,pressure,100151,2019-10-11T11:51:34.125+02:00,2019-10-11T11:51:34.126+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:34.133+02:00,null
1 140d6183-36c8-4903-a798-def4fcb3bd74 pressure 100150.5 2019-10-11T11:51:20.98+02:00 2019-10-11T11:51:20.98+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:20.982+02:00 null
2 98102a36-a38e-4ccc-9886-c119a7971414 pressure 100151.5 2019-10-11T11:51:22.123+02:00 2019-10-11T11:51:22.123+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:22.125+02:00 null
3 5ffe51ae-687c-47df-8936-7785de9beed7 pressure 100151 2019-10-11T11:51:23.261+02:00 2019-10-11T11:51:23.262+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:23.263+02:00 null
4 e534cb23-c725-403b-b5c9-5455256a8662 pressure 100153 2019-10-11T11:51:23.739+02:00 2019-10-11T11:51:23.739+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.594+02:00 null
5 e3c2a10b-373f-43d5-b02c-b381d1ad203b pressure 100149.5 2019-10-11T11:51:24.721+02:00 2019-10-11T11:51:24.721+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.723+02:00 null
6 e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94 pressure 100151 2019-10-11T11:51:24.849+02:00 2019-10-11T11:51:24.849+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:25.212+02:00 null
7 70f6de4d-3a17-4688-b635-b8965e85be43 pressure 100149.5 2019-10-11T11:51:26.352+02:00 2019-10-11T11:51:26.488+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.354+02:00 2019-10-11T11:51:35.22+02:00
8 0313994c-db52-42d6-b059-2ca13afdd5d8 pressure 100151.5 2019-10-11T11:51:26.622+02:00 2019-10-11T11:51:26.622+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.624+02:00 null
9 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974 pressure 100150 2019-10-11T11:51:26.754+02:00 2019-10-11T11:51:26.754+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.757+02:00 null
10 6e626fdb-326d-4984-9585-7b64976be1a2 pressure 100150.5 2019-10-11T11:51:26.894+02:00 2019-10-11T11:51:26.894+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.896+02:00 null
11 6869ae37-0200-40c2-85a5-d4412d81b62d pressure 100154 2019-10-11T11:51:27.029+02:00 2019-10-11T11:51:27.029+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:27.032+02:00 null
12 8a0770b9-f8b0-42de-90fe-3e6a6311818b pressure 100152.5 2019-10-11T11:51:28.169+02:00 2019-10-11T11:51:28.169+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.171+02:00 null
13 cf989dbb-2e73-4042-b339-b4dbc75b0a7c pressure 100151.5 2019-10-11T11:51:28.294+02:00 2019-10-11T11:51:28.294+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.296+02:00 null
14 53a2d8fb-3b15-48a2-a277-1b821adba088 pressure 100151 2019-10-11T11:51:28.426+02:00 2019-10-11T11:51:28.426+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.428+02:00 null
15 9de16913-67f3-4e0b-9976-ddadbd057bae pressure 100154 2019-10-11T11:51:29.563+02:00 2019-10-11T11:51:29.563+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:29.565+02:00 null
16 d8c255a5-c5bd-4e9e-9aec-d0e6ae795719 pressure 100154.5 2019-10-11T11:51:30.707+02:00 2019-10-11T11:51:30.707+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:30.71+02:00 null
17 31ab31ac-e991-4081-8b4e-eba0f789b806 pressure 100154 2019-10-11T11:51:31.843+02:00 2019-10-11T11:51:31.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:31.846+02:00 null
18 ed2ec0a9-9bc1-424a-9edf-85aad7a059ec pressure 100150.5 2019-10-11T11:51:32.981+02:00 2019-10-11T11:51:32.981+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:32.984+02:00 null
19 31e03c4c-49a1-4c0d-a750-16c09b75f96b pressure 100151 2019-10-11T11:51:34.125+02:00 2019-10-11T11:51:34.126+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:34.133+02:00 null

View File

@ -1,11 +1,20 @@
c18c918e-180b-40ea-8509-b37a2d19c1b8,pressure,98527.1015625,2019-09-29T19:29:56.579+02:00,2019-09-29T19:29:56.579+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null 140d6183-36c8-4903-a798-def4fcb3bd74,pressure,100150.5,2019-10-11T11:51:20.98+02:00,2019-10-11T11:51:20.98+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:20.982+02:00,null
31269000-f855-472c-b607-5ef7dbcc2d3b,pressure,98531.296875,2019-09-29T19:29:58.02+02:00,2019-09-29T19:29:58.02+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null 98102a36-a38e-4ccc-9886-c119a7971414,pressure,100151.703125,2019-10-11T11:51:22.123+02:00,2019-10-11T11:51:22.123+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:22.125+02:00,null
7df14e44-185e-43a4-ba67-c86561bf19a0,pressure,98526.8984375,2019-09-29T19:29:58.886+02:00,2019-09-29T19:29:58.886+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null 5ffe51ae-687c-47df-8936-7785de9beed7,pressure,100150.8984375,2019-10-11T11:51:23.261+02:00,2019-10-11T11:51:23.262+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:23.263+02:00,null
e63f2d08-cbbe-43c6-80f6-70e504aebce5,pressure,98530.5,2019-09-29T19:29:59.657+02:00,2019-09-29T19:29:59.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null e534cb23-c725-403b-b5c9-5455256a8662,pressure,100153.203125,2019-10-11T11:51:23.739+02:00,2019-10-11T11:51:23.739+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.594+02:00,null
1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c,pressure,98529.796875,2019-09-29T19:30:00.301+02:00,2019-09-29T19:30:00.302+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.838+02:00,null e3c2a10b-373f-43d5-b02c-b381d1ad203b,pressure,100149.296875,2019-10-11T11:51:24.721+02:00,2019-10-11T11:51:24.721+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.723+02:00,null
b002af5d-3ef0-4608-b6c6-2745be36c7f0,pressure,98530.1015625,2019-09-29T19:30:00.878+02:00,2019-09-29T19:30:00.879+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94,pressure,100150.796875,2019-10-11T11:51:24.849+02:00,2019-10-11T11:51:24.849+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:25.212+02:00,null
e0753df7-865d-41ec-a2fc-58692c0e6a12,pressure,98530.3984375,2019-09-29T19:30:01.513+02:00,2019-09-29T19:30:01.513+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 70f6de4d-3a17-4688-b635-b8965e85be43,pressure,100149.6015625,2019-10-11T11:51:26.352+02:00,2019-10-11T11:51:26.352+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.354+02:00,null
a46d74d4-dce8-497d-a08a-a609d2ed1238,pressure,98532.5,2019-09-29T19:30:02.095+02:00,2019-09-29T19:30:02.095+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 0e42478b-da36-4096-afad-d8c2a7685ccd,pressure,100149.5,2019-10-11T11:51:26.488+02:00,2019-10-11T11:51:26.488+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.49+02:00,null
2a17ada0-caad-42d3-b12e-9ef432d79e59,pressure,98532.203125,2019-09-29T19:30:02.643+02:00,2019-09-29T19:30:02.643+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 0313994c-db52-42d6-b059-2ca13afdd5d8,pressure,100151.3984375,2019-10-11T11:51:26.622+02:00,2019-10-11T11:51:26.622+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.624+02:00,null
f83d1000-9fe5-4ced-9c10-587525b2a9e7,pressure,98528.296875,2019-09-29T19:30:03.26+02:00,2019-09-29T19:30:03.26+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974,pressure,100150.203125,2019-10-11T11:51:26.754+02:00,2019-10-11T11:51:26.754+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.757+02:00,null
e2d50392-2d67-4324-add5-dd5c566ba826,pressure,98532.796875,2019-09-29T19:30:03.835+02:00,2019-09-29T19:30:03.835+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:30:03.839+02:00,null 6e626fdb-326d-4984-9585-7b64976be1a2,pressure,100150.5,2019-10-11T11:51:26.894+02:00,2019-10-11T11:51:26.894+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.896+02:00,null
6869ae37-0200-40c2-85a5-d4412d81b62d,pressure,100154.1015625,2019-10-11T11:51:27.029+02:00,2019-10-11T11:51:27.029+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:27.032+02:00,null
8a0770b9-f8b0-42de-90fe-3e6a6311818b,pressure,100152.3984375,2019-10-11T11:51:28.169+02:00,2019-10-11T11:51:28.169+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.171+02:00,null
cf989dbb-2e73-4042-b339-b4dbc75b0a7c,pressure,100151.3984375,2019-10-11T11:51:28.294+02:00,2019-10-11T11:51:28.294+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.296+02:00,null
53a2d8fb-3b15-48a2-a277-1b821adba088,pressure,100151.1015625,2019-10-11T11:51:28.426+02:00,2019-10-11T11:51:28.426+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.428+02:00,null
9de16913-67f3-4e0b-9976-ddadbd057bae,pressure,100153.8984375,2019-10-11T11:51:29.563+02:00,2019-10-11T11:51:29.563+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:29.565+02:00,null
d8c255a5-c5bd-4e9e-9aec-d0e6ae795719,pressure,100154.6015625,2019-10-11T11:51:30.707+02:00,2019-10-11T11:51:30.707+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:30.71+02:00,null
31ab31ac-e991-4081-8b4e-eba0f789b806,pressure,100153.796875,2019-10-11T11:51:31.843+02:00,2019-10-11T11:51:31.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:31.846+02:00,null
ed2ec0a9-9bc1-424a-9edf-85aad7a059ec,pressure,100150.703125,2019-10-11T11:51:32.981+02:00,2019-10-11T11:51:32.981+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:32.984+02:00,null
31e03c4c-49a1-4c0d-a750-16c09b75f96b,pressure,100151.203125,2019-10-11T11:51:34.125+02:00,2019-10-11T11:51:34.126+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:34.133+02:00,null

1 c18c918e-180b-40ea-8509-b37a2d19c1b8 140d6183-36c8-4903-a798-def4fcb3bd74 pressure 98527.1015625 100150.5 2019-09-29T19:29:56.579+02:00 2019-10-11T11:51:20.98+02:00 2019-09-29T19:29:56.579+02:00 2019-10-11T11:51:20.98+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:51:20.982+02:00 null
2 31269000-f855-472c-b607-5ef7dbcc2d3b 98102a36-a38e-4ccc-9886-c119a7971414 pressure 98531.296875 100151.703125 2019-09-29T19:29:58.02+02:00 2019-10-11T11:51:22.123+02:00 2019-09-29T19:29:58.02+02:00 2019-10-11T11:51:22.123+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:51:22.125+02:00 null
3 7df14e44-185e-43a4-ba67-c86561bf19a0 5ffe51ae-687c-47df-8936-7785de9beed7 pressure 98526.8984375 100150.8984375 2019-09-29T19:29:58.886+02:00 2019-10-11T11:51:23.261+02:00 2019-09-29T19:29:58.886+02:00 2019-10-11T11:51:23.262+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:51:23.263+02:00 null
4 e63f2d08-cbbe-43c6-80f6-70e504aebce5 e534cb23-c725-403b-b5c9-5455256a8662 pressure 98530.5 100153.203125 2019-09-29T19:29:59.657+02:00 2019-10-11T11:51:23.739+02:00 2019-09-29T19:29:59.658+02:00 2019-10-11T11:51:23.739+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:51:24.594+02:00 null
5 1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c e3c2a10b-373f-43d5-b02c-b381d1ad203b pressure 98529.796875 100149.296875 2019-09-29T19:30:00.301+02:00 2019-10-11T11:51:24.721+02:00 2019-09-29T19:30:00.302+02:00 2019-10-11T11:51:24.721+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.838+02:00 2019-10-11T11:51:24.723+02:00 null
6 b002af5d-3ef0-4608-b6c6-2745be36c7f0 e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94 pressure 98530.1015625 100150.796875 2019-09-29T19:30:00.878+02:00 2019-10-11T11:51:24.849+02:00 2019-09-29T19:30:00.879+02:00 2019-10-11T11:51:24.849+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:25.212+02:00 null
7 e0753df7-865d-41ec-a2fc-58692c0e6a12 70f6de4d-3a17-4688-b635-b8965e85be43 pressure 98530.3984375 100149.6015625 2019-09-29T19:30:01.513+02:00 2019-10-11T11:51:26.352+02:00 2019-09-29T19:30:01.513+02:00 2019-10-11T11:51:26.352+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:26.354+02:00 null
8 a46d74d4-dce8-497d-a08a-a609d2ed1238 0e42478b-da36-4096-afad-d8c2a7685ccd pressure 98532.5 100149.5 2019-09-29T19:30:02.095+02:00 2019-10-11T11:51:26.488+02:00 2019-09-29T19:30:02.095+02:00 2019-10-11T11:51:26.488+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:26.49+02:00 null
9 2a17ada0-caad-42d3-b12e-9ef432d79e59 0313994c-db52-42d6-b059-2ca13afdd5d8 pressure 98532.203125 100151.3984375 2019-09-29T19:30:02.643+02:00 2019-10-11T11:51:26.622+02:00 2019-09-29T19:30:02.643+02:00 2019-10-11T11:51:26.622+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:26.624+02:00 null
10 f83d1000-9fe5-4ced-9c10-587525b2a9e7 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974 pressure 98528.296875 100150.203125 2019-09-29T19:30:03.26+02:00 2019-10-11T11:51:26.754+02:00 2019-09-29T19:30:03.26+02:00 2019-10-11T11:51:26.754+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:26.757+02:00 null
11 e2d50392-2d67-4324-add5-dd5c566ba826 6e626fdb-326d-4984-9585-7b64976be1a2 pressure 98532.796875 100150.5 2019-09-29T19:30:03.835+02:00 2019-10-11T11:51:26.894+02:00 2019-09-29T19:30:03.835+02:00 2019-10-11T11:51:26.894+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:30:03.839+02:00 2019-10-11T11:51:26.896+02:00 null
12 6869ae37-0200-40c2-85a5-d4412d81b62d pressure 100154.1015625 2019-10-11T11:51:27.029+02:00 2019-10-11T11:51:27.029+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:27.032+02:00 null
13 8a0770b9-f8b0-42de-90fe-3e6a6311818b pressure 100152.3984375 2019-10-11T11:51:28.169+02:00 2019-10-11T11:51:28.169+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.171+02:00 null
14 cf989dbb-2e73-4042-b339-b4dbc75b0a7c pressure 100151.3984375 2019-10-11T11:51:28.294+02:00 2019-10-11T11:51:28.294+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.296+02:00 null
15 53a2d8fb-3b15-48a2-a277-1b821adba088 pressure 100151.1015625 2019-10-11T11:51:28.426+02:00 2019-10-11T11:51:28.426+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.428+02:00 null
16 9de16913-67f3-4e0b-9976-ddadbd057bae pressure 100153.8984375 2019-10-11T11:51:29.563+02:00 2019-10-11T11:51:29.563+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:29.565+02:00 null
17 d8c255a5-c5bd-4e9e-9aec-d0e6ae795719 pressure 100154.6015625 2019-10-11T11:51:30.707+02:00 2019-10-11T11:51:30.707+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:30.71+02:00 null
18 31ab31ac-e991-4081-8b4e-eba0f789b806 pressure 100153.796875 2019-10-11T11:51:31.843+02:00 2019-10-11T11:51:31.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:31.846+02:00 null
19 ed2ec0a9-9bc1-424a-9edf-85aad7a059ec pressure 100150.703125 2019-10-11T11:51:32.981+02:00 2019-10-11T11:51:32.981+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:32.984+02:00 null
20 31e03c4c-49a1-4c0d-a750-16c09b75f96b pressure 100151.203125 2019-10-11T11:51:34.125+02:00 2019-10-11T11:51:34.126+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:34.133+02:00 null

View File

@ -0,0 +1,20 @@
140d6183-36c8-4903-a798-def4fcb3bd74,pressure,100150.5,2019-10-11T11:51:20.98+02:00,2019-10-11T11:51:20.98+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:20.982+02:00,null
98102a36-a38e-4ccc-9886-c119a7971414,pressure,100151.5,2019-10-11T11:51:22.123+02:00,2019-10-11T11:51:22.123+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:22.125+02:00,null
5ffe51ae-687c-47df-8936-7785de9beed7,pressure,100151,2019-10-11T11:51:23.261+02:00,2019-10-11T11:51:23.262+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:23.263+02:00,null
e534cb23-c725-403b-b5c9-5455256a8662,pressure,100153,2019-10-11T11:51:23.739+02:00,2019-10-11T11:51:23.739+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.594+02:00,null
e3c2a10b-373f-43d5-b02c-b381d1ad203b,pressure,100149.5,2019-10-11T11:51:24.721+02:00,2019-10-11T11:51:24.721+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:24.723+02:00,null
e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94,pressure,100151,2019-10-11T11:51:24.849+02:00,2019-10-11T11:51:24.849+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:25.212+02:00,null
70f6de4d-3a17-4688-b635-b8965e85be43,pressure,100149.5,2019-10-11T11:51:26.352+02:00,2019-10-11T11:51:26.352+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.354+02:00,null
0e42478b-da36-4096-afad-d8c2a7685ccd,pressure,100149.5,2019-10-11T11:51:26.488+02:00,2019-10-11T11:51:26.488+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.49+02:00,null
0313994c-db52-42d6-b059-2ca13afdd5d8,pressure,100151.5,2019-10-11T11:51:26.622+02:00,2019-10-11T11:51:26.622+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.624+02:00,null
9cb66b4c-31d8-40dc-8c5b-9d243c2bb974,pressure,100150,2019-10-11T11:51:26.754+02:00,2019-10-11T11:51:26.754+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.757+02:00,null
6e626fdb-326d-4984-9585-7b64976be1a2,pressure,100150.5,2019-10-11T11:51:26.894+02:00,2019-10-11T11:51:26.894+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:26.896+02:00,null
6869ae37-0200-40c2-85a5-d4412d81b62d,pressure,100154,2019-10-11T11:51:27.029+02:00,2019-10-11T11:51:27.029+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:27.032+02:00,null
8a0770b9-f8b0-42de-90fe-3e6a6311818b,pressure,100152.5,2019-10-11T11:51:28.169+02:00,2019-10-11T11:51:28.169+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.171+02:00,null
cf989dbb-2e73-4042-b339-b4dbc75b0a7c,pressure,100151.5,2019-10-11T11:51:28.294+02:00,2019-10-11T11:51:28.294+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.296+02:00,null
53a2d8fb-3b15-48a2-a277-1b821adba088,pressure,100151,2019-10-11T11:51:28.426+02:00,2019-10-11T11:51:28.426+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:28.428+02:00,null
9de16913-67f3-4e0b-9976-ddadbd057bae,pressure,100154,2019-10-11T11:51:29.563+02:00,2019-10-11T11:51:29.563+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:29.565+02:00,null
d8c255a5-c5bd-4e9e-9aec-d0e6ae795719,pressure,100154.5,2019-10-11T11:51:30.707+02:00,2019-10-11T11:51:30.707+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:30.71+02:00,null
31ab31ac-e991-4081-8b4e-eba0f789b806,pressure,100154,2019-10-11T11:51:31.843+02:00,2019-10-11T11:51:31.843+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:31.846+02:00,null
ed2ec0a9-9bc1-424a-9edf-85aad7a059ec,pressure,100150.5,2019-10-11T11:51:32.981+02:00,2019-10-11T11:51:32.981+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:32.984+02:00,null
31e03c4c-49a1-4c0d-a750-16c09b75f96b,pressure,100151,2019-10-11T11:51:34.125+02:00,2019-10-11T11:51:34.126+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:34.133+02:00,null
1 140d6183-36c8-4903-a798-def4fcb3bd74 pressure 100150.5 2019-10-11T11:51:20.98+02:00 2019-10-11T11:51:20.98+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:20.982+02:00 null
2 98102a36-a38e-4ccc-9886-c119a7971414 pressure 100151.5 2019-10-11T11:51:22.123+02:00 2019-10-11T11:51:22.123+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:22.125+02:00 null
3 5ffe51ae-687c-47df-8936-7785de9beed7 pressure 100151 2019-10-11T11:51:23.261+02:00 2019-10-11T11:51:23.262+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:23.263+02:00 null
4 e534cb23-c725-403b-b5c9-5455256a8662 pressure 100153 2019-10-11T11:51:23.739+02:00 2019-10-11T11:51:23.739+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.594+02:00 null
5 e3c2a10b-373f-43d5-b02c-b381d1ad203b pressure 100149.5 2019-10-11T11:51:24.721+02:00 2019-10-11T11:51:24.721+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:24.723+02:00 null
6 e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94 pressure 100151 2019-10-11T11:51:24.849+02:00 2019-10-11T11:51:24.849+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:25.212+02:00 null
7 70f6de4d-3a17-4688-b635-b8965e85be43 pressure 100149.5 2019-10-11T11:51:26.352+02:00 2019-10-11T11:51:26.352+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.354+02:00 null
8 0e42478b-da36-4096-afad-d8c2a7685ccd pressure 100149.5 2019-10-11T11:51:26.488+02:00 2019-10-11T11:51:26.488+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.49+02:00 null
9 0313994c-db52-42d6-b059-2ca13afdd5d8 pressure 100151.5 2019-10-11T11:51:26.622+02:00 2019-10-11T11:51:26.622+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.624+02:00 null
10 9cb66b4c-31d8-40dc-8c5b-9d243c2bb974 pressure 100150 2019-10-11T11:51:26.754+02:00 2019-10-11T11:51:26.754+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.757+02:00 null
11 6e626fdb-326d-4984-9585-7b64976be1a2 pressure 100150.5 2019-10-11T11:51:26.894+02:00 2019-10-11T11:51:26.894+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:26.896+02:00 null
12 6869ae37-0200-40c2-85a5-d4412d81b62d pressure 100154 2019-10-11T11:51:27.029+02:00 2019-10-11T11:51:27.029+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:27.032+02:00 null
13 8a0770b9-f8b0-42de-90fe-3e6a6311818b pressure 100152.5 2019-10-11T11:51:28.169+02:00 2019-10-11T11:51:28.169+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.171+02:00 null
14 cf989dbb-2e73-4042-b339-b4dbc75b0a7c pressure 100151.5 2019-10-11T11:51:28.294+02:00 2019-10-11T11:51:28.294+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.296+02:00 null
15 53a2d8fb-3b15-48a2-a277-1b821adba088 pressure 100151 2019-10-11T11:51:28.426+02:00 2019-10-11T11:51:28.426+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:28.428+02:00 null
16 9de16913-67f3-4e0b-9976-ddadbd057bae pressure 100154 2019-10-11T11:51:29.563+02:00 2019-10-11T11:51:29.563+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:29.565+02:00 null
17 d8c255a5-c5bd-4e9e-9aec-d0e6ae795719 pressure 100154.5 2019-10-11T11:51:30.707+02:00 2019-10-11T11:51:30.707+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:30.71+02:00 null
18 31ab31ac-e991-4081-8b4e-eba0f789b806 pressure 100154 2019-10-11T11:51:31.843+02:00 2019-10-11T11:51:31.843+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:31.846+02:00 null
19 ed2ec0a9-9bc1-424a-9edf-85aad7a059ec pressure 100150.5 2019-10-11T11:51:32.981+02:00 2019-10-11T11:51:32.981+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:32.984+02:00 null
20 31e03c4c-49a1-4c0d-a750-16c09b75f96b pressure 100151 2019-10-11T11:51:34.125+02:00 2019-10-11T11:51:34.126+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:34.133+02:00 null

View File

@ -0,0 +1,12 @@
2029cc8c-56cf-4cd1-adf8-06e768fbad29,temperature,20.90999984741211,2019-10-11T11:50:43.317+02:00,2019-10-11T11:50:43.317+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:43.319+02:00,null
a588cc90-4dca-4a4e-be81-2d20b9f64458,temperature,20.920000076293945,2019-10-11T11:50:44.459+02:00,2019-10-11T11:50:47.745+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:44.473+02:00,2019-10-11T11:51:01.71+02:00
88f5c095-8e88-4c80-b66a-cf154919afa8,temperature,20.93000030517578,2019-10-11T11:50:49.53+02:00,2019-10-11T11:50:49.53+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:50.018+02:00,null
7c3b7eac-3b43-4461-b204-d74c2bde3a08,temperature,20.920000076293945,2019-10-11T11:50:51.187+02:00,2019-10-11T11:50:53.652+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:51.189+02:00,2019-10-11T11:51:01.71+02:00
acb55d68-d909-41ba-a445-8ef9eab0c7aa,temperature,20.950000762939453,2019-10-11T11:50:53.788+02:00,2019-10-11T11:50:53.789+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.79+02:00,null
6563ff1e-371b-46a2-aca8-cc49b418bf61,temperature,20.93000030517578,2019-10-11T11:50:54.929+02:00,2019-10-11T11:50:55.536+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.405+02:00,2019-10-11T11:51:01.71+02:00
157eda79-3283-4cda-a21d-db0aa2da8548,temperature,20.959999084472656,2019-10-11T11:50:55.674+02:00,2019-10-11T11:50:55.674+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.677+02:00,null
c7d8d6ce-59d9-4448-9934-69cebc071cf6,temperature,20.940000534057617,2019-10-11T11:50:56.817+02:00,2019-10-11T11:50:56.817+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:56.82+02:00,null
07d08037-7267-44ab-8d90-878271809a4c,temperature,20.93000030517578,2019-10-11T11:50:57.959+02:00,2019-10-11T11:50:59.1+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:57.962+02:00,2019-10-11T11:51:01.71+02:00
0b865113-d0f4-42f4-af3d-50e60edcc523,temperature,20.959999084472656,2019-10-11T11:50:59.238+02:00,2019-10-11T11:50:59.238+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.241+02:00,null
c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2,temperature,20.979999542236328,2019-10-11T11:50:59.368+02:00,2019-10-11T11:50:59.368+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.371+02:00,null
8d98e723-7a07-4ccf-b3bc-7a2653952b8b,temperature,20.920000076293945,2019-10-11T11:51:00.509+02:00,2019-10-11T11:51:01.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:00.516+02:00,2019-10-11T11:51:01.71+02:00
1 2029cc8c-56cf-4cd1-adf8-06e768fbad29 temperature 20.90999984741211 2019-10-11T11:50:43.317+02:00 2019-10-11T11:50:43.317+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:43.319+02:00 null
2 a588cc90-4dca-4a4e-be81-2d20b9f64458 temperature 20.920000076293945 2019-10-11T11:50:44.459+02:00 2019-10-11T11:50:47.745+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:44.473+02:00 2019-10-11T11:51:01.71+02:00
3 88f5c095-8e88-4c80-b66a-cf154919afa8 temperature 20.93000030517578 2019-10-11T11:50:49.53+02:00 2019-10-11T11:50:49.53+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:50.018+02:00 null
4 7c3b7eac-3b43-4461-b204-d74c2bde3a08 temperature 20.920000076293945 2019-10-11T11:50:51.187+02:00 2019-10-11T11:50:53.652+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:51.189+02:00 2019-10-11T11:51:01.71+02:00
5 acb55d68-d909-41ba-a445-8ef9eab0c7aa temperature 20.950000762939453 2019-10-11T11:50:53.788+02:00 2019-10-11T11:50:53.789+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:53.79+02:00 null
6 6563ff1e-371b-46a2-aca8-cc49b418bf61 temperature 20.93000030517578 2019-10-11T11:50:54.929+02:00 2019-10-11T11:50:55.536+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.405+02:00 2019-10-11T11:51:01.71+02:00
7 157eda79-3283-4cda-a21d-db0aa2da8548 temperature 20.959999084472656 2019-10-11T11:50:55.674+02:00 2019-10-11T11:50:55.674+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.677+02:00 null
8 c7d8d6ce-59d9-4448-9934-69cebc071cf6 temperature 20.940000534057617 2019-10-11T11:50:56.817+02:00 2019-10-11T11:50:56.817+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:56.82+02:00 null
9 07d08037-7267-44ab-8d90-878271809a4c temperature 20.93000030517578 2019-10-11T11:50:57.959+02:00 2019-10-11T11:50:59.1+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:57.962+02:00 2019-10-11T11:51:01.71+02:00
10 0b865113-d0f4-42f4-af3d-50e60edcc523 temperature 20.959999084472656 2019-10-11T11:50:59.238+02:00 2019-10-11T11:50:59.238+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.241+02:00 null
11 c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2 temperature 20.979999542236328 2019-10-11T11:50:59.368+02:00 2019-10-11T11:50:59.368+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.371+02:00 null
12 8d98e723-7a07-4ccf-b3bc-7a2653952b8b temperature 20.920000076293945 2019-10-11T11:51:00.509+02:00 2019-10-11T11:51:01.658+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:00.516+02:00 2019-10-11T11:51:01.71+02:00

View File

@ -0,0 +1 @@
2029cc8c-56cf-4cd1-adf8-06e768fbad29,temperature,21,2019-10-11T11:50:43.317+02:00,2019-10-11T11:51:01.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:43.319+02:00,2019-10-11T11:51:01.735+02:00
1 2029cc8c-56cf-4cd1-adf8-06e768fbad29 temperature 21 2019-10-11T11:50:43.317+02:00 2019-10-11T11:51:01.658+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:43.319+02:00 2019-10-11T11:51:01.735+02:00

View File

@ -1,11 +1,20 @@
63d546fe-4e27-4816-8e8c-cd16026cf079,temperature,22.040000915527344,2019-09-29T19:26:12.887+02:00,2019-09-29T19:26:12.887+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.292+02:00,null 2029cc8c-56cf-4cd1-adf8-06e768fbad29,temperature,20.90999984741211,2019-10-11T11:50:43.317+02:00,2019-10-11T11:50:43.317+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:43.319+02:00,null
ac3dddda-a669-4215-8174-42eaa3af741b,temperature,22.049999237060547,2019-09-29T19:26:13.312+02:00,2019-09-29T19:26:13.312+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.292+02:00,null a588cc90-4dca-4a4e-be81-2d20b9f64458,temperature,20.920000076293945,2019-10-11T11:50:44.459+02:00,2019-10-11T11:50:44.459+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:44.473+02:00,null
0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae,temperature,22.049999237060547,2019-09-29T19:26:13.848+02:00,2019-09-29T19:26:13.848+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.292+02:00,null 1ebb60de-6066-4731-9f55-ee1c51748b7f,temperature,20.920000076293945,2019-10-11T11:50:45.614+02:00,2019-10-11T11:50:45.614+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:45.615+02:00,null
2ebc3339-974e-4a8f-bec1-531f9045ffe6,temperature,22.049999237060547,2019-09-29T19:26:14.381+02:00,2019-09-29T19:26:14.382+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.292+02:00,null 6cbc586f-a5c9-4296-b3b2-200afae12059,temperature,20.920000076293945,2019-10-11T11:50:46.776+02:00,2019-10-11T11:50:46.776+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:47.134+02:00,null
dfa35a46-803b-4c21-9cbc-092efc8d3646,temperature,22.059999465942383,2019-09-29T19:26:14.923+02:00,2019-09-29T19:26:14.923+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null 14e03e32-f214-4f61-97b0-8e021c47bead,temperature,20.920000076293945,2019-10-11T11:50:47.745+02:00,2019-10-11T11:50:47.745+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:47.747+02:00,null
ce284f94-6032-467a-804d-34f7dc47ffcb,temperature,22.049999237060547,2019-09-29T19:26:15.472+02:00,2019-09-29T19:26:15.472+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null 88f5c095-8e88-4c80-b66a-cf154919afa8,temperature,20.93000030517578,2019-10-11T11:50:49.53+02:00,2019-10-11T11:50:49.53+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:50.018+02:00,null
9926b8e7-2092-48c7-9906-856af2fa7251,temperature,22.049999237060547,2019-09-29T19:26:16.001+02:00,2019-09-29T19:26:16.001+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null 7c3b7eac-3b43-4461-b204-d74c2bde3a08,temperature,20.920000076293945,2019-10-11T11:50:51.187+02:00,2019-10-11T11:50:51.187+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:51.189+02:00,null
9170f2e0-c6aa-4c75-95dc-d1f129df541f,temperature,22.049999237060547,2019-09-29T19:26:16.591+02:00,2019-09-29T19:26:16.591+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null 3caf0b08-38d5-4536-baa5-86d4d75e359d,temperature,20.920000076293945,2019-10-11T11:50:52.508+02:00,2019-10-11T11:50:52.508+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:52.51+02:00,null
ebce8428-d414-4ed2-98c1-2f3b8b45dd0b,temperature,22.049999237060547,2019-09-29T19:26:17.124+02:00,2019-09-29T19:26:17.124+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null 4b8595bf-3624-4963-b796-efc648515cd9,temperature,20.920000076293945,2019-10-11T11:50:53.652+02:00,2019-10-11T11:50:53.652+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.654+02:00,null
58e55045-33c6-4122-a2d9-b5bc12059b77,temperature,22.059999465942383,2019-09-29T19:26:17.679+02:00,2019-09-29T19:26:17.679+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.293+02:00,null acb55d68-d909-41ba-a445-8ef9eab0c7aa,temperature,20.950000762939453,2019-10-11T11:50:53.788+02:00,2019-10-11T11:50:53.789+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.79+02:00,null
1df7d65b-149c-46f5-a377-5d9ad399f471,temperature,22.049999237060547,2019-09-29T19:26:18.291+02:00,2019-09-29T19:26:18.291+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-09-29T19:26:18.294+02:00,null 6563ff1e-371b-46a2-aca8-cc49b418bf61,temperature,20.93000030517578,2019-10-11T11:50:54.929+02:00,2019-10-11T11:50:54.93+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.405+02:00,null
a64f57c4-b95c-45b1-b78a-a6be263abb85,temperature,20.93000030517578,2019-10-11T11:50:55.536+02:00,2019-10-11T11:50:55.536+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.538+02:00,null
157eda79-3283-4cda-a21d-db0aa2da8548,temperature,20.959999084472656,2019-10-11T11:50:55.674+02:00,2019-10-11T11:50:55.674+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.677+02:00,null
c7d8d6ce-59d9-4448-9934-69cebc071cf6,temperature,20.940000534057617,2019-10-11T11:50:56.817+02:00,2019-10-11T11:50:56.817+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:56.82+02:00,null
07d08037-7267-44ab-8d90-878271809a4c,temperature,20.93000030517578,2019-10-11T11:50:57.959+02:00,2019-10-11T11:50:57.96+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:57.962+02:00,null
bf2e981f-8bad-466e-9a12-c1a5d9b64399,temperature,20.93000030517578,2019-10-11T11:50:59.1+02:00,2019-10-11T11:50:59.1+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.103+02:00,null
0b865113-d0f4-42f4-af3d-50e60edcc523,temperature,20.959999084472656,2019-10-11T11:50:59.238+02:00,2019-10-11T11:50:59.238+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.241+02:00,null
c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2,temperature,20.979999542236328,2019-10-11T11:50:59.368+02:00,2019-10-11T11:50:59.368+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.371+02:00,null
8d98e723-7a07-4ccf-b3bc-7a2653952b8b,temperature,20.920000076293945,2019-10-11T11:51:00.509+02:00,2019-10-11T11:51:00.51+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:00.516+02:00,null
f61b7bfb-14eb-4b43-a7b6-47b61fa46dda,temperature,20.920000076293945,2019-10-11T11:51:01.658+02:00,2019-10-11T11:51:01.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.661+02:00,null

1 63d546fe-4e27-4816-8e8c-cd16026cf079 2029cc8c-56cf-4cd1-adf8-06e768fbad29 temperature 22.040000915527344 20.90999984741211 2019-09-29T19:26:12.887+02:00 2019-10-11T11:50:43.317+02:00 2019-09-29T19:26:12.887+02:00 2019-10-11T11:50:43.317+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.292+02:00 2019-10-11T11:50:43.319+02:00 null
2 ac3dddda-a669-4215-8174-42eaa3af741b a588cc90-4dca-4a4e-be81-2d20b9f64458 temperature 22.049999237060547 20.920000076293945 2019-09-29T19:26:13.312+02:00 2019-10-11T11:50:44.459+02:00 2019-09-29T19:26:13.312+02:00 2019-10-11T11:50:44.459+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.292+02:00 2019-10-11T11:50:44.473+02:00 null
3 0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae 1ebb60de-6066-4731-9f55-ee1c51748b7f temperature 22.049999237060547 20.920000076293945 2019-09-29T19:26:13.848+02:00 2019-10-11T11:50:45.614+02:00 2019-09-29T19:26:13.848+02:00 2019-10-11T11:50:45.614+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.292+02:00 2019-10-11T11:50:45.615+02:00 null
4 2ebc3339-974e-4a8f-bec1-531f9045ffe6 6cbc586f-a5c9-4296-b3b2-200afae12059 temperature 22.049999237060547 20.920000076293945 2019-09-29T19:26:14.381+02:00 2019-10-11T11:50:46.776+02:00 2019-09-29T19:26:14.382+02:00 2019-10-11T11:50:46.776+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.292+02:00 2019-10-11T11:50:47.134+02:00 null
5 dfa35a46-803b-4c21-9cbc-092efc8d3646 14e03e32-f214-4f61-97b0-8e021c47bead temperature 22.059999465942383 20.920000076293945 2019-09-29T19:26:14.923+02:00 2019-10-11T11:50:47.745+02:00 2019-09-29T19:26:14.923+02:00 2019-10-11T11:50:47.745+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:50:47.747+02:00 null
6 ce284f94-6032-467a-804d-34f7dc47ffcb 88f5c095-8e88-4c80-b66a-cf154919afa8 temperature 22.049999237060547 20.93000030517578 2019-09-29T19:26:15.472+02:00 2019-10-11T11:50:49.53+02:00 2019-09-29T19:26:15.472+02:00 2019-10-11T11:50:49.53+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:50:50.018+02:00 null
7 9926b8e7-2092-48c7-9906-856af2fa7251 7c3b7eac-3b43-4461-b204-d74c2bde3a08 temperature 22.049999237060547 20.920000076293945 2019-09-29T19:26:16.001+02:00 2019-10-11T11:50:51.187+02:00 2019-09-29T19:26:16.001+02:00 2019-10-11T11:50:51.187+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:50:51.189+02:00 null
8 9170f2e0-c6aa-4c75-95dc-d1f129df541f 3caf0b08-38d5-4536-baa5-86d4d75e359d temperature 22.049999237060547 20.920000076293945 2019-09-29T19:26:16.591+02:00 2019-10-11T11:50:52.508+02:00 2019-09-29T19:26:16.591+02:00 2019-10-11T11:50:52.508+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:50:52.51+02:00 null
9 ebce8428-d414-4ed2-98c1-2f3b8b45dd0b 4b8595bf-3624-4963-b796-efc648515cd9 temperature 22.049999237060547 20.920000076293945 2019-09-29T19:26:17.124+02:00 2019-10-11T11:50:53.652+02:00 2019-09-29T19:26:17.124+02:00 2019-10-11T11:50:53.652+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:50:53.654+02:00 null
10 58e55045-33c6-4122-a2d9-b5bc12059b77 acb55d68-d909-41ba-a445-8ef9eab0c7aa temperature 22.059999465942383 20.950000762939453 2019-09-29T19:26:17.679+02:00 2019-10-11T11:50:53.788+02:00 2019-09-29T19:26:17.679+02:00 2019-10-11T11:50:53.789+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.293+02:00 2019-10-11T11:50:53.79+02:00 null
11 1df7d65b-149c-46f5-a377-5d9ad399f471 6563ff1e-371b-46a2-aca8-cc49b418bf61 temperature 22.049999237060547 20.93000030517578 2019-09-29T19:26:18.291+02:00 2019-10-11T11:50:54.929+02:00 2019-09-29T19:26:18.291+02:00 2019-10-11T11:50:54.93+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-09-29T19:26:18.294+02:00 2019-10-11T11:50:55.405+02:00 null
12 a64f57c4-b95c-45b1-b78a-a6be263abb85 temperature 20.93000030517578 2019-10-11T11:50:55.536+02:00 2019-10-11T11:50:55.536+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.538+02:00 null
13 157eda79-3283-4cda-a21d-db0aa2da8548 temperature 20.959999084472656 2019-10-11T11:50:55.674+02:00 2019-10-11T11:50:55.674+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.677+02:00 null
14 c7d8d6ce-59d9-4448-9934-69cebc071cf6 temperature 20.940000534057617 2019-10-11T11:50:56.817+02:00 2019-10-11T11:50:56.817+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:56.82+02:00 null
15 07d08037-7267-44ab-8d90-878271809a4c temperature 20.93000030517578 2019-10-11T11:50:57.959+02:00 2019-10-11T11:50:57.96+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:57.962+02:00 null
16 bf2e981f-8bad-466e-9a12-c1a5d9b64399 temperature 20.93000030517578 2019-10-11T11:50:59.1+02:00 2019-10-11T11:50:59.1+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.103+02:00 null
17 0b865113-d0f4-42f4-af3d-50e60edcc523 temperature 20.959999084472656 2019-10-11T11:50:59.238+02:00 2019-10-11T11:50:59.238+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.241+02:00 null
18 c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2 temperature 20.979999542236328 2019-10-11T11:50:59.368+02:00 2019-10-11T11:50:59.368+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.371+02:00 null
19 8d98e723-7a07-4ccf-b3bc-7a2653952b8b temperature 20.920000076293945 2019-10-11T11:51:00.509+02:00 2019-10-11T11:51:00.51+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:00.516+02:00 null
20 f61b7bfb-14eb-4b43-a7b6-47b61fa46dda temperature 20.920000076293945 2019-10-11T11:51:01.658+02:00 2019-10-11T11:51:01.658+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.661+02:00 null

View File

@ -0,0 +1,20 @@
2029cc8c-56cf-4cd1-adf8-06e768fbad29,temperature,21,2019-10-11T11:50:43.317+02:00,2019-10-11T11:50:43.317+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:43.319+02:00,null
a588cc90-4dca-4a4e-be81-2d20b9f64458,temperature,21,2019-10-11T11:50:44.459+02:00,2019-10-11T11:50:44.459+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:44.473+02:00,null
1ebb60de-6066-4731-9f55-ee1c51748b7f,temperature,21,2019-10-11T11:50:45.614+02:00,2019-10-11T11:50:45.614+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:45.615+02:00,null
6cbc586f-a5c9-4296-b3b2-200afae12059,temperature,21,2019-10-11T11:50:46.776+02:00,2019-10-11T11:50:46.776+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:47.134+02:00,null
14e03e32-f214-4f61-97b0-8e021c47bead,temperature,21,2019-10-11T11:50:47.745+02:00,2019-10-11T11:50:47.745+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:47.747+02:00,null
88f5c095-8e88-4c80-b66a-cf154919afa8,temperature,21,2019-10-11T11:50:49.53+02:00,2019-10-11T11:50:49.53+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:50.018+02:00,null
7c3b7eac-3b43-4461-b204-d74c2bde3a08,temperature,21,2019-10-11T11:50:51.187+02:00,2019-10-11T11:50:51.187+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:51.189+02:00,null
3caf0b08-38d5-4536-baa5-86d4d75e359d,temperature,21,2019-10-11T11:50:52.508+02:00,2019-10-11T11:50:52.508+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:52.51+02:00,null
4b8595bf-3624-4963-b796-efc648515cd9,temperature,21,2019-10-11T11:50:53.652+02:00,2019-10-11T11:50:53.652+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.654+02:00,null
acb55d68-d909-41ba-a445-8ef9eab0c7aa,temperature,21,2019-10-11T11:50:53.788+02:00,2019-10-11T11:50:53.789+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:53.79+02:00,null
6563ff1e-371b-46a2-aca8-cc49b418bf61,temperature,21,2019-10-11T11:50:54.929+02:00,2019-10-11T11:50:54.93+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.405+02:00,null
a64f57c4-b95c-45b1-b78a-a6be263abb85,temperature,21,2019-10-11T11:50:55.536+02:00,2019-10-11T11:50:55.536+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.538+02:00,null
157eda79-3283-4cda-a21d-db0aa2da8548,temperature,21,2019-10-11T11:50:55.674+02:00,2019-10-11T11:50:55.674+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:55.677+02:00,null
c7d8d6ce-59d9-4448-9934-69cebc071cf6,temperature,21,2019-10-11T11:50:56.817+02:00,2019-10-11T11:50:56.817+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:56.82+02:00,null
07d08037-7267-44ab-8d90-878271809a4c,temperature,21,2019-10-11T11:50:57.959+02:00,2019-10-11T11:50:57.96+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:57.962+02:00,null
bf2e981f-8bad-466e-9a12-c1a5d9b64399,temperature,21,2019-10-11T11:50:59.1+02:00,2019-10-11T11:50:59.1+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.103+02:00,null
0b865113-d0f4-42f4-af3d-50e60edcc523,temperature,21,2019-10-11T11:50:59.238+02:00,2019-10-11T11:50:59.238+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.241+02:00,null
c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2,temperature,21,2019-10-11T11:50:59.368+02:00,2019-10-11T11:50:59.368+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:50:59.371+02:00,null
8d98e723-7a07-4ccf-b3bc-7a2653952b8b,temperature,21,2019-10-11T11:51:00.509+02:00,2019-10-11T11:51:00.51+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:00.516+02:00,null
f61b7bfb-14eb-4b43-a7b6-47b61fa46dda,temperature,21,2019-10-11T11:51:01.658+02:00,2019-10-11T11:51:01.658+02:00,d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6,2019-10-11T11:51:01.661+02:00,null
1 2029cc8c-56cf-4cd1-adf8-06e768fbad29 temperature 21 2019-10-11T11:50:43.317+02:00 2019-10-11T11:50:43.317+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:43.319+02:00 null
2 a588cc90-4dca-4a4e-be81-2d20b9f64458 temperature 21 2019-10-11T11:50:44.459+02:00 2019-10-11T11:50:44.459+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:44.473+02:00 null
3 1ebb60de-6066-4731-9f55-ee1c51748b7f temperature 21 2019-10-11T11:50:45.614+02:00 2019-10-11T11:50:45.614+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:45.615+02:00 null
4 6cbc586f-a5c9-4296-b3b2-200afae12059 temperature 21 2019-10-11T11:50:46.776+02:00 2019-10-11T11:50:46.776+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:47.134+02:00 null
5 14e03e32-f214-4f61-97b0-8e021c47bead temperature 21 2019-10-11T11:50:47.745+02:00 2019-10-11T11:50:47.745+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:47.747+02:00 null
6 88f5c095-8e88-4c80-b66a-cf154919afa8 temperature 21 2019-10-11T11:50:49.53+02:00 2019-10-11T11:50:49.53+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:50.018+02:00 null
7 7c3b7eac-3b43-4461-b204-d74c2bde3a08 temperature 21 2019-10-11T11:50:51.187+02:00 2019-10-11T11:50:51.187+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:51.189+02:00 null
8 3caf0b08-38d5-4536-baa5-86d4d75e359d temperature 21 2019-10-11T11:50:52.508+02:00 2019-10-11T11:50:52.508+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:52.51+02:00 null
9 4b8595bf-3624-4963-b796-efc648515cd9 temperature 21 2019-10-11T11:50:53.652+02:00 2019-10-11T11:50:53.652+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:53.654+02:00 null
10 acb55d68-d909-41ba-a445-8ef9eab0c7aa temperature 21 2019-10-11T11:50:53.788+02:00 2019-10-11T11:50:53.789+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:53.79+02:00 null
11 6563ff1e-371b-46a2-aca8-cc49b418bf61 temperature 21 2019-10-11T11:50:54.929+02:00 2019-10-11T11:50:54.93+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.405+02:00 null
12 a64f57c4-b95c-45b1-b78a-a6be263abb85 temperature 21 2019-10-11T11:50:55.536+02:00 2019-10-11T11:50:55.536+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.538+02:00 null
13 157eda79-3283-4cda-a21d-db0aa2da8548 temperature 21 2019-10-11T11:50:55.674+02:00 2019-10-11T11:50:55.674+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:55.677+02:00 null
14 c7d8d6ce-59d9-4448-9934-69cebc071cf6 temperature 21 2019-10-11T11:50:56.817+02:00 2019-10-11T11:50:56.817+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:56.82+02:00 null
15 07d08037-7267-44ab-8d90-878271809a4c temperature 21 2019-10-11T11:50:57.959+02:00 2019-10-11T11:50:57.96+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:57.962+02:00 null
16 bf2e981f-8bad-466e-9a12-c1a5d9b64399 temperature 21 2019-10-11T11:50:59.1+02:00 2019-10-11T11:50:59.1+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.103+02:00 null
17 0b865113-d0f4-42f4-af3d-50e60edcc523 temperature 21 2019-10-11T11:50:59.238+02:00 2019-10-11T11:50:59.238+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.241+02:00 null
18 c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2 temperature 21 2019-10-11T11:50:59.368+02:00 2019-10-11T11:50:59.368+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:50:59.371+02:00 null
19 8d98e723-7a07-4ccf-b3bc-7a2653952b8b temperature 21 2019-10-11T11:51:00.509+02:00 2019-10-11T11:51:00.51+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:00.516+02:00 null
20 f61b7bfb-14eb-4b43-a7b6-47b61fa46dda temperature 21 2019-10-11T11:51:01.658+02:00 2019-10-11T11:51:01.658+02:00 d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6 2019-10-11T11:51:01.661+02:00 null

View File

@ -3,9 +3,13 @@ package goldenfiles
import ( import (
"bytes" "bytes"
"encoding/json" "encoding/json"
"fmt"
"os"
"path/filepath"
"strings" "strings"
"testing" "testing"
"github.com/go-flucky/flucky/pkg/storage/logfile"
"github.com/go-flucky/flucky/pkg/types" "github.com/go-flucky/flucky/pkg/types"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
) )
@ -45,15 +49,22 @@ func GetGoldenDevices(goldenFilePath string) ([]*types.Device, error) {
} }
func GetGoldenMeasuredValues(goldenFilePath string) ([]*types.MeasuredValue, error) { func GetGoldenMeasuredValues(goldenFilePath string) ([]*types.MeasuredValue, error) {
f := string(MustAsset(goldenFilePath)) tempDir := os.TempDir()
r := strings.NewReader(f) if err := os.MkdirAll(tempDir, 0755); err != nil {
measuredValues := make([]*types.MeasuredValue, 0) return nil, fmt.Errorf("Can not create temp directory %v: %v", tempDir, err)
jsonDecoder := json.NewDecoder(r)
err := jsonDecoder.Decode(&measuredValues)
if err != nil {
return nil, err
} }
return measuredValues, nil tempLogfile := filepath.Join(tempDir, fmt.Sprintf("logfile %v", filepath.Ext(goldenFilePath)))
f, err := os.Create(tempLogfile)
if err != nil {
return nil, fmt.Errorf("Can not create temporary logfile %v: %v", tempLogfile, err)
}
defer os.Remove(tempLogfile)
_, err = f.Write(MustAsset(goldenFilePath))
if err != nil {
return nil, fmt.Errorf("Can not write into file %v: %v", tempLogfile, err)
}
logfile := logfile.New(tempLogfile)
return logfile.Read()
} }
func GetGoldenSensors(goldenFilePath string) ([]*types.Sensor, error) { func GetGoldenSensors(goldenFilePath string) ([]*types.Sensor, error) {

View File

@ -0,0 +1,182 @@
[
{
"id": "0fc9c4bf-7e86-4cee-b99c-7642984b5fcd",
"value": "50.8740234375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:01.969+02:00",
"till_date": "2019-10-11T11:51:03.109+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.971+02:00",
"update_date": "2019-10-11T11:51:20.78+02:00"
},
{
"id": "7b4f0fc3-ecec-4226-b621-49dd01cf9eb7",
"value": "50.884765625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:04.251+02:00",
"till_date": "2019-10-11T11:51:04.252+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:04.254+02:00",
"update_date": null
},
{
"id": "72ccf0a7-e680-460c-a3b8-7d14f46b5b0c",
"value": "50.861328125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:05.402+02:00",
"till_date": "2019-10-11T11:51:05.403+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:05.405+02:00",
"update_date": null
},
{
"id": "6f5277d9-abe3-4e87-b0f1-e4320756bbac",
"value": "50.8505859375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:06.551+02:00",
"till_date": "2019-10-11T11:51:06.552+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:06.565+02:00",
"update_date": null
},
{
"id": "026370e8-2011-4bf0-8da9-ec4a9fe1ee19",
"value": "50.7734375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:07.7+02:00",
"till_date": "2019-10-11T11:51:07.7+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:07.702+02:00",
"update_date": null
},
{
"id": "e96eff46-8322-424d-9a79-51c746124354",
"value": "50.728515625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:08.843+02:00",
"till_date": "2019-10-11T11:51:08.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:08.846+02:00",
"update_date": null
},
{
"id": "6beb6aee-6888-4f4a-82ff-5bf700a22b0a",
"value": "50.67578125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:09.986+02:00",
"till_date": "2019-10-11T11:51:09.986+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:09.989+02:00",
"update_date": null
},
{
"id": "62a8f169-344d-4f9c-828a-7b4ea4261fad",
"value": "50.6650390625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:11.129+02:00",
"till_date": "2019-10-11T11:51:11.13+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:11.133+02:00",
"update_date": null
},
{
"id": "b1d64d40-59d7-4093-ba1d-208d869c9aae",
"value": "50.6884765625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:11.264+02:00",
"till_date": "2019-10-11T11:51:11.265+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:11.267+02:00",
"update_date": null
},
{
"id": "f98b69ee-bef9-4609-8bfa-82f11d7f51b6",
"value": "50.76171875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:12.401+02:00",
"till_date": "2019-10-11T11:51:12.402+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:12.41+02:00",
"update_date": null
},
{
"id": "eab34e23-2b43-40c2-9d6e-90e72fa13db5",
"value": "50.7373046875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:13.551+02:00",
"till_date": "2019-10-11T11:51:13.551+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:13.554+02:00",
"update_date": null
},
{
"id": "4659b946-8a40-4ba4-9888-6997bd1795f2",
"value": "50.73828125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:14.695+02:00",
"till_date": "2019-10-11T11:51:14.695+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:14.698+02:00",
"update_date": null
},
{
"id": "a6552aff-724c-4339-810a-36d911ddaa58",
"value": "50.6845703125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.839+02:00",
"till_date": "2019-10-11T11:51:15.839+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.842+02:00",
"update_date": null
},
{
"id": "c311cacd-e346-4b68-902b-400be0f8e02e",
"value": "50.6767578125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.976+02:00",
"till_date": "2019-10-11T11:51:15.977+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.98+02:00",
"update_date": null
},
{
"id": "2d4db614-17f8-4ddd-ba08-e2a5f77d74ea",
"value": "50.68359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.118+02:00",
"till_date": "2019-10-11T11:51:17.118+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.121+02:00",
"update_date": null
},
{
"id": "936d61e4-494e-4959-a39a-c1dbc4a7d162",
"value": "50.685546875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.243+02:00",
"till_date": "2019-10-11T11:51:17.244+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.247+02:00",
"update_date": null
},
{
"id": "b913c9ca-4b5e-4c01-9aea-ee31d0d97977",
"value": "50.6943359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:18.381+02:00",
"till_date": "2019-10-11T11:51:19.529+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:18.385+02:00",
"update_date": "2019-10-11T11:51:20.78+02:00"
},
{
"id": "d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312",
"value": "50.7080078125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.664+02:00",
"till_date": "2019-10-11T11:51:19.664+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.667+02:00",
"update_date": null
}
]

View File

@ -0,0 +1,42 @@
[
{
"id": "0fc9c4bf-7e86-4cee-b99c-7642984b5fcd",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:01.969+02:00",
"till_date": "2019-10-11T11:51:07.7+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.971+02:00",
"update_date": "2019-10-11T11:51:20.807+02:00"
},
{
"id": "e96eff46-8322-424d-9a79-51c746124354",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:08.843+02:00",
"till_date": "2019-10-11T11:51:11.265+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:08.846+02:00",
"update_date": "2019-10-11T11:51:20.807+02:00"
},
{
"id": "f98b69ee-bef9-4609-8bfa-82f11d7f51b6",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:12.401+02:00",
"till_date": "2019-10-11T11:51:12.402+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:12.41+02:00",
"update_date": null
},
{
"id": "eab34e23-2b43-40c2-9d6e-90e72fa13db5",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:13.551+02:00",
"till_date": "2019-10-11T11:51:19.664+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:13.554+02:00",
"update_date": "2019-10-11T11:51:20.807+02:00"
}
]

View File

@ -1,112 +1,202 @@
[ [
{ {
"id": "7d3286c3-3f32-40e7-9656-f587de5d5341", "id": "0fc9c4bf-7e86-4cee-b99c-7642984b5fcd",
"value": "58.55859375", "value": "50.8740234375",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:33.862+02:00", "from_date": "2019-10-11T11:51:01.969+02:00",
"till_date": "2019-09-29T19:32:33.862+02:00", "till_date": "2019-10-11T11:51:01.969+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.845+02:00", "creation_date": "2019-10-11T11:51:01.971+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9890f244-9854-4a78-826e-124dc7b179af", "id": "45e8b20c-1ab0-4cf1-9ef1-aa82537557f6",
"value": "58.55859375", "value": "50.8740234375",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:35.521+02:00", "from_date": "2019-10-11T11:51:03.109+02:00",
"till_date": "2019-09-29T19:32:35.521+02:00", "till_date": "2019-10-11T11:51:03.109+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.845+02:00", "creation_date": "2019-10-11T11:51:03.111+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "40124dc7-a6af-4864-8566-7c2925b4471b", "id": "7b4f0fc3-ecec-4226-b621-49dd01cf9eb7",
"value": "58.525390625", "value": "50.884765625",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:36.186+02:00", "from_date": "2019-10-11T11:51:04.251+02:00",
"till_date": "2019-09-29T19:32:36.186+02:00", "till_date": "2019-10-11T11:51:04.252+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.845+02:00", "creation_date": "2019-10-11T11:51:04.254+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "92bfde08-0f2a-4b6e-b227-44f341f35446", "id": "72ccf0a7-e680-460c-a3b8-7d14f46b5b0c",
"value": "58.5068359375", "value": "50.861328125",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:36.881+02:00", "from_date": "2019-10-11T11:51:05.402+02:00",
"till_date": "2019-09-29T19:32:36.882+02:00", "till_date": "2019-10-11T11:51:05.403+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:05.405+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "c22e278e-f6fb-4755-8bf3-7a7313816abf", "id": "6f5277d9-abe3-4e87-b0f1-e4320756bbac",
"value": "58.470703125", "value": "50.8505859375",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:37.485+02:00", "from_date": "2019-10-11T11:51:06.551+02:00",
"till_date": "2019-09-29T19:32:37.485+02:00", "till_date": "2019-10-11T11:51:06.552+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:06.565+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "c0468792-72c2-45f6-a9f4-c798f9307bc2", "id": "026370e8-2011-4bf0-8da9-ec4a9fe1ee19",
"value": "58.4384765625", "value": "50.7734375",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:38.073+02:00", "from_date": "2019-10-11T11:51:07.7+02:00",
"till_date": "2019-09-29T19:32:38.073+02:00", "till_date": "2019-10-11T11:51:07.7+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:07.702+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9afab5be-7502-47fc-a5b2-cf8bd1a62054", "id": "e96eff46-8322-424d-9a79-51c746124354",
"value": "58.4384765625", "value": "50.728515625",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:38.675+02:00", "from_date": "2019-10-11T11:51:08.843+02:00",
"till_date": "2019-09-29T19:32:38.676+02:00", "till_date": "2019-10-11T11:51:08.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:08.846+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "3b8560f9-9536-47e3-839e-8351ffecbfcf", "id": "6beb6aee-6888-4f4a-82ff-5bf700a22b0a",
"value": "58.4384765625", "value": "50.67578125",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:39.258+02:00", "from_date": "2019-10-11T11:51:09.986+02:00",
"till_date": "2019-09-29T19:32:39.259+02:00", "till_date": "2019-10-11T11:51:09.986+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:09.989+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "4afcb00e-4035-443d-8495-535932d45623", "id": "62a8f169-344d-4f9c-828a-7b4ea4261fad",
"value": "58.4375", "value": "50.6650390625",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:39.839+02:00", "from_date": "2019-10-11T11:51:11.129+02:00",
"till_date": "2019-09-29T19:32:39.839+02:00", "till_date": "2019-10-11T11:51:11.13+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:11.133+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "132e91ec-9b06-4792-a8c0-b82ccdcbce16", "id": "b1d64d40-59d7-4093-ba1d-208d869c9aae",
"value": "58.447265625", "value": "50.6884765625",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:40.503+02:00", "from_date": "2019-10-11T11:51:11.264+02:00",
"till_date": "2019-09-29T19:32:40.504+02:00", "till_date": "2019-10-11T11:51:11.265+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:11.267+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "5aba6643-3fe3-422f-aa40-2d98591d9a82", "id": "f98b69ee-bef9-4609-8bfa-82f11d7f51b6",
"value": "58.46875", "value": "50.76171875",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:41.187+02:00", "from_date": "2019-10-11T11:51:12.401+02:00",
"till_date": "2019-09-29T19:32:41.188+02:00", "till_date": "2019-10-11T11:51:12.402+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:12.41+02:00",
"update_date": null
},
{
"id": "eab34e23-2b43-40c2-9d6e-90e72fa13db5",
"value": "50.7373046875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:13.551+02:00",
"till_date": "2019-10-11T11:51:13.551+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:13.554+02:00",
"update_date": null
},
{
"id": "4659b946-8a40-4ba4-9888-6997bd1795f2",
"value": "50.73828125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:14.695+02:00",
"till_date": "2019-10-11T11:51:14.695+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:14.698+02:00",
"update_date": null
},
{
"id": "a6552aff-724c-4339-810a-36d911ddaa58",
"value": "50.6845703125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.839+02:00",
"till_date": "2019-10-11T11:51:15.839+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.842+02:00",
"update_date": null
},
{
"id": "c311cacd-e346-4b68-902b-400be0f8e02e",
"value": "50.6767578125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.976+02:00",
"till_date": "2019-10-11T11:51:15.977+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.98+02:00",
"update_date": null
},
{
"id": "2d4db614-17f8-4ddd-ba08-e2a5f77d74ea",
"value": "50.68359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.118+02:00",
"till_date": "2019-10-11T11:51:17.118+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.121+02:00",
"update_date": null
},
{
"id": "936d61e4-494e-4959-a39a-c1dbc4a7d162",
"value": "50.685546875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.243+02:00",
"till_date": "2019-10-11T11:51:17.244+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.247+02:00",
"update_date": null
},
{
"id": "b913c9ca-4b5e-4c01-9aea-ee31d0d97977",
"value": "50.6943359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:18.381+02:00",
"till_date": "2019-10-11T11:51:18.382+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:18.385+02:00",
"update_date": null
},
{
"id": "1171d0dd-2173-4da2-b2c6-7f7daaad7cd1",
"value": "50.6943359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.529+02:00",
"till_date": "2019-10-11T11:51:19.529+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.532+02:00",
"update_date": null
},
{
"id": "d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312",
"value": "50.7080078125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.664+02:00",
"till_date": "2019-10-11T11:51:19.664+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.667+02:00",
"update_date": null "update_date": null
} }
] ]

View File

@ -1,112 +1,202 @@
[ [
{ {
"id": "7d3286c3-3f32-40e7-9656-f587de5d5341", "id": "0fc9c4bf-7e86-4cee-b99c-7642984b5fcd",
"value": "58.558", "value": "51",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:33.862+02:00", "from_date": "2019-10-11T11:51:01.969+02:00",
"till_date": "2019-09-29T19:32:33.862+02:00", "till_date": "2019-10-11T11:51:01.969+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.845+02:00", "creation_date": "2019-10-11T11:51:01.971+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9890f244-9854-4a78-826e-124dc7b179af", "id": "45e8b20c-1ab0-4cf1-9ef1-aa82537557f6",
"value": "58.558", "value": "51",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:35.521+02:00", "from_date": "2019-10-11T11:51:03.109+02:00",
"till_date": "2019-09-29T19:32:35.521+02:00", "till_date": "2019-10-11T11:51:03.109+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.845+02:00", "creation_date": "2019-10-11T11:51:03.111+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "40124dc7-a6af-4864-8566-7c2925b4471b", "id": "7b4f0fc3-ecec-4226-b621-49dd01cf9eb7",
"value": "58.525", "value": "51",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:36.186+02:00", "from_date": "2019-10-11T11:51:04.251+02:00",
"till_date": "2019-09-29T19:32:36.186+02:00", "till_date": "2019-10-11T11:51:04.252+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.845+02:00", "creation_date": "2019-10-11T11:51:04.254+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "92bfde08-0f2a-4b6e-b227-44f341f35446", "id": "72ccf0a7-e680-460c-a3b8-7d14f46b5b0c",
"value": "58.506", "value": "51",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:36.881+02:00", "from_date": "2019-10-11T11:51:05.402+02:00",
"till_date": "2019-09-29T19:32:36.882+02:00", "till_date": "2019-10-11T11:51:05.403+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:05.405+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "c22e278e-f6fb-4755-8bf3-7a7313816abf", "id": "6f5277d9-abe3-4e87-b0f1-e4320756bbac",
"value": "58.470", "value": "51",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:37.485+02:00", "from_date": "2019-10-11T11:51:06.551+02:00",
"till_date": "2019-09-29T19:32:37.485+02:00", "till_date": "2019-10-11T11:51:06.552+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:06.565+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "c0468792-72c2-45f6-a9f4-c798f9307bc2", "id": "026370e8-2011-4bf0-8da9-ec4a9fe1ee19",
"value": "58.438", "value": "51",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:38.073+02:00", "from_date": "2019-10-11T11:51:07.7+02:00",
"till_date": "2019-09-29T19:32:38.073+02:00", "till_date": "2019-10-11T11:51:07.7+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:07.702+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9afab5be-7502-47fc-a5b2-cf8bd1a62054", "id": "e96eff46-8322-424d-9a79-51c746124354",
"value": "58.438", "value": "50.5",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:38.675+02:00", "from_date": "2019-10-11T11:51:08.843+02:00",
"till_date": "2019-09-29T19:32:38.676+02:00", "till_date": "2019-10-11T11:51:08.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:08.846+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "3b8560f9-9536-47e3-839e-8351ffecbfcf", "id": "6beb6aee-6888-4f4a-82ff-5bf700a22b0a",
"value": "58.438", "value": "50.5",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:39.258+02:00", "from_date": "2019-10-11T11:51:09.986+02:00",
"till_date": "2019-09-29T19:32:39.259+02:00", "till_date": "2019-10-11T11:51:09.986+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:09.989+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "4afcb00e-4035-443d-8495-535932d45623", "id": "62a8f169-344d-4f9c-828a-7b4ea4261fad",
"value": "58.437", "value": "50.5",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:39.839+02:00", "from_date": "2019-10-11T11:51:11.129+02:00",
"till_date": "2019-09-29T19:32:39.839+02:00", "till_date": "2019-10-11T11:51:11.13+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:11.133+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "132e91ec-9b06-4792-a8c0-b82ccdcbce16", "id": "b1d64d40-59d7-4093-ba1d-208d869c9aae",
"value": "58.447", "value": "50.5",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:40.503+02:00", "from_date": "2019-10-11T11:51:11.264+02:00",
"till_date": "2019-09-29T19:32:40.504+02:00", "till_date": "2019-10-11T11:51:11.265+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:11.267+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "5aba6643-3fe3-422f-aa40-2d98591d9a82", "id": "f98b69ee-bef9-4609-8bfa-82f11d7f51b6",
"value": "58.468", "value": "51",
"value_type": "humidity", "value_type": "humidity",
"from_date": "2019-09-29T19:32:41.187+02:00", "from_date": "2019-10-11T11:51:12.401+02:00",
"till_date": "2019-09-29T19:32:41.188+02:00", "till_date": "2019-10-11T11:51:12.402+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.846+02:00", "creation_date": "2019-10-11T11:51:12.41+02:00",
"update_date": null
},
{
"id": "eab34e23-2b43-40c2-9d6e-90e72fa13db5",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:13.551+02:00",
"till_date": "2019-10-11T11:51:13.551+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:13.554+02:00",
"update_date": null
},
{
"id": "4659b946-8a40-4ba4-9888-6997bd1795f2",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:14.695+02:00",
"till_date": "2019-10-11T11:51:14.695+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:14.698+02:00",
"update_date": null
},
{
"id": "a6552aff-724c-4339-810a-36d911ddaa58",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.839+02:00",
"till_date": "2019-10-11T11:51:15.839+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.842+02:00",
"update_date": null
},
{
"id": "c311cacd-e346-4b68-902b-400be0f8e02e",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.976+02:00",
"till_date": "2019-10-11T11:51:15.977+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.98+02:00",
"update_date": null
},
{
"id": "2d4db614-17f8-4ddd-ba08-e2a5f77d74ea",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.118+02:00",
"till_date": "2019-10-11T11:51:17.118+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.121+02:00",
"update_date": null
},
{
"id": "936d61e4-494e-4959-a39a-c1dbc4a7d162",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.243+02:00",
"till_date": "2019-10-11T11:51:17.244+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.247+02:00",
"update_date": null
},
{
"id": "b913c9ca-4b5e-4c01-9aea-ee31d0d97977",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:18.381+02:00",
"till_date": "2019-10-11T11:51:18.382+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:18.385+02:00",
"update_date": null
},
{
"id": "1171d0dd-2173-4da2-b2c6-7f7daaad7cd1",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.529+02:00",
"till_date": "2019-10-11T11:51:19.529+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.532+02:00",
"update_date": null
},
{
"id": "d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.664+02:00",
"till_date": "2019-10-11T11:51:19.664+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.667+02:00",
"update_date": null "update_date": null
} }
] ]

View File

@ -0,0 +1,506 @@
[
{
"id": "2029cc8c-56cf-4cd1-adf8-06e768fbad29",
"value": "20.90999984741211",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:43.317+02:00",
"till_date": "2019-10-11T11:50:43.317+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:43.319+02:00",
"update_date": null
},
{
"id": "a588cc90-4dca-4a4e-be81-2d20b9f64458",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:44.459+02:00",
"till_date": "2019-10-11T11:50:47.745+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:44.473+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
},
{
"id": "88f5c095-8e88-4c80-b66a-cf154919afa8",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:49.53+02:00",
"till_date": "2019-10-11T11:50:49.53+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:50.018+02:00",
"update_date": null
},
{
"id": "7c3b7eac-3b43-4461-b204-d74c2bde3a08",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:51.187+02:00",
"till_date": "2019-10-11T11:50:53.652+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:51.189+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
},
{
"id": "acb55d68-d909-41ba-a445-8ef9eab0c7aa",
"value": "20.950000762939453",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:53.788+02:00",
"till_date": "2019-10-11T11:50:53.789+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:53.79+02:00",
"update_date": null
},
{
"id": "6563ff1e-371b-46a2-aca8-cc49b418bf61",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:54.929+02:00",
"till_date": "2019-10-11T11:50:55.536+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.405+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
},
{
"id": "157eda79-3283-4cda-a21d-db0aa2da8548",
"value": "20.959999084472656",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.674+02:00",
"till_date": "2019-10-11T11:50:55.674+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.677+02:00",
"update_date": null
},
{
"id": "c7d8d6ce-59d9-4448-9934-69cebc071cf6",
"value": "20.940000534057617",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:56.817+02:00",
"till_date": "2019-10-11T11:50:56.817+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:56.82+02:00",
"update_date": null
},
{
"id": "07d08037-7267-44ab-8d90-878271809a4c",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:57.959+02:00",
"till_date": "2019-10-11T11:50:59.1+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:57.962+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
},
{
"id": "0b865113-d0f4-42f4-af3d-50e60edcc523",
"value": "20.959999084472656",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.238+02:00",
"till_date": "2019-10-11T11:50:59.238+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.241+02:00",
"update_date": null
},
{
"id": "c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2",
"value": "20.979999542236328",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.368+02:00",
"till_date": "2019-10-11T11:50:59.368+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.371+02:00",
"update_date": null
},
{
"id": "8d98e723-7a07-4ccf-b3bc-7a2653952b8b",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:00.509+02:00",
"till_date": "2019-10-11T11:51:01.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:00.516+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
}
]
[
{
"id": "0fc9c4bf-7e86-4cee-b99c-7642984b5fcd",
"value": "50.8740234375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:01.969+02:00",
"till_date": "2019-10-11T11:51:03.109+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.971+02:00",
"update_date": "2019-10-11T11:51:20.78+02:00"
},
{
"id": "7b4f0fc3-ecec-4226-b621-49dd01cf9eb7",
"value": "50.884765625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:04.251+02:00",
"till_date": "2019-10-11T11:51:04.252+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:04.254+02:00",
"update_date": null
},
{
"id": "72ccf0a7-e680-460c-a3b8-7d14f46b5b0c",
"value": "50.861328125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:05.402+02:00",
"till_date": "2019-10-11T11:51:05.403+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:05.405+02:00",
"update_date": null
},
{
"id": "6f5277d9-abe3-4e87-b0f1-e4320756bbac",
"value": "50.8505859375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:06.551+02:00",
"till_date": "2019-10-11T11:51:06.552+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:06.565+02:00",
"update_date": null
},
{
"id": "026370e8-2011-4bf0-8da9-ec4a9fe1ee19",
"value": "50.7734375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:07.7+02:00",
"till_date": "2019-10-11T11:51:07.7+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:07.702+02:00",
"update_date": null
},
{
"id": "e96eff46-8322-424d-9a79-51c746124354",
"value": "50.728515625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:08.843+02:00",
"till_date": "2019-10-11T11:51:08.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:08.846+02:00",
"update_date": null
},
{
"id": "6beb6aee-6888-4f4a-82ff-5bf700a22b0a",
"value": "50.67578125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:09.986+02:00",
"till_date": "2019-10-11T11:51:09.986+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:09.989+02:00",
"update_date": null
},
{
"id": "62a8f169-344d-4f9c-828a-7b4ea4261fad",
"value": "50.6650390625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:11.129+02:00",
"till_date": "2019-10-11T11:51:11.13+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:11.133+02:00",
"update_date": null
},
{
"id": "b1d64d40-59d7-4093-ba1d-208d869c9aae",
"value": "50.6884765625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:11.264+02:00",
"till_date": "2019-10-11T11:51:11.265+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:11.267+02:00",
"update_date": null
},
{
"id": "f98b69ee-bef9-4609-8bfa-82f11d7f51b6",
"value": "50.76171875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:12.401+02:00",
"till_date": "2019-10-11T11:51:12.402+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:12.41+02:00",
"update_date": null
},
{
"id": "eab34e23-2b43-40c2-9d6e-90e72fa13db5",
"value": "50.7373046875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:13.551+02:00",
"till_date": "2019-10-11T11:51:13.551+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:13.554+02:00",
"update_date": null
},
{
"id": "4659b946-8a40-4ba4-9888-6997bd1795f2",
"value": "50.73828125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:14.695+02:00",
"till_date": "2019-10-11T11:51:14.695+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:14.698+02:00",
"update_date": null
},
{
"id": "a6552aff-724c-4339-810a-36d911ddaa58",
"value": "50.6845703125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.839+02:00",
"till_date": "2019-10-11T11:51:15.839+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.842+02:00",
"update_date": null
},
{
"id": "c311cacd-e346-4b68-902b-400be0f8e02e",
"value": "50.6767578125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.976+02:00",
"till_date": "2019-10-11T11:51:15.977+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.98+02:00",
"update_date": null
},
{
"id": "2d4db614-17f8-4ddd-ba08-e2a5f77d74ea",
"value": "50.68359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.118+02:00",
"till_date": "2019-10-11T11:51:17.118+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.121+02:00",
"update_date": null
},
{
"id": "936d61e4-494e-4959-a39a-c1dbc4a7d162",
"value": "50.685546875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.243+02:00",
"till_date": "2019-10-11T11:51:17.244+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.247+02:00",
"update_date": null
},
{
"id": "b913c9ca-4b5e-4c01-9aea-ee31d0d97977",
"value": "50.6943359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:18.381+02:00",
"till_date": "2019-10-11T11:51:19.529+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:18.385+02:00",
"update_date": "2019-10-11T11:51:20.78+02:00"
},
{
"id": "d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312",
"value": "50.7080078125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.664+02:00",
"till_date": "2019-10-11T11:51:19.664+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.667+02:00",
"update_date": null
}
]
[
{
"id": "140d6183-36c8-4903-a798-def4fcb3bd74",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:20.98+02:00",
"till_date": "2019-10-11T11:51:20.98+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:20.982+02:00",
"update_date": null
},
{
"id": "98102a36-a38e-4ccc-9886-c119a7971414",
"value": "100151.703125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:22.123+02:00",
"till_date": "2019-10-11T11:51:22.123+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:22.125+02:00",
"update_date": null
},
{
"id": "5ffe51ae-687c-47df-8936-7785de9beed7",
"value": "100150.8984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.261+02:00",
"till_date": "2019-10-11T11:51:23.262+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:23.263+02:00",
"update_date": null
},
{
"id": "e534cb23-c725-403b-b5c9-5455256a8662",
"value": "100153.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.739+02:00",
"till_date": "2019-10-11T11:51:23.739+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.594+02:00",
"update_date": null
},
{
"id": "e3c2a10b-373f-43d5-b02c-b381d1ad203b",
"value": "100149.296875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.721+02:00",
"till_date": "2019-10-11T11:51:24.721+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.723+02:00",
"update_date": null
},
{
"id": "e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94",
"value": "100150.796875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.849+02:00",
"till_date": "2019-10-11T11:51:24.849+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:25.212+02:00",
"update_date": null
},
{
"id": "70f6de4d-3a17-4688-b635-b8965e85be43",
"value": "100149.6015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.352+02:00",
"till_date": "2019-10-11T11:51:26.352+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.354+02:00",
"update_date": null
},
{
"id": "0e42478b-da36-4096-afad-d8c2a7685ccd",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.488+02:00",
"till_date": "2019-10-11T11:51:26.488+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.49+02:00",
"update_date": null
},
{
"id": "0313994c-db52-42d6-b059-2ca13afdd5d8",
"value": "100151.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.622+02:00",
"till_date": "2019-10-11T11:51:26.622+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.624+02:00",
"update_date": null
},
{
"id": "9cb66b4c-31d8-40dc-8c5b-9d243c2bb974",
"value": "100150.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.754+02:00",
"till_date": "2019-10-11T11:51:26.754+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.757+02:00",
"update_date": null
},
{
"id": "6e626fdb-326d-4984-9585-7b64976be1a2",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.894+02:00",
"till_date": "2019-10-11T11:51:26.894+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.896+02:00",
"update_date": null
},
{
"id": "6869ae37-0200-40c2-85a5-d4412d81b62d",
"value": "100154.1015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:27.029+02:00",
"till_date": "2019-10-11T11:51:27.029+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:27.032+02:00",
"update_date": null
},
{
"id": "8a0770b9-f8b0-42de-90fe-3e6a6311818b",
"value": "100152.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.169+02:00",
"till_date": "2019-10-11T11:51:28.169+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.171+02:00",
"update_date": null
},
{
"id": "cf989dbb-2e73-4042-b339-b4dbc75b0a7c",
"value": "100151.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.294+02:00",
"till_date": "2019-10-11T11:51:28.294+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.296+02:00",
"update_date": null
},
{
"id": "53a2d8fb-3b15-48a2-a277-1b821adba088",
"value": "100151.1015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.426+02:00",
"till_date": "2019-10-11T11:51:28.426+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.428+02:00",
"update_date": null
},
{
"id": "9de16913-67f3-4e0b-9976-ddadbd057bae",
"value": "100153.8984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:29.563+02:00",
"till_date": "2019-10-11T11:51:29.563+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:29.565+02:00",
"update_date": null
},
{
"id": "d8c255a5-c5bd-4e9e-9aec-d0e6ae795719",
"value": "100154.6015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:30.707+02:00",
"till_date": "2019-10-11T11:51:30.707+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:30.71+02:00",
"update_date": null
},
{
"id": "31ab31ac-e991-4081-8b4e-eba0f789b806",
"value": "100153.796875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:31.843+02:00",
"till_date": "2019-10-11T11:51:31.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:31.846+02:00",
"update_date": null
},
{
"id": "ed2ec0a9-9bc1-424a-9edf-85aad7a059ec",
"value": "100150.703125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:32.981+02:00",
"till_date": "2019-10-11T11:51:32.981+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:32.984+02:00",
"update_date": null
},
{
"id": "31e03c4c-49a1-4c0d-a750-16c09b75f96b",
"value": "100151.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:34.125+02:00",
"till_date": "2019-10-11T11:51:34.126+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:34.133+02:00",
"update_date": null
}
]

View File

@ -0,0 +1,246 @@
[
{
"id": "2029cc8c-56cf-4cd1-adf8-06e768fbad29",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:43.317+02:00",
"till_date": "2019-10-11T11:51:01.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:43.319+02:00",
"update_date": "2019-10-11T11:51:01.795+02:00"
}
]
[
{
"id": "0fc9c4bf-7e86-4cee-b99c-7642984b5fcd",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:01.969+02:00",
"till_date": "2019-10-11T11:51:07.7+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.971+02:00",
"update_date": "2019-10-11T11:51:20.807+02:00"
},
{
"id": "e96eff46-8322-424d-9a79-51c746124354",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:08.843+02:00",
"till_date": "2019-10-11T11:51:11.265+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:08.846+02:00",
"update_date": "2019-10-11T11:51:20.807+02:00"
},
{
"id": "f98b69ee-bef9-4609-8bfa-82f11d7f51b6",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:12.401+02:00",
"till_date": "2019-10-11T11:51:12.402+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:12.41+02:00",
"update_date": null
},
{
"id": "eab34e23-2b43-40c2-9d6e-90e72fa13db5",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:13.551+02:00",
"till_date": "2019-10-11T11:51:19.664+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:13.554+02:00",
"update_date": "2019-10-11T11:51:20.807+02:00"
}
]
[
{
"id": "140d6183-36c8-4903-a798-def4fcb3bd74",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:20.98+02:00",
"till_date": "2019-10-11T11:51:20.98+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:20.982+02:00",
"update_date": null
},
{
"id": "98102a36-a38e-4ccc-9886-c119a7971414",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:22.123+02:00",
"till_date": "2019-10-11T11:51:22.123+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:22.125+02:00",
"update_date": null
},
{
"id": "5ffe51ae-687c-47df-8936-7785de9beed7",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.261+02:00",
"till_date": "2019-10-11T11:51:23.262+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:23.263+02:00",
"update_date": null
},
{
"id": "e534cb23-c725-403b-b5c9-5455256a8662",
"value": "100153",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.739+02:00",
"till_date": "2019-10-11T11:51:23.739+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.594+02:00",
"update_date": null
},
{
"id": "e3c2a10b-373f-43d5-b02c-b381d1ad203b",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.721+02:00",
"till_date": "2019-10-11T11:51:24.721+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.723+02:00",
"update_date": null
},
{
"id": "e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.849+02:00",
"till_date": "2019-10-11T11:51:24.849+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:25.212+02:00",
"update_date": null
},
{
"id": "70f6de4d-3a17-4688-b635-b8965e85be43",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.352+02:00",
"till_date": "2019-10-11T11:51:26.488+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.354+02:00",
"update_date": "2019-10-11T11:51:35.275+02:00"
},
{
"id": "0313994c-db52-42d6-b059-2ca13afdd5d8",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.622+02:00",
"till_date": "2019-10-11T11:51:26.622+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.624+02:00",
"update_date": null
},
{
"id": "9cb66b4c-31d8-40dc-8c5b-9d243c2bb974",
"value": "100150",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.754+02:00",
"till_date": "2019-10-11T11:51:26.754+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.757+02:00",
"update_date": null
},
{
"id": "6e626fdb-326d-4984-9585-7b64976be1a2",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.894+02:00",
"till_date": "2019-10-11T11:51:26.894+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.896+02:00",
"update_date": null
},
{
"id": "6869ae37-0200-40c2-85a5-d4412d81b62d",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:27.029+02:00",
"till_date": "2019-10-11T11:51:27.029+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:27.032+02:00",
"update_date": null
},
{
"id": "8a0770b9-f8b0-42de-90fe-3e6a6311818b",
"value": "100152.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.169+02:00",
"till_date": "2019-10-11T11:51:28.169+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.171+02:00",
"update_date": null
},
{
"id": "cf989dbb-2e73-4042-b339-b4dbc75b0a7c",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.294+02:00",
"till_date": "2019-10-11T11:51:28.294+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.296+02:00",
"update_date": null
},
{
"id": "53a2d8fb-3b15-48a2-a277-1b821adba088",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.426+02:00",
"till_date": "2019-10-11T11:51:28.426+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.428+02:00",
"update_date": null
},
{
"id": "9de16913-67f3-4e0b-9976-ddadbd057bae",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:29.563+02:00",
"till_date": "2019-10-11T11:51:29.563+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:29.565+02:00",
"update_date": null
},
{
"id": "d8c255a5-c5bd-4e9e-9aec-d0e6ae795719",
"value": "100154.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:30.707+02:00",
"till_date": "2019-10-11T11:51:30.707+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:30.71+02:00",
"update_date": null
},
{
"id": "31ab31ac-e991-4081-8b4e-eba0f789b806",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:31.843+02:00",
"till_date": "2019-10-11T11:51:31.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:31.846+02:00",
"update_date": null
},
{
"id": "ed2ec0a9-9bc1-424a-9edf-85aad7a059ec",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:32.981+02:00",
"till_date": "2019-10-11T11:51:32.981+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:32.984+02:00",
"update_date": null
},
{
"id": "31e03c4c-49a1-4c0d-a750-16c09b75f96b",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:34.125+02:00",
"till_date": "2019-10-11T11:51:34.126+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:34.133+02:00",
"update_date": null
}
]

View File

@ -1,332 +1,606 @@
[ [
{ {
"id": "7d3286c3-3f32-40e7-9656-f587de5d5341", "id": "2029cc8c-56cf-4cd1-adf8-06e768fbad29",
"value": "58.55859375", "value": "20.90999984741211",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:33.862+02:00",
"till_date": "2019-09-29T19:32:33.862+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "9890f244-9854-4a78-826e-124dc7b179af",
"value": "58.55859375",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:35.521+02:00",
"till_date": "2019-09-29T19:32:35.521+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "40124dc7-a6af-4864-8566-7c2925b4471b",
"value": "58.525390625",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:36.186+02:00",
"till_date": "2019-09-29T19:32:36.186+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "92bfde08-0f2a-4b6e-b227-44f341f35446",
"value": "58.5068359375",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:36.881+02:00",
"till_date": "2019-09-29T19:32:36.882+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "c22e278e-f6fb-4755-8bf3-7a7313816abf",
"value": "58.470703125",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:37.485+02:00",
"till_date": "2019-09-29T19:32:37.485+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "c0468792-72c2-45f6-a9f4-c798f9307bc2",
"value": "58.4384765625",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:38.073+02:00",
"till_date": "2019-09-29T19:32:38.073+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "9afab5be-7502-47fc-a5b2-cf8bd1a62054",
"value": "58.4384765625",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:38.675+02:00",
"till_date": "2019-09-29T19:32:38.676+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "3b8560f9-9536-47e3-839e-8351ffecbfcf",
"value": "58.4384765625",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:39.258+02:00",
"till_date": "2019-09-29T19:32:39.259+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "4afcb00e-4035-443d-8495-535932d45623",
"value": "58.4375",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:39.839+02:00",
"till_date": "2019-09-29T19:32:39.839+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "132e91ec-9b06-4792-a8c0-b82ccdcbce16",
"value": "58.447265625",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:40.503+02:00",
"till_date": "2019-09-29T19:32:40.504+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "5aba6643-3fe3-422f-aa40-2d98591d9a82",
"value": "58.46875",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:41.187+02:00",
"till_date": "2019-09-29T19:32:41.188+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "c18c918e-180b-40ea-8509-b37a2d19c1b8",
"value": "98527.1015625",
"value_type": "pressure",
"from_date": "2019-09-29T19:29:56.579+02:00",
"till_date": "2019-09-29T19:29:56.579+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "31269000-f855-472c-b607-5ef7dbcc2d3b",
"value": "98531.296875",
"value_type": "pressure",
"from_date": "2019-09-29T19:29:58.02+02:00",
"till_date": "2019-09-29T19:29:58.02+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "7df14e44-185e-43a4-ba67-c86561bf19a0",
"value": "98526.8984375",
"value_type": "pressure",
"from_date": "2019-09-29T19:29:58.886+02:00",
"till_date": "2019-09-29T19:29:58.886+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "e63f2d08-cbbe-43c6-80f6-70e504aebce5",
"value": "98530.5",
"value_type": "pressure",
"from_date": "2019-09-29T19:29:59.657+02:00",
"till_date": "2019-09-29T19:29:59.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c",
"value": "98529.796875",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:00.301+02:00",
"till_date": "2019-09-29T19:30:00.302+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "b002af5d-3ef0-4608-b6c6-2745be36c7f0",
"value": "98530.1015625",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:00.878+02:00",
"till_date": "2019-09-29T19:30:00.879+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "e0753df7-865d-41ec-a2fc-58692c0e6a12",
"value": "98530.3984375",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:01.513+02:00",
"till_date": "2019-09-29T19:30:01.513+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "a46d74d4-dce8-497d-a08a-a609d2ed1238",
"value": "98532.5",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:02.095+02:00",
"till_date": "2019-09-29T19:30:02.095+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "2a17ada0-caad-42d3-b12e-9ef432d79e59",
"value": "98532.203125",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:02.643+02:00",
"till_date": "2019-09-29T19:30:02.643+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "f83d1000-9fe5-4ced-9c10-587525b2a9e7",
"value": "98528.296875",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:03.26+02:00",
"till_date": "2019-09-29T19:30:03.26+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "e2d50392-2d67-4324-add5-dd5c566ba826",
"value": "98532.796875",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:03.835+02:00",
"till_date": "2019-09-29T19:30:03.835+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "63d546fe-4e27-4816-8e8c-cd16026cf079",
"value": "22.040000915527344",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:12.887+02:00", "from_date": "2019-10-11T11:50:43.317+02:00",
"till_date": "2019-09-29T19:26:12.887+02:00", "till_date": "2019-10-11T11:50:43.317+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:43.319+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ac3dddda-a669-4215-8174-42eaa3af741b", "id": "a588cc90-4dca-4a4e-be81-2d20b9f64458",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:13.312+02:00", "from_date": "2019-10-11T11:50:44.459+02:00",
"till_date": "2019-09-29T19:26:13.312+02:00", "till_date": "2019-10-11T11:50:44.459+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:44.473+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae", "id": "1ebb60de-6066-4731-9f55-ee1c51748b7f",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:13.848+02:00", "from_date": "2019-10-11T11:50:45.614+02:00",
"till_date": "2019-09-29T19:26:13.848+02:00", "till_date": "2019-10-11T11:50:45.614+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:45.615+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "2ebc3339-974e-4a8f-bec1-531f9045ffe6", "id": "6cbc586f-a5c9-4296-b3b2-200afae12059",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:14.381+02:00", "from_date": "2019-10-11T11:50:46.776+02:00",
"till_date": "2019-09-29T19:26:14.382+02:00", "till_date": "2019-10-11T11:50:46.776+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:47.134+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "dfa35a46-803b-4c21-9cbc-092efc8d3646", "id": "14e03e32-f214-4f61-97b0-8e021c47bead",
"value": "22.059999465942383", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:14.923+02:00", "from_date": "2019-10-11T11:50:47.745+02:00",
"till_date": "2019-09-29T19:26:14.923+02:00", "till_date": "2019-10-11T11:50:47.745+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:47.747+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ce284f94-6032-467a-804d-34f7dc47ffcb", "id": "88f5c095-8e88-4c80-b66a-cf154919afa8",
"value": "22.049999237060547", "value": "20.93000030517578",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:15.472+02:00", "from_date": "2019-10-11T11:50:49.53+02:00",
"till_date": "2019-09-29T19:26:15.472+02:00", "till_date": "2019-10-11T11:50:49.53+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:50.018+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9926b8e7-2092-48c7-9906-856af2fa7251", "id": "7c3b7eac-3b43-4461-b204-d74c2bde3a08",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:16.001+02:00", "from_date": "2019-10-11T11:50:51.187+02:00",
"till_date": "2019-09-29T19:26:16.001+02:00", "till_date": "2019-10-11T11:50:51.187+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:51.189+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9170f2e0-c6aa-4c75-95dc-d1f129df541f", "id": "3caf0b08-38d5-4536-baa5-86d4d75e359d",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:16.591+02:00", "from_date": "2019-10-11T11:50:52.508+02:00",
"till_date": "2019-09-29T19:26:16.591+02:00", "till_date": "2019-10-11T11:50:52.508+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:52.51+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ebce8428-d414-4ed2-98c1-2f3b8b45dd0b", "id": "4b8595bf-3624-4963-b796-efc648515cd9",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:17.124+02:00", "from_date": "2019-10-11T11:50:53.652+02:00",
"till_date": "2019-09-29T19:26:17.124+02:00", "till_date": "2019-10-11T11:50:53.652+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:53.654+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "58e55045-33c6-4122-a2d9-b5bc12059b77", "id": "acb55d68-d909-41ba-a445-8ef9eab0c7aa",
"value": "22.059999465942383", "value": "20.950000762939453",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:17.679+02:00", "from_date": "2019-10-11T11:50:53.788+02:00",
"till_date": "2019-09-29T19:26:17.679+02:00", "till_date": "2019-10-11T11:50:53.789+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:53.79+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "1df7d65b-149c-46f5-a377-5d9ad399f471", "id": "6563ff1e-371b-46a2-aca8-cc49b418bf61",
"value": "22.049999237060547", "value": "20.93000030517578",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:18.291+02:00", "from_date": "2019-10-11T11:50:54.929+02:00",
"till_date": "2019-09-29T19:26:18.291+02:00", "till_date": "2019-10-11T11:50:54.93+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:55.405+02:00",
"update_date": null
},
{
"id": "a64f57c4-b95c-45b1-b78a-a6be263abb85",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.536+02:00",
"till_date": "2019-10-11T11:50:55.536+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.538+02:00",
"update_date": null
},
{
"id": "157eda79-3283-4cda-a21d-db0aa2da8548",
"value": "20.959999084472656",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.674+02:00",
"till_date": "2019-10-11T11:50:55.674+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.677+02:00",
"update_date": null
},
{
"id": "c7d8d6ce-59d9-4448-9934-69cebc071cf6",
"value": "20.940000534057617",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:56.817+02:00",
"till_date": "2019-10-11T11:50:56.817+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:56.82+02:00",
"update_date": null
},
{
"id": "07d08037-7267-44ab-8d90-878271809a4c",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:57.959+02:00",
"till_date": "2019-10-11T11:50:57.96+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:57.962+02:00",
"update_date": null
},
{
"id": "bf2e981f-8bad-466e-9a12-c1a5d9b64399",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.1+02:00",
"till_date": "2019-10-11T11:50:59.1+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.103+02:00",
"update_date": null
},
{
"id": "0b865113-d0f4-42f4-af3d-50e60edcc523",
"value": "20.959999084472656",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.238+02:00",
"till_date": "2019-10-11T11:50:59.238+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.241+02:00",
"update_date": null
},
{
"id": "c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2",
"value": "20.979999542236328",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.368+02:00",
"till_date": "2019-10-11T11:50:59.368+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.371+02:00",
"update_date": null
},
{
"id": "8d98e723-7a07-4ccf-b3bc-7a2653952b8b",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:00.509+02:00",
"till_date": "2019-10-11T11:51:00.51+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:00.516+02:00",
"update_date": null
},
{
"id": "f61b7bfb-14eb-4b43-a7b6-47b61fa46dda",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:01.658+02:00",
"till_date": "2019-10-11T11:51:01.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.661+02:00",
"update_date": null
}
]
[
{
"id": "0fc9c4bf-7e86-4cee-b99c-7642984b5fcd",
"value": "50.8740234375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:01.969+02:00",
"till_date": "2019-10-11T11:51:01.969+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.971+02:00",
"update_date": null
},
{
"id": "45e8b20c-1ab0-4cf1-9ef1-aa82537557f6",
"value": "50.8740234375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:03.109+02:00",
"till_date": "2019-10-11T11:51:03.109+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:03.111+02:00",
"update_date": null
},
{
"id": "7b4f0fc3-ecec-4226-b621-49dd01cf9eb7",
"value": "50.884765625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:04.251+02:00",
"till_date": "2019-10-11T11:51:04.252+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:04.254+02:00",
"update_date": null
},
{
"id": "72ccf0a7-e680-460c-a3b8-7d14f46b5b0c",
"value": "50.861328125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:05.402+02:00",
"till_date": "2019-10-11T11:51:05.403+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:05.405+02:00",
"update_date": null
},
{
"id": "6f5277d9-abe3-4e87-b0f1-e4320756bbac",
"value": "50.8505859375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:06.551+02:00",
"till_date": "2019-10-11T11:51:06.552+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:06.565+02:00",
"update_date": null
},
{
"id": "026370e8-2011-4bf0-8da9-ec4a9fe1ee19",
"value": "50.7734375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:07.7+02:00",
"till_date": "2019-10-11T11:51:07.7+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:07.702+02:00",
"update_date": null
},
{
"id": "e96eff46-8322-424d-9a79-51c746124354",
"value": "50.728515625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:08.843+02:00",
"till_date": "2019-10-11T11:51:08.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:08.846+02:00",
"update_date": null
},
{
"id": "6beb6aee-6888-4f4a-82ff-5bf700a22b0a",
"value": "50.67578125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:09.986+02:00",
"till_date": "2019-10-11T11:51:09.986+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:09.989+02:00",
"update_date": null
},
{
"id": "62a8f169-344d-4f9c-828a-7b4ea4261fad",
"value": "50.6650390625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:11.129+02:00",
"till_date": "2019-10-11T11:51:11.13+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:11.133+02:00",
"update_date": null
},
{
"id": "b1d64d40-59d7-4093-ba1d-208d869c9aae",
"value": "50.6884765625",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:11.264+02:00",
"till_date": "2019-10-11T11:51:11.265+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:11.267+02:00",
"update_date": null
},
{
"id": "f98b69ee-bef9-4609-8bfa-82f11d7f51b6",
"value": "50.76171875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:12.401+02:00",
"till_date": "2019-10-11T11:51:12.402+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:12.41+02:00",
"update_date": null
},
{
"id": "eab34e23-2b43-40c2-9d6e-90e72fa13db5",
"value": "50.7373046875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:13.551+02:00",
"till_date": "2019-10-11T11:51:13.551+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:13.554+02:00",
"update_date": null
},
{
"id": "4659b946-8a40-4ba4-9888-6997bd1795f2",
"value": "50.73828125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:14.695+02:00",
"till_date": "2019-10-11T11:51:14.695+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:14.698+02:00",
"update_date": null
},
{
"id": "a6552aff-724c-4339-810a-36d911ddaa58",
"value": "50.6845703125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.839+02:00",
"till_date": "2019-10-11T11:51:15.839+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.842+02:00",
"update_date": null
},
{
"id": "c311cacd-e346-4b68-902b-400be0f8e02e",
"value": "50.6767578125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.976+02:00",
"till_date": "2019-10-11T11:51:15.977+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.98+02:00",
"update_date": null
},
{
"id": "2d4db614-17f8-4ddd-ba08-e2a5f77d74ea",
"value": "50.68359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.118+02:00",
"till_date": "2019-10-11T11:51:17.118+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.121+02:00",
"update_date": null
},
{
"id": "936d61e4-494e-4959-a39a-c1dbc4a7d162",
"value": "50.685546875",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.243+02:00",
"till_date": "2019-10-11T11:51:17.244+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.247+02:00",
"update_date": null
},
{
"id": "b913c9ca-4b5e-4c01-9aea-ee31d0d97977",
"value": "50.6943359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:18.381+02:00",
"till_date": "2019-10-11T11:51:18.382+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:18.385+02:00",
"update_date": null
},
{
"id": "1171d0dd-2173-4da2-b2c6-7f7daaad7cd1",
"value": "50.6943359375",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.529+02:00",
"till_date": "2019-10-11T11:51:19.529+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.532+02:00",
"update_date": null
},
{
"id": "d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312",
"value": "50.7080078125",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.664+02:00",
"till_date": "2019-10-11T11:51:19.664+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.667+02:00",
"update_date": null
}
]
[
{
"id": "140d6183-36c8-4903-a798-def4fcb3bd74",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:20.98+02:00",
"till_date": "2019-10-11T11:51:20.98+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:20.982+02:00",
"update_date": null
},
{
"id": "98102a36-a38e-4ccc-9886-c119a7971414",
"value": "100151.703125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:22.123+02:00",
"till_date": "2019-10-11T11:51:22.123+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:22.125+02:00",
"update_date": null
},
{
"id": "5ffe51ae-687c-47df-8936-7785de9beed7",
"value": "100150.8984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.261+02:00",
"till_date": "2019-10-11T11:51:23.262+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:23.263+02:00",
"update_date": null
},
{
"id": "e534cb23-c725-403b-b5c9-5455256a8662",
"value": "100153.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.739+02:00",
"till_date": "2019-10-11T11:51:23.739+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.594+02:00",
"update_date": null
},
{
"id": "e3c2a10b-373f-43d5-b02c-b381d1ad203b",
"value": "100149.296875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.721+02:00",
"till_date": "2019-10-11T11:51:24.721+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.723+02:00",
"update_date": null
},
{
"id": "e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94",
"value": "100150.796875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.849+02:00",
"till_date": "2019-10-11T11:51:24.849+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:25.212+02:00",
"update_date": null
},
{
"id": "70f6de4d-3a17-4688-b635-b8965e85be43",
"value": "100149.6015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.352+02:00",
"till_date": "2019-10-11T11:51:26.352+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.354+02:00",
"update_date": null
},
{
"id": "0e42478b-da36-4096-afad-d8c2a7685ccd",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.488+02:00",
"till_date": "2019-10-11T11:51:26.488+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.49+02:00",
"update_date": null
},
{
"id": "0313994c-db52-42d6-b059-2ca13afdd5d8",
"value": "100151.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.622+02:00",
"till_date": "2019-10-11T11:51:26.622+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.624+02:00",
"update_date": null
},
{
"id": "9cb66b4c-31d8-40dc-8c5b-9d243c2bb974",
"value": "100150.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.754+02:00",
"till_date": "2019-10-11T11:51:26.754+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.757+02:00",
"update_date": null
},
{
"id": "6e626fdb-326d-4984-9585-7b64976be1a2",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.894+02:00",
"till_date": "2019-10-11T11:51:26.894+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.896+02:00",
"update_date": null
},
{
"id": "6869ae37-0200-40c2-85a5-d4412d81b62d",
"value": "100154.1015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:27.029+02:00",
"till_date": "2019-10-11T11:51:27.029+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:27.032+02:00",
"update_date": null
},
{
"id": "8a0770b9-f8b0-42de-90fe-3e6a6311818b",
"value": "100152.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.169+02:00",
"till_date": "2019-10-11T11:51:28.169+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.171+02:00",
"update_date": null
},
{
"id": "cf989dbb-2e73-4042-b339-b4dbc75b0a7c",
"value": "100151.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.294+02:00",
"till_date": "2019-10-11T11:51:28.294+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.296+02:00",
"update_date": null
},
{
"id": "53a2d8fb-3b15-48a2-a277-1b821adba088",
"value": "100151.1015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.426+02:00",
"till_date": "2019-10-11T11:51:28.426+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.428+02:00",
"update_date": null
},
{
"id": "9de16913-67f3-4e0b-9976-ddadbd057bae",
"value": "100153.8984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:29.563+02:00",
"till_date": "2019-10-11T11:51:29.563+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:29.565+02:00",
"update_date": null
},
{
"id": "d8c255a5-c5bd-4e9e-9aec-d0e6ae795719",
"value": "100154.6015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:30.707+02:00",
"till_date": "2019-10-11T11:51:30.707+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:30.71+02:00",
"update_date": null
},
{
"id": "31ab31ac-e991-4081-8b4e-eba0f789b806",
"value": "100153.796875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:31.843+02:00",
"till_date": "2019-10-11T11:51:31.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:31.846+02:00",
"update_date": null
},
{
"id": "ed2ec0a9-9bc1-424a-9edf-85aad7a059ec",
"value": "100150.703125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:32.981+02:00",
"till_date": "2019-10-11T11:51:32.981+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:32.984+02:00",
"update_date": null
},
{
"id": "31e03c4c-49a1-4c0d-a750-16c09b75f96b",
"value": "100151.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:34.125+02:00",
"till_date": "2019-10-11T11:51:34.126+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:34.133+02:00",
"update_date": null "update_date": null
} }
] ]

View File

@ -1,332 +1,606 @@
[ [
{ {
"id": "7d3286c3-3f32-40e7-9656-f587de5d5341", "id": "2029cc8c-56cf-4cd1-adf8-06e768fbad29",
"value": "58.558", "value": "21",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:33.862+02:00",
"till_date": "2019-09-29T19:32:33.862+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "9890f244-9854-4a78-826e-124dc7b179af",
"value": "58.558",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:35.521+02:00",
"till_date": "2019-09-29T19:32:35.521+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "40124dc7-a6af-4864-8566-7c2925b4471b",
"value": "58.525",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:36.186+02:00",
"till_date": "2019-09-29T19:32:36.186+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "92bfde08-0f2a-4b6e-b227-44f341f35446",
"value": "58.506",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:36.881+02:00",
"till_date": "2019-09-29T19:32:36.882+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "c22e278e-f6fb-4755-8bf3-7a7313816abf",
"value": "58.470",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:37.485+02:00",
"till_date": "2019-09-29T19:32:37.485+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "c0468792-72c2-45f6-a9f4-c798f9307bc2",
"value": "58.438",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:38.073+02:00",
"till_date": "2019-09-29T19:32:38.073+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "9afab5be-7502-47fc-a5b2-cf8bd1a62054",
"value": "58.438",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:38.675+02:00",
"till_date": "2019-09-29T19:32:38.676+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "3b8560f9-9536-47e3-839e-8351ffecbfcf",
"value": "58.438",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:39.258+02:00",
"till_date": "2019-09-29T19:32:39.259+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "4afcb00e-4035-443d-8495-535932d45623",
"value": "58.437",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:39.839+02:00",
"till_date": "2019-09-29T19:32:39.839+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "132e91ec-9b06-4792-a8c0-b82ccdcbce16",
"value": "58.447",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:40.503+02:00",
"till_date": "2019-09-29T19:32:40.504+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.878+02:00",
"update_date": null
},
{
"id": "5aba6643-3fe3-422f-aa40-2d98591d9a82",
"value": "58.468",
"value_type": "humidity",
"from_date": "2019-09-29T19:32:41.187+02:00",
"till_date": "2019-09-29T19:32:41.188+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "c18c918e-180b-40ea-8509-b37a2d19c1b8",
"value": "98527.101",
"value_type": "pressure",
"from_date": "2019-09-29T19:29:56.579+02:00",
"till_date": "2019-09-29T19:29:56.579+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "31269000-f855-472c-b607-5ef7dbcc2d3b",
"value": "98531.296",
"value_type": "pressure",
"from_date": "2019-09-29T19:29:58.02+02:00",
"till_date": "2019-09-29T19:29:58.02+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "7df14e44-185e-43a4-ba67-c86561bf19a0",
"value": "98526.898",
"value_type": "pressure",
"from_date": "2019-09-29T19:29:58.886+02:00",
"till_date": "2019-09-29T19:29:58.886+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "e63f2d08-cbbe-43c6-80f6-70e504aebce5",
"value": "98530.5",
"value_type": "pressure",
"from_date": "2019-09-29T19:29:59.657+02:00",
"till_date": "2019-09-29T19:29:59.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c",
"value": "98529.796",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:00.301+02:00",
"till_date": "2019-09-29T19:30:00.302+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "b002af5d-3ef0-4608-b6c6-2745be36c7f0",
"value": "98530.101",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:00.878+02:00",
"till_date": "2019-09-29T19:30:00.879+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "e0753df7-865d-41ec-a2fc-58692c0e6a12",
"value": "98530.398",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:01.513+02:00",
"till_date": "2019-09-29T19:30:01.513+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "a46d74d4-dce8-497d-a08a-a609d2ed1238",
"value": "98532.5",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:02.095+02:00",
"till_date": "2019-09-29T19:30:02.095+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "2a17ada0-caad-42d3-b12e-9ef432d79e59",
"value": "98532.203",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:02.643+02:00",
"till_date": "2019-09-29T19:30:02.643+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "f83d1000-9fe5-4ced-9c10-587525b2a9e7",
"value": "98528.296",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:03.26+02:00",
"till_date": "2019-09-29T19:30:03.26+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "e2d50392-2d67-4324-add5-dd5c566ba826",
"value": "98532.796",
"value_type": "pressure",
"from_date": "2019-09-29T19:30:03.835+02:00",
"till_date": "2019-09-29T19:30:03.835+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.879+02:00",
"update_date": null
},
{
"id": "63d546fe-4e27-4816-8e8c-cd16026cf079",
"value": "22.040",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:12.887+02:00", "from_date": "2019-10-11T11:50:43.317+02:00",
"till_date": "2019-09-29T19:26:12.887+02:00", "till_date": "2019-10-11T11:50:43.317+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:43.319+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ac3dddda-a669-4215-8174-42eaa3af741b", "id": "a588cc90-4dca-4a4e-be81-2d20b9f64458",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:13.312+02:00", "from_date": "2019-10-11T11:50:44.459+02:00",
"till_date": "2019-09-29T19:26:13.312+02:00", "till_date": "2019-10-11T11:50:44.459+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:44.473+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae", "id": "1ebb60de-6066-4731-9f55-ee1c51748b7f",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:13.848+02:00", "from_date": "2019-10-11T11:50:45.614+02:00",
"till_date": "2019-09-29T19:26:13.848+02:00", "till_date": "2019-10-11T11:50:45.614+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:45.615+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "2ebc3339-974e-4a8f-bec1-531f9045ffe6", "id": "6cbc586f-a5c9-4296-b3b2-200afae12059",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:14.381+02:00", "from_date": "2019-10-11T11:50:46.776+02:00",
"till_date": "2019-09-29T19:26:14.382+02:00", "till_date": "2019-10-11T11:50:46.776+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:47.134+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "dfa35a46-803b-4c21-9cbc-092efc8d3646", "id": "14e03e32-f214-4f61-97b0-8e021c47bead",
"value": "22.059", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:14.923+02:00", "from_date": "2019-10-11T11:50:47.745+02:00",
"till_date": "2019-09-29T19:26:14.923+02:00", "till_date": "2019-10-11T11:50:47.745+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:47.747+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ce284f94-6032-467a-804d-34f7dc47ffcb", "id": "88f5c095-8e88-4c80-b66a-cf154919afa8",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:15.472+02:00", "from_date": "2019-10-11T11:50:49.53+02:00",
"till_date": "2019-09-29T19:26:15.472+02:00", "till_date": "2019-10-11T11:50:49.53+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:50.018+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9926b8e7-2092-48c7-9906-856af2fa7251", "id": "7c3b7eac-3b43-4461-b204-d74c2bde3a08",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:16.001+02:00", "from_date": "2019-10-11T11:50:51.187+02:00",
"till_date": "2019-09-29T19:26:16.001+02:00", "till_date": "2019-10-11T11:50:51.187+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:51.189+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9170f2e0-c6aa-4c75-95dc-d1f129df541f", "id": "3caf0b08-38d5-4536-baa5-86d4d75e359d",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:16.591+02:00", "from_date": "2019-10-11T11:50:52.508+02:00",
"till_date": "2019-09-29T19:26:16.591+02:00", "till_date": "2019-10-11T11:50:52.508+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:52.51+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ebce8428-d414-4ed2-98c1-2f3b8b45dd0b", "id": "4b8595bf-3624-4963-b796-efc648515cd9",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:17.124+02:00", "from_date": "2019-10-11T11:50:53.652+02:00",
"till_date": "2019-09-29T19:26:17.124+02:00", "till_date": "2019-10-11T11:50:53.652+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:53.654+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "58e55045-33c6-4122-a2d9-b5bc12059b77", "id": "acb55d68-d909-41ba-a445-8ef9eab0c7aa",
"value": "22.059", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:17.679+02:00", "from_date": "2019-10-11T11:50:53.788+02:00",
"till_date": "2019-09-29T19:26:17.679+02:00", "till_date": "2019-10-11T11:50:53.789+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:53.79+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "1df7d65b-149c-46f5-a377-5d9ad399f471", "id": "6563ff1e-371b-46a2-aca8-cc49b418bf61",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:18.291+02:00", "from_date": "2019-10-11T11:50:54.929+02:00",
"till_date": "2019-09-29T19:26:18.291+02:00", "till_date": "2019-10-11T11:50:54.93+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.88+02:00", "creation_date": "2019-10-11T11:50:55.405+02:00",
"update_date": null
},
{
"id": "a64f57c4-b95c-45b1-b78a-a6be263abb85",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.536+02:00",
"till_date": "2019-10-11T11:50:55.536+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.538+02:00",
"update_date": null
},
{
"id": "157eda79-3283-4cda-a21d-db0aa2da8548",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.674+02:00",
"till_date": "2019-10-11T11:50:55.674+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.677+02:00",
"update_date": null
},
{
"id": "c7d8d6ce-59d9-4448-9934-69cebc071cf6",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:56.817+02:00",
"till_date": "2019-10-11T11:50:56.817+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:56.82+02:00",
"update_date": null
},
{
"id": "07d08037-7267-44ab-8d90-878271809a4c",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:57.959+02:00",
"till_date": "2019-10-11T11:50:57.96+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:57.962+02:00",
"update_date": null
},
{
"id": "bf2e981f-8bad-466e-9a12-c1a5d9b64399",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.1+02:00",
"till_date": "2019-10-11T11:50:59.1+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.103+02:00",
"update_date": null
},
{
"id": "0b865113-d0f4-42f4-af3d-50e60edcc523",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.238+02:00",
"till_date": "2019-10-11T11:50:59.238+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.241+02:00",
"update_date": null
},
{
"id": "c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.368+02:00",
"till_date": "2019-10-11T11:50:59.368+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.371+02:00",
"update_date": null
},
{
"id": "8d98e723-7a07-4ccf-b3bc-7a2653952b8b",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:00.509+02:00",
"till_date": "2019-10-11T11:51:00.51+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:00.516+02:00",
"update_date": null
},
{
"id": "f61b7bfb-14eb-4b43-a7b6-47b61fa46dda",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:01.658+02:00",
"till_date": "2019-10-11T11:51:01.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.661+02:00",
"update_date": null
}
]
[
{
"id": "0fc9c4bf-7e86-4cee-b99c-7642984b5fcd",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:01.969+02:00",
"till_date": "2019-10-11T11:51:01.969+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.971+02:00",
"update_date": null
},
{
"id": "45e8b20c-1ab0-4cf1-9ef1-aa82537557f6",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:03.109+02:00",
"till_date": "2019-10-11T11:51:03.109+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:03.111+02:00",
"update_date": null
},
{
"id": "7b4f0fc3-ecec-4226-b621-49dd01cf9eb7",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:04.251+02:00",
"till_date": "2019-10-11T11:51:04.252+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:04.254+02:00",
"update_date": null
},
{
"id": "72ccf0a7-e680-460c-a3b8-7d14f46b5b0c",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:05.402+02:00",
"till_date": "2019-10-11T11:51:05.403+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:05.405+02:00",
"update_date": null
},
{
"id": "6f5277d9-abe3-4e87-b0f1-e4320756bbac",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:06.551+02:00",
"till_date": "2019-10-11T11:51:06.552+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:06.565+02:00",
"update_date": null
},
{
"id": "026370e8-2011-4bf0-8da9-ec4a9fe1ee19",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:07.7+02:00",
"till_date": "2019-10-11T11:51:07.7+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:07.702+02:00",
"update_date": null
},
{
"id": "e96eff46-8322-424d-9a79-51c746124354",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:08.843+02:00",
"till_date": "2019-10-11T11:51:08.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:08.846+02:00",
"update_date": null
},
{
"id": "6beb6aee-6888-4f4a-82ff-5bf700a22b0a",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:09.986+02:00",
"till_date": "2019-10-11T11:51:09.986+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:09.989+02:00",
"update_date": null
},
{
"id": "62a8f169-344d-4f9c-828a-7b4ea4261fad",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:11.129+02:00",
"till_date": "2019-10-11T11:51:11.13+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:11.133+02:00",
"update_date": null
},
{
"id": "b1d64d40-59d7-4093-ba1d-208d869c9aae",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:11.264+02:00",
"till_date": "2019-10-11T11:51:11.265+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:11.267+02:00",
"update_date": null
},
{
"id": "f98b69ee-bef9-4609-8bfa-82f11d7f51b6",
"value": "51",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:12.401+02:00",
"till_date": "2019-10-11T11:51:12.402+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:12.41+02:00",
"update_date": null
},
{
"id": "eab34e23-2b43-40c2-9d6e-90e72fa13db5",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:13.551+02:00",
"till_date": "2019-10-11T11:51:13.551+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:13.554+02:00",
"update_date": null
},
{
"id": "4659b946-8a40-4ba4-9888-6997bd1795f2",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:14.695+02:00",
"till_date": "2019-10-11T11:51:14.695+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:14.698+02:00",
"update_date": null
},
{
"id": "a6552aff-724c-4339-810a-36d911ddaa58",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.839+02:00",
"till_date": "2019-10-11T11:51:15.839+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.842+02:00",
"update_date": null
},
{
"id": "c311cacd-e346-4b68-902b-400be0f8e02e",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:15.976+02:00",
"till_date": "2019-10-11T11:51:15.977+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:15.98+02:00",
"update_date": null
},
{
"id": "2d4db614-17f8-4ddd-ba08-e2a5f77d74ea",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.118+02:00",
"till_date": "2019-10-11T11:51:17.118+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.121+02:00",
"update_date": null
},
{
"id": "936d61e4-494e-4959-a39a-c1dbc4a7d162",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:17.243+02:00",
"till_date": "2019-10-11T11:51:17.244+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:17.247+02:00",
"update_date": null
},
{
"id": "b913c9ca-4b5e-4c01-9aea-ee31d0d97977",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:18.381+02:00",
"till_date": "2019-10-11T11:51:18.382+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:18.385+02:00",
"update_date": null
},
{
"id": "1171d0dd-2173-4da2-b2c6-7f7daaad7cd1",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.529+02:00",
"till_date": "2019-10-11T11:51:19.529+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.532+02:00",
"update_date": null
},
{
"id": "d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312",
"value": "50.5",
"value_type": "humidity",
"from_date": "2019-10-11T11:51:19.664+02:00",
"till_date": "2019-10-11T11:51:19.664+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:19.667+02:00",
"update_date": null
}
]
[
{
"id": "140d6183-36c8-4903-a798-def4fcb3bd74",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:20.98+02:00",
"till_date": "2019-10-11T11:51:20.98+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:20.982+02:00",
"update_date": null
},
{
"id": "98102a36-a38e-4ccc-9886-c119a7971414",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:22.123+02:00",
"till_date": "2019-10-11T11:51:22.123+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:22.125+02:00",
"update_date": null
},
{
"id": "5ffe51ae-687c-47df-8936-7785de9beed7",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.261+02:00",
"till_date": "2019-10-11T11:51:23.262+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:23.263+02:00",
"update_date": null
},
{
"id": "e534cb23-c725-403b-b5c9-5455256a8662",
"value": "100153",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.739+02:00",
"till_date": "2019-10-11T11:51:23.739+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.594+02:00",
"update_date": null
},
{
"id": "e3c2a10b-373f-43d5-b02c-b381d1ad203b",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.721+02:00",
"till_date": "2019-10-11T11:51:24.721+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.723+02:00",
"update_date": null
},
{
"id": "e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.849+02:00",
"till_date": "2019-10-11T11:51:24.849+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:25.212+02:00",
"update_date": null
},
{
"id": "70f6de4d-3a17-4688-b635-b8965e85be43",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.352+02:00",
"till_date": "2019-10-11T11:51:26.352+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.354+02:00",
"update_date": null
},
{
"id": "0e42478b-da36-4096-afad-d8c2a7685ccd",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.488+02:00",
"till_date": "2019-10-11T11:51:26.488+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.49+02:00",
"update_date": null
},
{
"id": "0313994c-db52-42d6-b059-2ca13afdd5d8",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.622+02:00",
"till_date": "2019-10-11T11:51:26.622+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.624+02:00",
"update_date": null
},
{
"id": "9cb66b4c-31d8-40dc-8c5b-9d243c2bb974",
"value": "100150",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.754+02:00",
"till_date": "2019-10-11T11:51:26.754+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.757+02:00",
"update_date": null
},
{
"id": "6e626fdb-326d-4984-9585-7b64976be1a2",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.894+02:00",
"till_date": "2019-10-11T11:51:26.894+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.896+02:00",
"update_date": null
},
{
"id": "6869ae37-0200-40c2-85a5-d4412d81b62d",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:27.029+02:00",
"till_date": "2019-10-11T11:51:27.029+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:27.032+02:00",
"update_date": null
},
{
"id": "8a0770b9-f8b0-42de-90fe-3e6a6311818b",
"value": "100152.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.169+02:00",
"till_date": "2019-10-11T11:51:28.169+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.171+02:00",
"update_date": null
},
{
"id": "cf989dbb-2e73-4042-b339-b4dbc75b0a7c",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.294+02:00",
"till_date": "2019-10-11T11:51:28.294+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.296+02:00",
"update_date": null
},
{
"id": "53a2d8fb-3b15-48a2-a277-1b821adba088",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.426+02:00",
"till_date": "2019-10-11T11:51:28.426+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.428+02:00",
"update_date": null
},
{
"id": "9de16913-67f3-4e0b-9976-ddadbd057bae",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:29.563+02:00",
"till_date": "2019-10-11T11:51:29.563+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:29.565+02:00",
"update_date": null
},
{
"id": "d8c255a5-c5bd-4e9e-9aec-d0e6ae795719",
"value": "100154.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:30.707+02:00",
"till_date": "2019-10-11T11:51:30.707+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:30.71+02:00",
"update_date": null
},
{
"id": "31ab31ac-e991-4081-8b4e-eba0f789b806",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:31.843+02:00",
"till_date": "2019-10-11T11:51:31.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:31.846+02:00",
"update_date": null
},
{
"id": "ed2ec0a9-9bc1-424a-9edf-85aad7a059ec",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:32.981+02:00",
"till_date": "2019-10-11T11:51:32.981+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:32.984+02:00",
"update_date": null
},
{
"id": "31e03c4c-49a1-4c0d-a750-16c09b75f96b",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:34.125+02:00",
"till_date": "2019-10-11T11:51:34.126+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:34.133+02:00",
"update_date": null "update_date": null
} }
] ]

View File

@ -0,0 +1,202 @@
[
{
"id": "140d6183-36c8-4903-a798-def4fcb3bd74",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:20.98+02:00",
"till_date": "2019-10-11T11:51:20.98+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:20.982+02:00",
"update_date": null
},
{
"id": "98102a36-a38e-4ccc-9886-c119a7971414",
"value": "100151.703125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:22.123+02:00",
"till_date": "2019-10-11T11:51:22.123+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:22.125+02:00",
"update_date": null
},
{
"id": "5ffe51ae-687c-47df-8936-7785de9beed7",
"value": "100150.8984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.261+02:00",
"till_date": "2019-10-11T11:51:23.262+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:23.263+02:00",
"update_date": null
},
{
"id": "e534cb23-c725-403b-b5c9-5455256a8662",
"value": "100153.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.739+02:00",
"till_date": "2019-10-11T11:51:23.739+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.594+02:00",
"update_date": null
},
{
"id": "e3c2a10b-373f-43d5-b02c-b381d1ad203b",
"value": "100149.296875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.721+02:00",
"till_date": "2019-10-11T11:51:24.721+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.723+02:00",
"update_date": null
},
{
"id": "e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94",
"value": "100150.796875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.849+02:00",
"till_date": "2019-10-11T11:51:24.849+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:25.212+02:00",
"update_date": null
},
{
"id": "70f6de4d-3a17-4688-b635-b8965e85be43",
"value": "100149.6015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.352+02:00",
"till_date": "2019-10-11T11:51:26.352+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.354+02:00",
"update_date": null
},
{
"id": "0e42478b-da36-4096-afad-d8c2a7685ccd",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.488+02:00",
"till_date": "2019-10-11T11:51:26.488+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.49+02:00",
"update_date": null
},
{
"id": "0313994c-db52-42d6-b059-2ca13afdd5d8",
"value": "100151.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.622+02:00",
"till_date": "2019-10-11T11:51:26.622+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.624+02:00",
"update_date": null
},
{
"id": "9cb66b4c-31d8-40dc-8c5b-9d243c2bb974",
"value": "100150.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.754+02:00",
"till_date": "2019-10-11T11:51:26.754+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.757+02:00",
"update_date": null
},
{
"id": "6e626fdb-326d-4984-9585-7b64976be1a2",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.894+02:00",
"till_date": "2019-10-11T11:51:26.894+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.896+02:00",
"update_date": null
},
{
"id": "6869ae37-0200-40c2-85a5-d4412d81b62d",
"value": "100154.1015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:27.029+02:00",
"till_date": "2019-10-11T11:51:27.029+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:27.032+02:00",
"update_date": null
},
{
"id": "8a0770b9-f8b0-42de-90fe-3e6a6311818b",
"value": "100152.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.169+02:00",
"till_date": "2019-10-11T11:51:28.169+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.171+02:00",
"update_date": null
},
{
"id": "cf989dbb-2e73-4042-b339-b4dbc75b0a7c",
"value": "100151.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.294+02:00",
"till_date": "2019-10-11T11:51:28.294+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.296+02:00",
"update_date": null
},
{
"id": "53a2d8fb-3b15-48a2-a277-1b821adba088",
"value": "100151.1015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.426+02:00",
"till_date": "2019-10-11T11:51:28.426+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.428+02:00",
"update_date": null
},
{
"id": "9de16913-67f3-4e0b-9976-ddadbd057bae",
"value": "100153.8984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:29.563+02:00",
"till_date": "2019-10-11T11:51:29.563+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:29.565+02:00",
"update_date": null
},
{
"id": "d8c255a5-c5bd-4e9e-9aec-d0e6ae795719",
"value": "100154.6015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:30.707+02:00",
"till_date": "2019-10-11T11:51:30.707+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:30.71+02:00",
"update_date": null
},
{
"id": "31ab31ac-e991-4081-8b4e-eba0f789b806",
"value": "100153.796875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:31.843+02:00",
"till_date": "2019-10-11T11:51:31.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:31.846+02:00",
"update_date": null
},
{
"id": "ed2ec0a9-9bc1-424a-9edf-85aad7a059ec",
"value": "100150.703125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:32.981+02:00",
"till_date": "2019-10-11T11:51:32.981+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:32.984+02:00",
"update_date": null
},
{
"id": "31e03c4c-49a1-4c0d-a750-16c09b75f96b",
"value": "100151.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:34.125+02:00",
"till_date": "2019-10-11T11:51:34.126+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:34.133+02:00",
"update_date": null
}
]

View File

@ -0,0 +1,192 @@
[
{
"id": "140d6183-36c8-4903-a798-def4fcb3bd74",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:20.98+02:00",
"till_date": "2019-10-11T11:51:20.98+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:20.982+02:00",
"update_date": null
},
{
"id": "98102a36-a38e-4ccc-9886-c119a7971414",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:22.123+02:00",
"till_date": "2019-10-11T11:51:22.123+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:22.125+02:00",
"update_date": null
},
{
"id": "5ffe51ae-687c-47df-8936-7785de9beed7",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.261+02:00",
"till_date": "2019-10-11T11:51:23.262+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:23.263+02:00",
"update_date": null
},
{
"id": "e534cb23-c725-403b-b5c9-5455256a8662",
"value": "100153",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:23.739+02:00",
"till_date": "2019-10-11T11:51:23.739+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.594+02:00",
"update_date": null
},
{
"id": "e3c2a10b-373f-43d5-b02c-b381d1ad203b",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.721+02:00",
"till_date": "2019-10-11T11:51:24.721+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:24.723+02:00",
"update_date": null
},
{
"id": "e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:24.849+02:00",
"till_date": "2019-10-11T11:51:24.849+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:25.212+02:00",
"update_date": null
},
{
"id": "70f6de4d-3a17-4688-b635-b8965e85be43",
"value": "100149.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.352+02:00",
"till_date": "2019-10-11T11:51:26.488+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.354+02:00",
"update_date": "2019-10-11T11:51:35.275+02:00"
},
{
"id": "0313994c-db52-42d6-b059-2ca13afdd5d8",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.622+02:00",
"till_date": "2019-10-11T11:51:26.622+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.624+02:00",
"update_date": null
},
{
"id": "9cb66b4c-31d8-40dc-8c5b-9d243c2bb974",
"value": "100150",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.754+02:00",
"till_date": "2019-10-11T11:51:26.754+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.757+02:00",
"update_date": null
},
{
"id": "6e626fdb-326d-4984-9585-7b64976be1a2",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:26.894+02:00",
"till_date": "2019-10-11T11:51:26.894+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:26.896+02:00",
"update_date": null
},
{
"id": "6869ae37-0200-40c2-85a5-d4412d81b62d",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:27.029+02:00",
"till_date": "2019-10-11T11:51:27.029+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:27.032+02:00",
"update_date": null
},
{
"id": "8a0770b9-f8b0-42de-90fe-3e6a6311818b",
"value": "100152.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.169+02:00",
"till_date": "2019-10-11T11:51:28.169+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.171+02:00",
"update_date": null
},
{
"id": "cf989dbb-2e73-4042-b339-b4dbc75b0a7c",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.294+02:00",
"till_date": "2019-10-11T11:51:28.294+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.296+02:00",
"update_date": null
},
{
"id": "53a2d8fb-3b15-48a2-a277-1b821adba088",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.426+02:00",
"till_date": "2019-10-11T11:51:28.426+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.428+02:00",
"update_date": null
},
{
"id": "9de16913-67f3-4e0b-9976-ddadbd057bae",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:29.563+02:00",
"till_date": "2019-10-11T11:51:29.563+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:29.565+02:00",
"update_date": null
},
{
"id": "d8c255a5-c5bd-4e9e-9aec-d0e6ae795719",
"value": "100154.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:30.707+02:00",
"till_date": "2019-10-11T11:51:30.707+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:30.71+02:00",
"update_date": null
},
{
"id": "31ab31ac-e991-4081-8b4e-eba0f789b806",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:31.843+02:00",
"till_date": "2019-10-11T11:51:31.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:31.846+02:00",
"update_date": null
},
{
"id": "ed2ec0a9-9bc1-424a-9edf-85aad7a059ec",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:32.981+02:00",
"till_date": "2019-10-11T11:51:32.981+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:32.984+02:00",
"update_date": null
},
{
"id": "31e03c4c-49a1-4c0d-a750-16c09b75f96b",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:34.125+02:00",
"till_date": "2019-10-11T11:51:34.126+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:34.133+02:00",
"update_date": null
}
]

View File

@ -1,112 +1,202 @@
[ [
{ {
"id": "c18c918e-180b-40ea-8509-b37a2d19c1b8", "id": "140d6183-36c8-4903-a798-def4fcb3bd74",
"value": "98527.1015625", "value": "100150.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:29:56.579+02:00", "from_date": "2019-10-11T11:51:20.98+02:00",
"till_date": "2019-09-29T19:29:56.579+02:00", "till_date": "2019-10-11T11:51:20.98+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:20.982+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "31269000-f855-472c-b607-5ef7dbcc2d3b", "id": "98102a36-a38e-4ccc-9886-c119a7971414",
"value": "98531.296875", "value": "100151.703125",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:29:58.02+02:00", "from_date": "2019-10-11T11:51:22.123+02:00",
"till_date": "2019-09-29T19:29:58.02+02:00", "till_date": "2019-10-11T11:51:22.123+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:22.125+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "7df14e44-185e-43a4-ba67-c86561bf19a0", "id": "5ffe51ae-687c-47df-8936-7785de9beed7",
"value": "98526.8984375", "value": "100150.8984375",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:29:58.886+02:00", "from_date": "2019-10-11T11:51:23.261+02:00",
"till_date": "2019-09-29T19:29:58.886+02:00", "till_date": "2019-10-11T11:51:23.262+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:23.263+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "e63f2d08-cbbe-43c6-80f6-70e504aebce5", "id": "e534cb23-c725-403b-b5c9-5455256a8662",
"value": "98530.5", "value": "100153.203125",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:29:59.657+02:00", "from_date": "2019-10-11T11:51:23.739+02:00",
"till_date": "2019-09-29T19:29:59.658+02:00", "till_date": "2019-10-11T11:51:23.739+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:24.594+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c", "id": "e3c2a10b-373f-43d5-b02c-b381d1ad203b",
"value": "98529.796875", "value": "100149.296875",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:00.301+02:00", "from_date": "2019-10-11T11:51:24.721+02:00",
"till_date": "2019-09-29T19:30:00.302+02:00", "till_date": "2019-10-11T11:51:24.721+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:24.723+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "b002af5d-3ef0-4608-b6c6-2745be36c7f0", "id": "e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94",
"value": "98530.1015625", "value": "100150.796875",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:00.878+02:00", "from_date": "2019-10-11T11:51:24.849+02:00",
"till_date": "2019-09-29T19:30:00.879+02:00", "till_date": "2019-10-11T11:51:24.849+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:25.212+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "e0753df7-865d-41ec-a2fc-58692c0e6a12", "id": "70f6de4d-3a17-4688-b635-b8965e85be43",
"value": "98530.3984375", "value": "100149.6015625",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:01.513+02:00", "from_date": "2019-10-11T11:51:26.352+02:00",
"till_date": "2019-09-29T19:30:01.513+02:00", "till_date": "2019-10-11T11:51:26.352+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:26.354+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "a46d74d4-dce8-497d-a08a-a609d2ed1238", "id": "0e42478b-da36-4096-afad-d8c2a7685ccd",
"value": "98532.5", "value": "100149.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:02.095+02:00", "from_date": "2019-10-11T11:51:26.488+02:00",
"till_date": "2019-09-29T19:30:02.095+02:00", "till_date": "2019-10-11T11:51:26.488+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:26.49+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "2a17ada0-caad-42d3-b12e-9ef432d79e59", "id": "0313994c-db52-42d6-b059-2ca13afdd5d8",
"value": "98532.203125", "value": "100151.3984375",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:02.643+02:00", "from_date": "2019-10-11T11:51:26.622+02:00",
"till_date": "2019-09-29T19:30:02.643+02:00", "till_date": "2019-10-11T11:51:26.622+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:26.624+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "f83d1000-9fe5-4ced-9c10-587525b2a9e7", "id": "9cb66b4c-31d8-40dc-8c5b-9d243c2bb974",
"value": "98528.296875", "value": "100150.203125",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:03.26+02:00", "from_date": "2019-10-11T11:51:26.754+02:00",
"till_date": "2019-09-29T19:30:03.26+02:00", "till_date": "2019-10-11T11:51:26.754+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.925+02:00", "creation_date": "2019-10-11T11:51:26.757+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "e2d50392-2d67-4324-add5-dd5c566ba826", "id": "6e626fdb-326d-4984-9585-7b64976be1a2",
"value": "98532.796875", "value": "100150.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:03.835+02:00", "from_date": "2019-10-11T11:51:26.894+02:00",
"till_date": "2019-09-29T19:30:03.835+02:00", "till_date": "2019-10-11T11:51:26.894+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.925+02:00", "creation_date": "2019-10-11T11:51:26.896+02:00",
"update_date": null
},
{
"id": "6869ae37-0200-40c2-85a5-d4412d81b62d",
"value": "100154.1015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:27.029+02:00",
"till_date": "2019-10-11T11:51:27.029+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:27.032+02:00",
"update_date": null
},
{
"id": "8a0770b9-f8b0-42de-90fe-3e6a6311818b",
"value": "100152.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.169+02:00",
"till_date": "2019-10-11T11:51:28.169+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.171+02:00",
"update_date": null
},
{
"id": "cf989dbb-2e73-4042-b339-b4dbc75b0a7c",
"value": "100151.3984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.294+02:00",
"till_date": "2019-10-11T11:51:28.294+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.296+02:00",
"update_date": null
},
{
"id": "53a2d8fb-3b15-48a2-a277-1b821adba088",
"value": "100151.1015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.426+02:00",
"till_date": "2019-10-11T11:51:28.426+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.428+02:00",
"update_date": null
},
{
"id": "9de16913-67f3-4e0b-9976-ddadbd057bae",
"value": "100153.8984375",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:29.563+02:00",
"till_date": "2019-10-11T11:51:29.563+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:29.565+02:00",
"update_date": null
},
{
"id": "d8c255a5-c5bd-4e9e-9aec-d0e6ae795719",
"value": "100154.6015625",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:30.707+02:00",
"till_date": "2019-10-11T11:51:30.707+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:30.71+02:00",
"update_date": null
},
{
"id": "31ab31ac-e991-4081-8b4e-eba0f789b806",
"value": "100153.796875",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:31.843+02:00",
"till_date": "2019-10-11T11:51:31.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:31.846+02:00",
"update_date": null
},
{
"id": "ed2ec0a9-9bc1-424a-9edf-85aad7a059ec",
"value": "100150.703125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:32.981+02:00",
"till_date": "2019-10-11T11:51:32.981+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:32.984+02:00",
"update_date": null
},
{
"id": "31e03c4c-49a1-4c0d-a750-16c09b75f96b",
"value": "100151.203125",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:34.125+02:00",
"till_date": "2019-10-11T11:51:34.126+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:34.133+02:00",
"update_date": null "update_date": null
} }
] ]

View File

@ -1,112 +1,202 @@
[ [
{ {
"id": "c18c918e-180b-40ea-8509-b37a2d19c1b8", "id": "140d6183-36c8-4903-a798-def4fcb3bd74",
"value": "98527.101", "value": "100150.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:29:56.579+02:00", "from_date": "2019-10-11T11:51:20.98+02:00",
"till_date": "2019-09-29T19:29:56.579+02:00", "till_date": "2019-10-11T11:51:20.98+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:20.982+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "31269000-f855-472c-b607-5ef7dbcc2d3b", "id": "98102a36-a38e-4ccc-9886-c119a7971414",
"value": "98531.296", "value": "100151.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:29:58.02+02:00", "from_date": "2019-10-11T11:51:22.123+02:00",
"till_date": "2019-09-29T19:29:58.02+02:00", "till_date": "2019-10-11T11:51:22.123+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:22.125+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "7df14e44-185e-43a4-ba67-c86561bf19a0", "id": "5ffe51ae-687c-47df-8936-7785de9beed7",
"value": "98526.898", "value": "100151",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:29:58.886+02:00", "from_date": "2019-10-11T11:51:23.261+02:00",
"till_date": "2019-09-29T19:29:58.886+02:00", "till_date": "2019-10-11T11:51:23.262+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:23.263+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "e63f2d08-cbbe-43c6-80f6-70e504aebce5", "id": "e534cb23-c725-403b-b5c9-5455256a8662",
"value": "98530.5", "value": "100153",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:29:59.657+02:00", "from_date": "2019-10-11T11:51:23.739+02:00",
"till_date": "2019-09-29T19:29:59.658+02:00", "till_date": "2019-10-11T11:51:23.739+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:24.594+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c", "id": "e3c2a10b-373f-43d5-b02c-b381d1ad203b",
"value": "98529.796", "value": "100149.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:00.301+02:00", "from_date": "2019-10-11T11:51:24.721+02:00",
"till_date": "2019-09-29T19:30:00.302+02:00", "till_date": "2019-10-11T11:51:24.721+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:24.723+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "b002af5d-3ef0-4608-b6c6-2745be36c7f0", "id": "e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94",
"value": "98530.101", "value": "100151",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:00.878+02:00", "from_date": "2019-10-11T11:51:24.849+02:00",
"till_date": "2019-09-29T19:30:00.879+02:00", "till_date": "2019-10-11T11:51:24.849+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:25.212+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "e0753df7-865d-41ec-a2fc-58692c0e6a12", "id": "70f6de4d-3a17-4688-b635-b8965e85be43",
"value": "98530.398", "value": "100149.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:01.513+02:00", "from_date": "2019-10-11T11:51:26.352+02:00",
"till_date": "2019-09-29T19:30:01.513+02:00", "till_date": "2019-10-11T11:51:26.352+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:26.354+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "a46d74d4-dce8-497d-a08a-a609d2ed1238", "id": "0e42478b-da36-4096-afad-d8c2a7685ccd",
"value": "98532.5", "value": "100149.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:02.095+02:00", "from_date": "2019-10-11T11:51:26.488+02:00",
"till_date": "2019-09-29T19:30:02.095+02:00", "till_date": "2019-10-11T11:51:26.488+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:26.49+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "2a17ada0-caad-42d3-b12e-9ef432d79e59", "id": "0313994c-db52-42d6-b059-2ca13afdd5d8",
"value": "98532.203", "value": "100151.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:02.643+02:00", "from_date": "2019-10-11T11:51:26.622+02:00",
"till_date": "2019-09-29T19:30:02.643+02:00", "till_date": "2019-10-11T11:51:26.622+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.924+02:00", "creation_date": "2019-10-11T11:51:26.624+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "f83d1000-9fe5-4ced-9c10-587525b2a9e7", "id": "9cb66b4c-31d8-40dc-8c5b-9d243c2bb974",
"value": "98528.296", "value": "100150",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:03.26+02:00", "from_date": "2019-10-11T11:51:26.754+02:00",
"till_date": "2019-09-29T19:30:03.26+02:00", "till_date": "2019-10-11T11:51:26.754+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.925+02:00", "creation_date": "2019-10-11T11:51:26.757+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "e2d50392-2d67-4324-add5-dd5c566ba826", "id": "6e626fdb-326d-4984-9585-7b64976be1a2",
"value": "98532.796", "value": "100150.5",
"value_type": "pressure", "value_type": "pressure",
"from_date": "2019-09-29T19:30:03.835+02:00", "from_date": "2019-10-11T11:51:26.894+02:00",
"till_date": "2019-09-29T19:30:03.835+02:00", "till_date": "2019-10-11T11:51:26.894+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:01.925+02:00", "creation_date": "2019-10-11T11:51:26.896+02:00",
"update_date": null
},
{
"id": "6869ae37-0200-40c2-85a5-d4412d81b62d",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:27.029+02:00",
"till_date": "2019-10-11T11:51:27.029+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:27.032+02:00",
"update_date": null
},
{
"id": "8a0770b9-f8b0-42de-90fe-3e6a6311818b",
"value": "100152.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.169+02:00",
"till_date": "2019-10-11T11:51:28.169+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.171+02:00",
"update_date": null
},
{
"id": "cf989dbb-2e73-4042-b339-b4dbc75b0a7c",
"value": "100151.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.294+02:00",
"till_date": "2019-10-11T11:51:28.294+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.296+02:00",
"update_date": null
},
{
"id": "53a2d8fb-3b15-48a2-a277-1b821adba088",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:28.426+02:00",
"till_date": "2019-10-11T11:51:28.426+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:28.428+02:00",
"update_date": null
},
{
"id": "9de16913-67f3-4e0b-9976-ddadbd057bae",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:29.563+02:00",
"till_date": "2019-10-11T11:51:29.563+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:29.565+02:00",
"update_date": null
},
{
"id": "d8c255a5-c5bd-4e9e-9aec-d0e6ae795719",
"value": "100154.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:30.707+02:00",
"till_date": "2019-10-11T11:51:30.707+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:30.71+02:00",
"update_date": null
},
{
"id": "31ab31ac-e991-4081-8b4e-eba0f789b806",
"value": "100154",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:31.843+02:00",
"till_date": "2019-10-11T11:51:31.843+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:31.846+02:00",
"update_date": null
},
{
"id": "ed2ec0a9-9bc1-424a-9edf-85aad7a059ec",
"value": "100150.5",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:32.981+02:00",
"till_date": "2019-10-11T11:51:32.981+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:32.984+02:00",
"update_date": null
},
{
"id": "31e03c4c-49a1-4c0d-a750-16c09b75f96b",
"value": "100151",
"value_type": "pressure",
"from_date": "2019-10-11T11:51:34.125+02:00",
"till_date": "2019-10-11T11:51:34.126+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:34.133+02:00",
"update_date": null "update_date": null
} }
] ]

View File

@ -0,0 +1,122 @@
[
{
"id": "2029cc8c-56cf-4cd1-adf8-06e768fbad29",
"value": "20.90999984741211",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:43.317+02:00",
"till_date": "2019-10-11T11:50:43.317+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:43.319+02:00",
"update_date": null
},
{
"id": "a588cc90-4dca-4a4e-be81-2d20b9f64458",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:44.459+02:00",
"till_date": "2019-10-11T11:50:47.745+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:44.473+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
},
{
"id": "88f5c095-8e88-4c80-b66a-cf154919afa8",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:49.53+02:00",
"till_date": "2019-10-11T11:50:49.53+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:50.018+02:00",
"update_date": null
},
{
"id": "7c3b7eac-3b43-4461-b204-d74c2bde3a08",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:51.187+02:00",
"till_date": "2019-10-11T11:50:53.652+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:51.189+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
},
{
"id": "acb55d68-d909-41ba-a445-8ef9eab0c7aa",
"value": "20.950000762939453",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:53.788+02:00",
"till_date": "2019-10-11T11:50:53.789+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:53.79+02:00",
"update_date": null
},
{
"id": "6563ff1e-371b-46a2-aca8-cc49b418bf61",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:54.929+02:00",
"till_date": "2019-10-11T11:50:55.536+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.405+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
},
{
"id": "157eda79-3283-4cda-a21d-db0aa2da8548",
"value": "20.959999084472656",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.674+02:00",
"till_date": "2019-10-11T11:50:55.674+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.677+02:00",
"update_date": null
},
{
"id": "c7d8d6ce-59d9-4448-9934-69cebc071cf6",
"value": "20.940000534057617",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:56.817+02:00",
"till_date": "2019-10-11T11:50:56.817+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:56.82+02:00",
"update_date": null
},
{
"id": "07d08037-7267-44ab-8d90-878271809a4c",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:57.959+02:00",
"till_date": "2019-10-11T11:50:59.1+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:57.962+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
},
{
"id": "0b865113-d0f4-42f4-af3d-50e60edcc523",
"value": "20.959999084472656",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.238+02:00",
"till_date": "2019-10-11T11:50:59.238+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.241+02:00",
"update_date": null
},
{
"id": "c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2",
"value": "20.979999542236328",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.368+02:00",
"till_date": "2019-10-11T11:50:59.368+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.371+02:00",
"update_date": null
},
{
"id": "8d98e723-7a07-4ccf-b3bc-7a2653952b8b",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:00.509+02:00",
"till_date": "2019-10-11T11:51:01.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:00.516+02:00",
"update_date": "2019-10-11T11:51:01.762+02:00"
}
]

View File

@ -0,0 +1,12 @@
[
{
"id": "2029cc8c-56cf-4cd1-adf8-06e768fbad29",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:43.317+02:00",
"till_date": "2019-10-11T11:51:01.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:43.319+02:00",
"update_date": "2019-10-11T11:51:01.795+02:00"
}
]

View File

@ -1,112 +1,202 @@
[ [
{ {
"id": "63d546fe-4e27-4816-8e8c-cd16026cf079", "id": "2029cc8c-56cf-4cd1-adf8-06e768fbad29",
"value": "22.040000915527344", "value": "20.90999984741211",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:12.887+02:00", "from_date": "2019-10-11T11:50:43.317+02:00",
"till_date": "2019-09-29T19:26:12.887+02:00", "till_date": "2019-10-11T11:50:43.317+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.352+02:00", "creation_date": "2019-10-11T11:50:43.319+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ac3dddda-a669-4215-8174-42eaa3af741b", "id": "a588cc90-4dca-4a4e-be81-2d20b9f64458",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:13.312+02:00", "from_date": "2019-10-11T11:50:44.459+02:00",
"till_date": "2019-09-29T19:26:13.312+02:00", "till_date": "2019-10-11T11:50:44.459+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:44.473+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae", "id": "1ebb60de-6066-4731-9f55-ee1c51748b7f",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:13.848+02:00", "from_date": "2019-10-11T11:50:45.614+02:00",
"till_date": "2019-09-29T19:26:13.848+02:00", "till_date": "2019-10-11T11:50:45.614+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:45.615+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "2ebc3339-974e-4a8f-bec1-531f9045ffe6", "id": "6cbc586f-a5c9-4296-b3b2-200afae12059",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:14.381+02:00", "from_date": "2019-10-11T11:50:46.776+02:00",
"till_date": "2019-09-29T19:26:14.382+02:00", "till_date": "2019-10-11T11:50:46.776+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:47.134+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "dfa35a46-803b-4c21-9cbc-092efc8d3646", "id": "14e03e32-f214-4f61-97b0-8e021c47bead",
"value": "22.059999465942383", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:14.923+02:00", "from_date": "2019-10-11T11:50:47.745+02:00",
"till_date": "2019-09-29T19:26:14.923+02:00", "till_date": "2019-10-11T11:50:47.745+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:47.747+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ce284f94-6032-467a-804d-34f7dc47ffcb", "id": "88f5c095-8e88-4c80-b66a-cf154919afa8",
"value": "22.049999237060547", "value": "20.93000030517578",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:15.472+02:00", "from_date": "2019-10-11T11:50:49.53+02:00",
"till_date": "2019-09-29T19:26:15.472+02:00", "till_date": "2019-10-11T11:50:49.53+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:50.018+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9926b8e7-2092-48c7-9906-856af2fa7251", "id": "7c3b7eac-3b43-4461-b204-d74c2bde3a08",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:16.001+02:00", "from_date": "2019-10-11T11:50:51.187+02:00",
"till_date": "2019-09-29T19:26:16.001+02:00", "till_date": "2019-10-11T11:50:51.187+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:51.189+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9170f2e0-c6aa-4c75-95dc-d1f129df541f", "id": "3caf0b08-38d5-4536-baa5-86d4d75e359d",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:16.591+02:00", "from_date": "2019-10-11T11:50:52.508+02:00",
"till_date": "2019-09-29T19:26:16.591+02:00", "till_date": "2019-10-11T11:50:52.508+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:52.51+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ebce8428-d414-4ed2-98c1-2f3b8b45dd0b", "id": "4b8595bf-3624-4963-b796-efc648515cd9",
"value": "22.049999237060547", "value": "20.920000076293945",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:17.124+02:00", "from_date": "2019-10-11T11:50:53.652+02:00",
"till_date": "2019-09-29T19:26:17.124+02:00", "till_date": "2019-10-11T11:50:53.652+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:53.654+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "58e55045-33c6-4122-a2d9-b5bc12059b77", "id": "acb55d68-d909-41ba-a445-8ef9eab0c7aa",
"value": "22.059999465942383", "value": "20.950000762939453",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:17.679+02:00", "from_date": "2019-10-11T11:50:53.788+02:00",
"till_date": "2019-09-29T19:26:17.679+02:00", "till_date": "2019-10-11T11:50:53.789+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:53.79+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "1df7d65b-149c-46f5-a377-5d9ad399f471", "id": "6563ff1e-371b-46a2-aca8-cc49b418bf61",
"value": "22.049999237060547", "value": "20.93000030517578",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:18.291+02:00", "from_date": "2019-10-11T11:50:54.929+02:00",
"till_date": "2019-09-29T19:26:18.291+02:00", "till_date": "2019-10-11T11:50:54.93+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:55.405+02:00",
"update_date": null
},
{
"id": "a64f57c4-b95c-45b1-b78a-a6be263abb85",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.536+02:00",
"till_date": "2019-10-11T11:50:55.536+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.538+02:00",
"update_date": null
},
{
"id": "157eda79-3283-4cda-a21d-db0aa2da8548",
"value": "20.959999084472656",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.674+02:00",
"till_date": "2019-10-11T11:50:55.674+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.677+02:00",
"update_date": null
},
{
"id": "c7d8d6ce-59d9-4448-9934-69cebc071cf6",
"value": "20.940000534057617",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:56.817+02:00",
"till_date": "2019-10-11T11:50:56.817+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:56.82+02:00",
"update_date": null
},
{
"id": "07d08037-7267-44ab-8d90-878271809a4c",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:57.959+02:00",
"till_date": "2019-10-11T11:50:57.96+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:57.962+02:00",
"update_date": null
},
{
"id": "bf2e981f-8bad-466e-9a12-c1a5d9b64399",
"value": "20.93000030517578",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.1+02:00",
"till_date": "2019-10-11T11:50:59.1+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.103+02:00",
"update_date": null
},
{
"id": "0b865113-d0f4-42f4-af3d-50e60edcc523",
"value": "20.959999084472656",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.238+02:00",
"till_date": "2019-10-11T11:50:59.238+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.241+02:00",
"update_date": null
},
{
"id": "c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2",
"value": "20.979999542236328",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.368+02:00",
"till_date": "2019-10-11T11:50:59.368+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.371+02:00",
"update_date": null
},
{
"id": "8d98e723-7a07-4ccf-b3bc-7a2653952b8b",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:00.509+02:00",
"till_date": "2019-10-11T11:51:00.51+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:00.516+02:00",
"update_date": null
},
{
"id": "f61b7bfb-14eb-4b43-a7b6-47b61fa46dda",
"value": "20.920000076293945",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:01.658+02:00",
"till_date": "2019-10-11T11:51:01.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.661+02:00",
"update_date": null "update_date": null
} }
] ]

View File

@ -1,112 +1,202 @@
[ [
{ {
"id": "63d546fe-4e27-4816-8e8c-cd16026cf079", "id": "2029cc8c-56cf-4cd1-adf8-06e768fbad29",
"value": "22.040", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:12.887+02:00", "from_date": "2019-10-11T11:50:43.317+02:00",
"till_date": "2019-09-29T19:26:12.887+02:00", "till_date": "2019-10-11T11:50:43.317+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.352+02:00", "creation_date": "2019-10-11T11:50:43.319+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ac3dddda-a669-4215-8174-42eaa3af741b", "id": "a588cc90-4dca-4a4e-be81-2d20b9f64458",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:13.312+02:00", "from_date": "2019-10-11T11:50:44.459+02:00",
"till_date": "2019-09-29T19:26:13.312+02:00", "till_date": "2019-10-11T11:50:44.459+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:44.473+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae", "id": "1ebb60de-6066-4731-9f55-ee1c51748b7f",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:13.848+02:00", "from_date": "2019-10-11T11:50:45.614+02:00",
"till_date": "2019-09-29T19:26:13.848+02:00", "till_date": "2019-10-11T11:50:45.614+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:45.615+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "2ebc3339-974e-4a8f-bec1-531f9045ffe6", "id": "6cbc586f-a5c9-4296-b3b2-200afae12059",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:14.381+02:00", "from_date": "2019-10-11T11:50:46.776+02:00",
"till_date": "2019-09-29T19:26:14.382+02:00", "till_date": "2019-10-11T11:50:46.776+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:47.134+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "dfa35a46-803b-4c21-9cbc-092efc8d3646", "id": "14e03e32-f214-4f61-97b0-8e021c47bead",
"value": "22.059", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:14.923+02:00", "from_date": "2019-10-11T11:50:47.745+02:00",
"till_date": "2019-09-29T19:26:14.923+02:00", "till_date": "2019-10-11T11:50:47.745+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:47.747+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ce284f94-6032-467a-804d-34f7dc47ffcb", "id": "88f5c095-8e88-4c80-b66a-cf154919afa8",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:15.472+02:00", "from_date": "2019-10-11T11:50:49.53+02:00",
"till_date": "2019-09-29T19:26:15.472+02:00", "till_date": "2019-10-11T11:50:49.53+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:50.018+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9926b8e7-2092-48c7-9906-856af2fa7251", "id": "7c3b7eac-3b43-4461-b204-d74c2bde3a08",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:16.001+02:00", "from_date": "2019-10-11T11:50:51.187+02:00",
"till_date": "2019-09-29T19:26:16.001+02:00", "till_date": "2019-10-11T11:50:51.187+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:51.189+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "9170f2e0-c6aa-4c75-95dc-d1f129df541f", "id": "3caf0b08-38d5-4536-baa5-86d4d75e359d",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:16.591+02:00", "from_date": "2019-10-11T11:50:52.508+02:00",
"till_date": "2019-09-29T19:26:16.591+02:00", "till_date": "2019-10-11T11:50:52.508+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:52.51+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "ebce8428-d414-4ed2-98c1-2f3b8b45dd0b", "id": "4b8595bf-3624-4963-b796-efc648515cd9",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:17.124+02:00", "from_date": "2019-10-11T11:50:53.652+02:00",
"till_date": "2019-09-29T19:26:17.124+02:00", "till_date": "2019-10-11T11:50:53.652+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:53.654+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "58e55045-33c6-4122-a2d9-b5bc12059b77", "id": "acb55d68-d909-41ba-a445-8ef9eab0c7aa",
"value": "22.059", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:17.679+02:00", "from_date": "2019-10-11T11:50:53.788+02:00",
"till_date": "2019-09-29T19:26:17.679+02:00", "till_date": "2019-10-11T11:50:53.789+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:53.79+02:00",
"update_date": null "update_date": null
}, },
{ {
"id": "1df7d65b-149c-46f5-a377-5d9ad399f471", "id": "6563ff1e-371b-46a2-aca8-cc49b418bf61",
"value": "22.049", "value": "21",
"value_type": "temperature", "value_type": "temperature",
"from_date": "2019-09-29T19:26:18.291+02:00", "from_date": "2019-10-11T11:50:54.929+02:00",
"till_date": "2019-09-29T19:26:18.291+02:00", "till_date": "2019-10-11T11:50:54.93+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6", "sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-09-29T19:44:02.353+02:00", "creation_date": "2019-10-11T11:50:55.405+02:00",
"update_date": null
},
{
"id": "a64f57c4-b95c-45b1-b78a-a6be263abb85",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.536+02:00",
"till_date": "2019-10-11T11:50:55.536+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.538+02:00",
"update_date": null
},
{
"id": "157eda79-3283-4cda-a21d-db0aa2da8548",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:55.674+02:00",
"till_date": "2019-10-11T11:50:55.674+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:55.677+02:00",
"update_date": null
},
{
"id": "c7d8d6ce-59d9-4448-9934-69cebc071cf6",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:56.817+02:00",
"till_date": "2019-10-11T11:50:56.817+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:56.82+02:00",
"update_date": null
},
{
"id": "07d08037-7267-44ab-8d90-878271809a4c",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:57.959+02:00",
"till_date": "2019-10-11T11:50:57.96+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:57.962+02:00",
"update_date": null
},
{
"id": "bf2e981f-8bad-466e-9a12-c1a5d9b64399",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.1+02:00",
"till_date": "2019-10-11T11:50:59.1+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.103+02:00",
"update_date": null
},
{
"id": "0b865113-d0f4-42f4-af3d-50e60edcc523",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.238+02:00",
"till_date": "2019-10-11T11:50:59.238+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.241+02:00",
"update_date": null
},
{
"id": "c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:50:59.368+02:00",
"till_date": "2019-10-11T11:50:59.368+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:50:59.371+02:00",
"update_date": null
},
{
"id": "8d98e723-7a07-4ccf-b3bc-7a2653952b8b",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:00.509+02:00",
"till_date": "2019-10-11T11:51:00.51+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:00.516+02:00",
"update_date": null
},
{
"id": "f61b7bfb-14eb-4b43-a7b6-47b61fa46dda",
"value": "21",
"value_type": "temperature",
"from_date": "2019-10-11T11:51:01.658+02:00",
"till_date": "2019-10-11T11:51:01.658+02:00",
"sensor_id": "d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6",
"creation_date": "2019-10-11T11:51:01.661+02:00",
"update_date": null "update_date": null
} }
] ]

View File

@ -0,0 +1,33 @@
#!/bin/bash
measuredValueTypes=("temperature" "humidity" "pressure")
fileExtentions=("csv" "json" "xml")
for t in ${measuredValueTypes[@]}; do
for i in $(seq 1 20); do
flucky ${t} read --compression=false --round=0
sleep $(shuf -i 0-1 -n 1)
done
for extension in ${fileExtentions[@]}; do
flucky convert --compression=false --round=0 logfile.csv golden${t}UncompressedNotRounded.${extension}
flucky convert --compression=true --round=0 logfile.csv golden${t}CompressedNotRounded.${extension}
flucky convert --compression=false --round=0.5 logfile.csv golden${t}UncompressedRounded.${extension}
flucky convert --compression=true --round=0.5 logfile.csv golden${t}CompressedRounded.${extension}
done;
rm logfile.csv
done
for extension in ${fileExtentions[@]}; do
for t in ${measuredValueTypes[@]}; do
cat golden${t}UncompressedNotRounded.${extension} >> goldenMeasuredValuesUncompressedNotRounded.${extension}
cat golden${t}CompressedNotRounded.${extension} >> goldenMeasuredValuesCompressedNotRounded.${extension}
cat golden${t}UncompressedRounded.${extension} >> goldenMeasuredValuesUncompressedRounded.${extension}
cat golden${t}CompressedRounded.${extension} >> goldenMeasuredValuesCompressedRounded.${extension}
done
done;
perl-rename 's/humidity/Humidities/g' *
perl-rename 's/pressure/Pressures/g' *
perl-rename 's/temperature/Temperatures/g' *

View File

@ -0,0 +1,166 @@
<measured_values>
<measured_value>
<id>0fc9c4bf-7e86-4cee-b99c-7642984b5fcd</id>
<value>50.8740234375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:01.969+02:00</from_date>
<till_date>2019-10-11T11:51:03.109+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.971+02:00</creation_date>
<update_date>2019-10-11T11:51:20.835+02:00</update_date>
</measured_value>
<measured_value>
<id>7b4f0fc3-ecec-4226-b621-49dd01cf9eb7</id>
<value>50.884765625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:04.251+02:00</from_date>
<till_date>2019-10-11T11:51:04.252+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:04.254+02:00</creation_date>
</measured_value>
<measured_value>
<id>72ccf0a7-e680-460c-a3b8-7d14f46b5b0c</id>
<value>50.861328125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:05.402+02:00</from_date>
<till_date>2019-10-11T11:51:05.403+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:05.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>6f5277d9-abe3-4e87-b0f1-e4320756bbac</id>
<value>50.8505859375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:06.551+02:00</from_date>
<till_date>2019-10-11T11:51:06.552+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:06.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>026370e8-2011-4bf0-8da9-ec4a9fe1ee19</id>
<value>50.7734375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:07.7+02:00</from_date>
<till_date>2019-10-11T11:51:07.7+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:07.702+02:00</creation_date>
</measured_value>
<measured_value>
<id>e96eff46-8322-424d-9a79-51c746124354</id>
<value>50.728515625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:08.843+02:00</from_date>
<till_date>2019-10-11T11:51:08.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:08.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>6beb6aee-6888-4f4a-82ff-5bf700a22b0a</id>
<value>50.67578125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:09.986+02:00</from_date>
<till_date>2019-10-11T11:51:09.986+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:09.989+02:00</creation_date>
</measured_value>
<measured_value>
<id>62a8f169-344d-4f9c-828a-7b4ea4261fad</id>
<value>50.6650390625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.129+02:00</from_date>
<till_date>2019-10-11T11:51:11.13+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.133+02:00</creation_date>
</measured_value>
<measured_value>
<id>b1d64d40-59d7-4093-ba1d-208d869c9aae</id>
<value>50.6884765625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.264+02:00</from_date>
<till_date>2019-10-11T11:51:11.265+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.267+02:00</creation_date>
</measured_value>
<measured_value>
<id>f98b69ee-bef9-4609-8bfa-82f11d7f51b6</id>
<value>50.76171875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:12.401+02:00</from_date>
<till_date>2019-10-11T11:51:12.402+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:12.41+02:00</creation_date>
</measured_value>
<measured_value>
<id>eab34e23-2b43-40c2-9d6e-90e72fa13db5</id>
<value>50.7373046875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:13.551+02:00</from_date>
<till_date>2019-10-11T11:51:13.551+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:13.554+02:00</creation_date>
</measured_value>
<measured_value>
<id>4659b946-8a40-4ba4-9888-6997bd1795f2</id>
<value>50.73828125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:14.695+02:00</from_date>
<till_date>2019-10-11T11:51:14.695+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:14.698+02:00</creation_date>
</measured_value>
<measured_value>
<id>a6552aff-724c-4339-810a-36d911ddaa58</id>
<value>50.6845703125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.839+02:00</from_date>
<till_date>2019-10-11T11:51:15.839+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.842+02:00</creation_date>
</measured_value>
<measured_value>
<id>c311cacd-e346-4b68-902b-400be0f8e02e</id>
<value>50.6767578125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.976+02:00</from_date>
<till_date>2019-10-11T11:51:15.977+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.98+02:00</creation_date>
</measured_value>
<measured_value>
<id>2d4db614-17f8-4ddd-ba08-e2a5f77d74ea</id>
<value>50.68359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.118+02:00</from_date>
<till_date>2019-10-11T11:51:17.118+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.121+02:00</creation_date>
</measured_value>
<measured_value>
<id>936d61e4-494e-4959-a39a-c1dbc4a7d162</id>
<value>50.685546875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.243+02:00</from_date>
<till_date>2019-10-11T11:51:17.244+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.247+02:00</creation_date>
</measured_value>
<measured_value>
<id>b913c9ca-4b5e-4c01-9aea-ee31d0d97977</id>
<value>50.6943359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:18.381+02:00</from_date>
<till_date>2019-10-11T11:51:19.529+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:18.385+02:00</creation_date>
<update_date>2019-10-11T11:51:20.835+02:00</update_date>
</measured_value>
<measured_value>
<id>d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312</id>
<value>50.7080078125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.664+02:00</from_date>
<till_date>2019-10-11T11:51:19.664+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.667+02:00</creation_date>
</measured_value>
</measured_values>

View File

@ -0,0 +1,41 @@
<measured_values>
<measured_value>
<id>0fc9c4bf-7e86-4cee-b99c-7642984b5fcd</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:01.969+02:00</from_date>
<till_date>2019-10-11T11:51:07.7+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.971+02:00</creation_date>
<update_date>2019-10-11T11:51:20.864+02:00</update_date>
</measured_value>
<measured_value>
<id>e96eff46-8322-424d-9a79-51c746124354</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:08.843+02:00</from_date>
<till_date>2019-10-11T11:51:11.265+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:08.846+02:00</creation_date>
<update_date>2019-10-11T11:51:20.864+02:00</update_date>
</measured_value>
<measured_value>
<id>f98b69ee-bef9-4609-8bfa-82f11d7f51b6</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:12.401+02:00</from_date>
<till_date>2019-10-11T11:51:12.402+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:12.41+02:00</creation_date>
</measured_value>
<measured_value>
<id>eab34e23-2b43-40c2-9d6e-90e72fa13db5</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:13.551+02:00</from_date>
<till_date>2019-10-11T11:51:19.664+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:13.554+02:00</creation_date>
<update_date>2019-10-11T11:51:20.864+02:00</update_date>
</measured_value>
</measured_values>

View File

@ -1,101 +1,182 @@
<measured_values> <measured_values>
<measured_value> <measured_value>
<id>7d3286c3-3f32-40e7-9656-f587de5d5341</id> <id>0fc9c4bf-7e86-4cee-b99c-7642984b5fcd</id>
<value>58.55859375</value> <value>50.8740234375</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:33.862+02:00</from_date> <from_date>2019-10-11T11:51:01.969+02:00</from_date>
<till_date>2019-09-29T19:32:33.862+02:00</till_date> <till_date>2019-10-11T11:51:01.969+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:01.971+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>9890f244-9854-4a78-826e-124dc7b179af</id> <id>45e8b20c-1ab0-4cf1-9ef1-aa82537557f6</id>
<value>58.55859375</value> <value>50.8740234375</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:35.521+02:00</from_date> <from_date>2019-10-11T11:51:03.109+02:00</from_date>
<till_date>2019-09-29T19:32:35.521+02:00</till_date> <till_date>2019-10-11T11:51:03.109+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:03.111+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>40124dc7-a6af-4864-8566-7c2925b4471b</id> <id>7b4f0fc3-ecec-4226-b621-49dd01cf9eb7</id>
<value>58.525390625</value> <value>50.884765625</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:36.186+02:00</from_date> <from_date>2019-10-11T11:51:04.251+02:00</from_date>
<till_date>2019-09-29T19:32:36.186+02:00</till_date> <till_date>2019-10-11T11:51:04.252+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:04.254+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>92bfde08-0f2a-4b6e-b227-44f341f35446</id> <id>72ccf0a7-e680-460c-a3b8-7d14f46b5b0c</id>
<value>58.5068359375</value> <value>50.861328125</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:36.881+02:00</from_date> <from_date>2019-10-11T11:51:05.402+02:00</from_date>
<till_date>2019-09-29T19:32:36.882+02:00</till_date> <till_date>2019-10-11T11:51:05.403+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:05.405+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>c22e278e-f6fb-4755-8bf3-7a7313816abf</id> <id>6f5277d9-abe3-4e87-b0f1-e4320756bbac</id>
<value>58.470703125</value> <value>50.8505859375</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:37.485+02:00</from_date> <from_date>2019-10-11T11:51:06.551+02:00</from_date>
<till_date>2019-09-29T19:32:37.485+02:00</till_date> <till_date>2019-10-11T11:51:06.552+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:06.565+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>c0468792-72c2-45f6-a9f4-c798f9307bc2</id> <id>026370e8-2011-4bf0-8da9-ec4a9fe1ee19</id>
<value>58.4384765625</value> <value>50.7734375</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:38.073+02:00</from_date> <from_date>2019-10-11T11:51:07.7+02:00</from_date>
<till_date>2019-09-29T19:32:38.073+02:00</till_date> <till_date>2019-10-11T11:51:07.7+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:07.702+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>9afab5be-7502-47fc-a5b2-cf8bd1a62054</id> <id>e96eff46-8322-424d-9a79-51c746124354</id>
<value>58.4384765625</value> <value>50.728515625</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:38.675+02:00</from_date> <from_date>2019-10-11T11:51:08.843+02:00</from_date>
<till_date>2019-09-29T19:32:38.676+02:00</till_date> <till_date>2019-10-11T11:51:08.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:08.846+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>3b8560f9-9536-47e3-839e-8351ffecbfcf</id> <id>6beb6aee-6888-4f4a-82ff-5bf700a22b0a</id>
<value>58.4384765625</value> <value>50.67578125</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:39.258+02:00</from_date> <from_date>2019-10-11T11:51:09.986+02:00</from_date>
<till_date>2019-09-29T19:32:39.259+02:00</till_date> <till_date>2019-10-11T11:51:09.986+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:09.989+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>4afcb00e-4035-443d-8495-535932d45623</id> <id>62a8f169-344d-4f9c-828a-7b4ea4261fad</id>
<value>58.4375</value> <value>50.6650390625</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:39.839+02:00</from_date> <from_date>2019-10-11T11:51:11.129+02:00</from_date>
<till_date>2019-09-29T19:32:39.839+02:00</till_date> <till_date>2019-10-11T11:51:11.13+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:11.133+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>132e91ec-9b06-4792-a8c0-b82ccdcbce16</id> <id>b1d64d40-59d7-4093-ba1d-208d869c9aae</id>
<value>58.447265625</value> <value>50.6884765625</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:40.503+02:00</from_date> <from_date>2019-10-11T11:51:11.264+02:00</from_date>
<till_date>2019-09-29T19:32:40.504+02:00</till_date> <till_date>2019-10-11T11:51:11.265+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:11.267+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>5aba6643-3fe3-422f-aa40-2d98591d9a82</id> <id>f98b69ee-bef9-4609-8bfa-82f11d7f51b6</id>
<value>58.46875</value> <value>50.76171875</value>
<value_type>humidity</value_type> <value_type>humidity</value_type>
<from_date>2019-09-29T19:32:41.187+02:00</from_date> <from_date>2019-10-11T11:51:12.401+02:00</from_date>
<till_date>2019-09-29T19:32:41.188+02:00</till_date> <till_date>2019-10-11T11:51:12.402+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.863+02:00</creation_date> <creation_date>2019-10-11T11:51:12.41+02:00</creation_date>
</measured_value>
<measured_value>
<id>eab34e23-2b43-40c2-9d6e-90e72fa13db5</id>
<value>50.7373046875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:13.551+02:00</from_date>
<till_date>2019-10-11T11:51:13.551+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:13.554+02:00</creation_date>
</measured_value>
<measured_value>
<id>4659b946-8a40-4ba4-9888-6997bd1795f2</id>
<value>50.73828125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:14.695+02:00</from_date>
<till_date>2019-10-11T11:51:14.695+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:14.698+02:00</creation_date>
</measured_value>
<measured_value>
<id>a6552aff-724c-4339-810a-36d911ddaa58</id>
<value>50.6845703125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.839+02:00</from_date>
<till_date>2019-10-11T11:51:15.839+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.842+02:00</creation_date>
</measured_value>
<measured_value>
<id>c311cacd-e346-4b68-902b-400be0f8e02e</id>
<value>50.6767578125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.976+02:00</from_date>
<till_date>2019-10-11T11:51:15.977+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.98+02:00</creation_date>
</measured_value>
<measured_value>
<id>2d4db614-17f8-4ddd-ba08-e2a5f77d74ea</id>
<value>50.68359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.118+02:00</from_date>
<till_date>2019-10-11T11:51:17.118+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.121+02:00</creation_date>
</measured_value>
<measured_value>
<id>936d61e4-494e-4959-a39a-c1dbc4a7d162</id>
<value>50.685546875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.243+02:00</from_date>
<till_date>2019-10-11T11:51:17.244+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.247+02:00</creation_date>
</measured_value>
<measured_value>
<id>b913c9ca-4b5e-4c01-9aea-ee31d0d97977</id>
<value>50.6943359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:18.381+02:00</from_date>
<till_date>2019-10-11T11:51:18.382+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:18.385+02:00</creation_date>
</measured_value>
<measured_value>
<id>1171d0dd-2173-4da2-b2c6-7f7daaad7cd1</id>
<value>50.6943359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.529+02:00</from_date>
<till_date>2019-10-11T11:51:19.529+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.532+02:00</creation_date>
</measured_value>
<measured_value>
<id>d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312</id>
<value>50.7080078125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.664+02:00</from_date>
<till_date>2019-10-11T11:51:19.664+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.667+02:00</creation_date>
</measured_value> </measured_value>
</measured_values> </measured_values>

View File

@ -0,0 +1,182 @@
<measured_values>
<measured_value>
<id>0fc9c4bf-7e86-4cee-b99c-7642984b5fcd</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:01.969+02:00</from_date>
<till_date>2019-10-11T11:51:01.969+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.971+02:00</creation_date>
</measured_value>
<measured_value>
<id>45e8b20c-1ab0-4cf1-9ef1-aa82537557f6</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:03.109+02:00</from_date>
<till_date>2019-10-11T11:51:03.109+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:03.111+02:00</creation_date>
</measured_value>
<measured_value>
<id>7b4f0fc3-ecec-4226-b621-49dd01cf9eb7</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:04.251+02:00</from_date>
<till_date>2019-10-11T11:51:04.252+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:04.254+02:00</creation_date>
</measured_value>
<measured_value>
<id>72ccf0a7-e680-460c-a3b8-7d14f46b5b0c</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:05.402+02:00</from_date>
<till_date>2019-10-11T11:51:05.403+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:05.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>6f5277d9-abe3-4e87-b0f1-e4320756bbac</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:06.551+02:00</from_date>
<till_date>2019-10-11T11:51:06.552+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:06.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>026370e8-2011-4bf0-8da9-ec4a9fe1ee19</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:07.7+02:00</from_date>
<till_date>2019-10-11T11:51:07.7+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:07.702+02:00</creation_date>
</measured_value>
<measured_value>
<id>e96eff46-8322-424d-9a79-51c746124354</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:08.843+02:00</from_date>
<till_date>2019-10-11T11:51:08.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:08.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>6beb6aee-6888-4f4a-82ff-5bf700a22b0a</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:09.986+02:00</from_date>
<till_date>2019-10-11T11:51:09.986+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:09.989+02:00</creation_date>
</measured_value>
<measured_value>
<id>62a8f169-344d-4f9c-828a-7b4ea4261fad</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.129+02:00</from_date>
<till_date>2019-10-11T11:51:11.13+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.133+02:00</creation_date>
</measured_value>
<measured_value>
<id>b1d64d40-59d7-4093-ba1d-208d869c9aae</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.264+02:00</from_date>
<till_date>2019-10-11T11:51:11.265+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.267+02:00</creation_date>
</measured_value>
<measured_value>
<id>f98b69ee-bef9-4609-8bfa-82f11d7f51b6</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:12.401+02:00</from_date>
<till_date>2019-10-11T11:51:12.402+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:12.41+02:00</creation_date>
</measured_value>
<measured_value>
<id>eab34e23-2b43-40c2-9d6e-90e72fa13db5</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:13.551+02:00</from_date>
<till_date>2019-10-11T11:51:13.551+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:13.554+02:00</creation_date>
</measured_value>
<measured_value>
<id>4659b946-8a40-4ba4-9888-6997bd1795f2</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:14.695+02:00</from_date>
<till_date>2019-10-11T11:51:14.695+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:14.698+02:00</creation_date>
</measured_value>
<measured_value>
<id>a6552aff-724c-4339-810a-36d911ddaa58</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.839+02:00</from_date>
<till_date>2019-10-11T11:51:15.839+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.842+02:00</creation_date>
</measured_value>
<measured_value>
<id>c311cacd-e346-4b68-902b-400be0f8e02e</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.976+02:00</from_date>
<till_date>2019-10-11T11:51:15.977+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.98+02:00</creation_date>
</measured_value>
<measured_value>
<id>2d4db614-17f8-4ddd-ba08-e2a5f77d74ea</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.118+02:00</from_date>
<till_date>2019-10-11T11:51:17.118+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.121+02:00</creation_date>
</measured_value>
<measured_value>
<id>936d61e4-494e-4959-a39a-c1dbc4a7d162</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.243+02:00</from_date>
<till_date>2019-10-11T11:51:17.244+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.247+02:00</creation_date>
</measured_value>
<measured_value>
<id>b913c9ca-4b5e-4c01-9aea-ee31d0d97977</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:18.381+02:00</from_date>
<till_date>2019-10-11T11:51:18.382+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:18.385+02:00</creation_date>
</measured_value>
<measured_value>
<id>1171d0dd-2173-4da2-b2c6-7f7daaad7cd1</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.529+02:00</from_date>
<till_date>2019-10-11T11:51:19.529+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.532+02:00</creation_date>
</measured_value>
<measured_value>
<id>d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.664+02:00</from_date>
<till_date>2019-10-11T11:51:19.664+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.667+02:00</creation_date>
</measured_value>
</measured_values>

View File

@ -0,0 +1,461 @@
<measured_values>
<measured_value>
<id>2029cc8c-56cf-4cd1-adf8-06e768fbad29</id>
<value>20.90999984741211</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:43.317+02:00</from_date>
<till_date>2019-10-11T11:50:43.317+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:43.319+02:00</creation_date>
</measured_value>
<measured_value>
<id>a588cc90-4dca-4a4e-be81-2d20b9f64458</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:44.459+02:00</from_date>
<till_date>2019-10-11T11:50:47.745+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:44.473+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
<measured_value>
<id>88f5c095-8e88-4c80-b66a-cf154919afa8</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:49.53+02:00</from_date>
<till_date>2019-10-11T11:50:49.53+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:50.018+02:00</creation_date>
</measured_value>
<measured_value>
<id>7c3b7eac-3b43-4461-b204-d74c2bde3a08</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:51.187+02:00</from_date>
<till_date>2019-10-11T11:50:53.652+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:51.189+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
<measured_value>
<id>acb55d68-d909-41ba-a445-8ef9eab0c7aa</id>
<value>20.950000762939453</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:53.788+02:00</from_date>
<till_date>2019-10-11T11:50:53.789+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:53.79+02:00</creation_date>
</measured_value>
<measured_value>
<id>6563ff1e-371b-46a2-aca8-cc49b418bf61</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:54.929+02:00</from_date>
<till_date>2019-10-11T11:50:55.536+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.405+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
<measured_value>
<id>157eda79-3283-4cda-a21d-db0aa2da8548</id>
<value>20.959999084472656</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.674+02:00</from_date>
<till_date>2019-10-11T11:50:55.674+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.677+02:00</creation_date>
</measured_value>
<measured_value>
<id>c7d8d6ce-59d9-4448-9934-69cebc071cf6</id>
<value>20.940000534057617</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:56.817+02:00</from_date>
<till_date>2019-10-11T11:50:56.817+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:56.82+02:00</creation_date>
</measured_value>
<measured_value>
<id>07d08037-7267-44ab-8d90-878271809a4c</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:57.959+02:00</from_date>
<till_date>2019-10-11T11:50:59.1+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:57.962+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
<measured_value>
<id>0b865113-d0f4-42f4-af3d-50e60edcc523</id>
<value>20.959999084472656</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.238+02:00</from_date>
<till_date>2019-10-11T11:50:59.238+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.241+02:00</creation_date>
</measured_value>
<measured_value>
<id>c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2</id>
<value>20.979999542236328</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.368+02:00</from_date>
<till_date>2019-10-11T11:50:59.368+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.371+02:00</creation_date>
</measured_value>
<measured_value>
<id>8d98e723-7a07-4ccf-b3bc-7a2653952b8b</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:00.509+02:00</from_date>
<till_date>2019-10-11T11:51:01.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:00.516+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
</measured_values><measured_values>
<measured_value>
<id>0fc9c4bf-7e86-4cee-b99c-7642984b5fcd</id>
<value>50.8740234375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:01.969+02:00</from_date>
<till_date>2019-10-11T11:51:03.109+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.971+02:00</creation_date>
<update_date>2019-10-11T11:51:20.835+02:00</update_date>
</measured_value>
<measured_value>
<id>7b4f0fc3-ecec-4226-b621-49dd01cf9eb7</id>
<value>50.884765625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:04.251+02:00</from_date>
<till_date>2019-10-11T11:51:04.252+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:04.254+02:00</creation_date>
</measured_value>
<measured_value>
<id>72ccf0a7-e680-460c-a3b8-7d14f46b5b0c</id>
<value>50.861328125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:05.402+02:00</from_date>
<till_date>2019-10-11T11:51:05.403+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:05.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>6f5277d9-abe3-4e87-b0f1-e4320756bbac</id>
<value>50.8505859375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:06.551+02:00</from_date>
<till_date>2019-10-11T11:51:06.552+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:06.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>026370e8-2011-4bf0-8da9-ec4a9fe1ee19</id>
<value>50.7734375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:07.7+02:00</from_date>
<till_date>2019-10-11T11:51:07.7+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:07.702+02:00</creation_date>
</measured_value>
<measured_value>
<id>e96eff46-8322-424d-9a79-51c746124354</id>
<value>50.728515625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:08.843+02:00</from_date>
<till_date>2019-10-11T11:51:08.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:08.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>6beb6aee-6888-4f4a-82ff-5bf700a22b0a</id>
<value>50.67578125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:09.986+02:00</from_date>
<till_date>2019-10-11T11:51:09.986+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:09.989+02:00</creation_date>
</measured_value>
<measured_value>
<id>62a8f169-344d-4f9c-828a-7b4ea4261fad</id>
<value>50.6650390625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.129+02:00</from_date>
<till_date>2019-10-11T11:51:11.13+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.133+02:00</creation_date>
</measured_value>
<measured_value>
<id>b1d64d40-59d7-4093-ba1d-208d869c9aae</id>
<value>50.6884765625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.264+02:00</from_date>
<till_date>2019-10-11T11:51:11.265+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.267+02:00</creation_date>
</measured_value>
<measured_value>
<id>f98b69ee-bef9-4609-8bfa-82f11d7f51b6</id>
<value>50.76171875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:12.401+02:00</from_date>
<till_date>2019-10-11T11:51:12.402+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:12.41+02:00</creation_date>
</measured_value>
<measured_value>
<id>eab34e23-2b43-40c2-9d6e-90e72fa13db5</id>
<value>50.7373046875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:13.551+02:00</from_date>
<till_date>2019-10-11T11:51:13.551+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:13.554+02:00</creation_date>
</measured_value>
<measured_value>
<id>4659b946-8a40-4ba4-9888-6997bd1795f2</id>
<value>50.73828125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:14.695+02:00</from_date>
<till_date>2019-10-11T11:51:14.695+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:14.698+02:00</creation_date>
</measured_value>
<measured_value>
<id>a6552aff-724c-4339-810a-36d911ddaa58</id>
<value>50.6845703125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.839+02:00</from_date>
<till_date>2019-10-11T11:51:15.839+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.842+02:00</creation_date>
</measured_value>
<measured_value>
<id>c311cacd-e346-4b68-902b-400be0f8e02e</id>
<value>50.6767578125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.976+02:00</from_date>
<till_date>2019-10-11T11:51:15.977+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.98+02:00</creation_date>
</measured_value>
<measured_value>
<id>2d4db614-17f8-4ddd-ba08-e2a5f77d74ea</id>
<value>50.68359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.118+02:00</from_date>
<till_date>2019-10-11T11:51:17.118+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.121+02:00</creation_date>
</measured_value>
<measured_value>
<id>936d61e4-494e-4959-a39a-c1dbc4a7d162</id>
<value>50.685546875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.243+02:00</from_date>
<till_date>2019-10-11T11:51:17.244+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.247+02:00</creation_date>
</measured_value>
<measured_value>
<id>b913c9ca-4b5e-4c01-9aea-ee31d0d97977</id>
<value>50.6943359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:18.381+02:00</from_date>
<till_date>2019-10-11T11:51:19.529+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:18.385+02:00</creation_date>
<update_date>2019-10-11T11:51:20.835+02:00</update_date>
</measured_value>
<measured_value>
<id>d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312</id>
<value>50.7080078125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.664+02:00</from_date>
<till_date>2019-10-11T11:51:19.664+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.667+02:00</creation_date>
</measured_value>
</measured_values><measured_values>
<measured_value>
<id>140d6183-36c8-4903-a798-def4fcb3bd74</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:20.98+02:00</from_date>
<till_date>2019-10-11T11:51:20.98+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:20.982+02:00</creation_date>
</measured_value>
<measured_value>
<id>98102a36-a38e-4ccc-9886-c119a7971414</id>
<value>100151.703125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:22.123+02:00</from_date>
<till_date>2019-10-11T11:51:22.123+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:22.125+02:00</creation_date>
</measured_value>
<measured_value>
<id>5ffe51ae-687c-47df-8936-7785de9beed7</id>
<value>100150.8984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.261+02:00</from_date>
<till_date>2019-10-11T11:51:23.262+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:23.263+02:00</creation_date>
</measured_value>
<measured_value>
<id>e534cb23-c725-403b-b5c9-5455256a8662</id>
<value>100153.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.739+02:00</from_date>
<till_date>2019-10-11T11:51:23.739+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.594+02:00</creation_date>
</measured_value>
<measured_value>
<id>e3c2a10b-373f-43d5-b02c-b381d1ad203b</id>
<value>100149.296875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.721+02:00</from_date>
<till_date>2019-10-11T11:51:24.721+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.723+02:00</creation_date>
</measured_value>
<measured_value>
<id>e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94</id>
<value>100150.796875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.849+02:00</from_date>
<till_date>2019-10-11T11:51:24.849+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:25.212+02:00</creation_date>
</measured_value>
<measured_value>
<id>70f6de4d-3a17-4688-b635-b8965e85be43</id>
<value>100149.6015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.352+02:00</from_date>
<till_date>2019-10-11T11:51:26.352+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.354+02:00</creation_date>
</measured_value>
<measured_value>
<id>0e42478b-da36-4096-afad-d8c2a7685ccd</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.488+02:00</from_date>
<till_date>2019-10-11T11:51:26.488+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.49+02:00</creation_date>
</measured_value>
<measured_value>
<id>0313994c-db52-42d6-b059-2ca13afdd5d8</id>
<value>100151.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.622+02:00</from_date>
<till_date>2019-10-11T11:51:26.622+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.624+02:00</creation_date>
</measured_value>
<measured_value>
<id>9cb66b4c-31d8-40dc-8c5b-9d243c2bb974</id>
<value>100150.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.754+02:00</from_date>
<till_date>2019-10-11T11:51:26.754+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.757+02:00</creation_date>
</measured_value>
<measured_value>
<id>6e626fdb-326d-4984-9585-7b64976be1a2</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.894+02:00</from_date>
<till_date>2019-10-11T11:51:26.894+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.896+02:00</creation_date>
</measured_value>
<measured_value>
<id>6869ae37-0200-40c2-85a5-d4412d81b62d</id>
<value>100154.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:27.029+02:00</from_date>
<till_date>2019-10-11T11:51:27.029+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:27.032+02:00</creation_date>
</measured_value>
<measured_value>
<id>8a0770b9-f8b0-42de-90fe-3e6a6311818b</id>
<value>100152.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.169+02:00</from_date>
<till_date>2019-10-11T11:51:28.169+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.171+02:00</creation_date>
</measured_value>
<measured_value>
<id>cf989dbb-2e73-4042-b339-b4dbc75b0a7c</id>
<value>100151.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.294+02:00</from_date>
<till_date>2019-10-11T11:51:28.294+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.296+02:00</creation_date>
</measured_value>
<measured_value>
<id>53a2d8fb-3b15-48a2-a277-1b821adba088</id>
<value>100151.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.426+02:00</from_date>
<till_date>2019-10-11T11:51:28.426+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.428+02:00</creation_date>
</measured_value>
<measured_value>
<id>9de16913-67f3-4e0b-9976-ddadbd057bae</id>
<value>100153.8984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:29.563+02:00</from_date>
<till_date>2019-10-11T11:51:29.563+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:29.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>d8c255a5-c5bd-4e9e-9aec-d0e6ae795719</id>
<value>100154.6015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:30.707+02:00</from_date>
<till_date>2019-10-11T11:51:30.707+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:30.71+02:00</creation_date>
</measured_value>
<measured_value>
<id>31ab31ac-e991-4081-8b4e-eba0f789b806</id>
<value>100153.796875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:31.843+02:00</from_date>
<till_date>2019-10-11T11:51:31.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:31.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>ed2ec0a9-9bc1-424a-9edf-85aad7a059ec</id>
<value>100150.703125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:32.981+02:00</from_date>
<till_date>2019-10-11T11:51:32.981+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:32.984+02:00</creation_date>
</measured_value>
<measured_value>
<id>31e03c4c-49a1-4c0d-a750-16c09b75f96b</id>
<value>100151.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:34.125+02:00</from_date>
<till_date>2019-10-11T11:51:34.126+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:34.133+02:00</creation_date>
</measured_value>
</measured_values>

View File

@ -0,0 +1,225 @@
<measured_values>
<measured_value>
<id>2029cc8c-56cf-4cd1-adf8-06e768fbad29</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:43.317+02:00</from_date>
<till_date>2019-10-11T11:51:01.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:43.319+02:00</creation_date>
<update_date>2019-10-11T11:51:01.856+02:00</update_date>
</measured_value>
</measured_values><measured_values>
<measured_value>
<id>0fc9c4bf-7e86-4cee-b99c-7642984b5fcd</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:01.969+02:00</from_date>
<till_date>2019-10-11T11:51:07.7+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.971+02:00</creation_date>
<update_date>2019-10-11T11:51:20.864+02:00</update_date>
</measured_value>
<measured_value>
<id>e96eff46-8322-424d-9a79-51c746124354</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:08.843+02:00</from_date>
<till_date>2019-10-11T11:51:11.265+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:08.846+02:00</creation_date>
<update_date>2019-10-11T11:51:20.864+02:00</update_date>
</measured_value>
<measured_value>
<id>f98b69ee-bef9-4609-8bfa-82f11d7f51b6</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:12.401+02:00</from_date>
<till_date>2019-10-11T11:51:12.402+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:12.41+02:00</creation_date>
</measured_value>
<measured_value>
<id>eab34e23-2b43-40c2-9d6e-90e72fa13db5</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:13.551+02:00</from_date>
<till_date>2019-10-11T11:51:19.664+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:13.554+02:00</creation_date>
<update_date>2019-10-11T11:51:20.864+02:00</update_date>
</measured_value>
</measured_values><measured_values>
<measured_value>
<id>140d6183-36c8-4903-a798-def4fcb3bd74</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:20.98+02:00</from_date>
<till_date>2019-10-11T11:51:20.98+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:20.982+02:00</creation_date>
</measured_value>
<measured_value>
<id>98102a36-a38e-4ccc-9886-c119a7971414</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:22.123+02:00</from_date>
<till_date>2019-10-11T11:51:22.123+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:22.125+02:00</creation_date>
</measured_value>
<measured_value>
<id>5ffe51ae-687c-47df-8936-7785de9beed7</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.261+02:00</from_date>
<till_date>2019-10-11T11:51:23.262+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:23.263+02:00</creation_date>
</measured_value>
<measured_value>
<id>e534cb23-c725-403b-b5c9-5455256a8662</id>
<value>100153</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.739+02:00</from_date>
<till_date>2019-10-11T11:51:23.739+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.594+02:00</creation_date>
</measured_value>
<measured_value>
<id>e3c2a10b-373f-43d5-b02c-b381d1ad203b</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.721+02:00</from_date>
<till_date>2019-10-11T11:51:24.721+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.723+02:00</creation_date>
</measured_value>
<measured_value>
<id>e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.849+02:00</from_date>
<till_date>2019-10-11T11:51:24.849+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:25.212+02:00</creation_date>
</measured_value>
<measured_value>
<id>70f6de4d-3a17-4688-b635-b8965e85be43</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.352+02:00</from_date>
<till_date>2019-10-11T11:51:26.488+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.354+02:00</creation_date>
<update_date>2019-10-11T11:51:35.333+02:00</update_date>
</measured_value>
<measured_value>
<id>0313994c-db52-42d6-b059-2ca13afdd5d8</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.622+02:00</from_date>
<till_date>2019-10-11T11:51:26.622+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.624+02:00</creation_date>
</measured_value>
<measured_value>
<id>9cb66b4c-31d8-40dc-8c5b-9d243c2bb974</id>
<value>100150</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.754+02:00</from_date>
<till_date>2019-10-11T11:51:26.754+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.757+02:00</creation_date>
</measured_value>
<measured_value>
<id>6e626fdb-326d-4984-9585-7b64976be1a2</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.894+02:00</from_date>
<till_date>2019-10-11T11:51:26.894+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.896+02:00</creation_date>
</measured_value>
<measured_value>
<id>6869ae37-0200-40c2-85a5-d4412d81b62d</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:27.029+02:00</from_date>
<till_date>2019-10-11T11:51:27.029+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:27.032+02:00</creation_date>
</measured_value>
<measured_value>
<id>8a0770b9-f8b0-42de-90fe-3e6a6311818b</id>
<value>100152.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.169+02:00</from_date>
<till_date>2019-10-11T11:51:28.169+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.171+02:00</creation_date>
</measured_value>
<measured_value>
<id>cf989dbb-2e73-4042-b339-b4dbc75b0a7c</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.294+02:00</from_date>
<till_date>2019-10-11T11:51:28.294+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.296+02:00</creation_date>
</measured_value>
<measured_value>
<id>53a2d8fb-3b15-48a2-a277-1b821adba088</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.426+02:00</from_date>
<till_date>2019-10-11T11:51:28.426+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.428+02:00</creation_date>
</measured_value>
<measured_value>
<id>9de16913-67f3-4e0b-9976-ddadbd057bae</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:29.563+02:00</from_date>
<till_date>2019-10-11T11:51:29.563+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:29.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>d8c255a5-c5bd-4e9e-9aec-d0e6ae795719</id>
<value>100154.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:30.707+02:00</from_date>
<till_date>2019-10-11T11:51:30.707+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:30.71+02:00</creation_date>
</measured_value>
<measured_value>
<id>31ab31ac-e991-4081-8b4e-eba0f789b806</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:31.843+02:00</from_date>
<till_date>2019-10-11T11:51:31.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:31.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>ed2ec0a9-9bc1-424a-9edf-85aad7a059ec</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:32.981+02:00</from_date>
<till_date>2019-10-11T11:51:32.981+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:32.984+02:00</creation_date>
</measured_value>
<measured_value>
<id>31e03c4c-49a1-4c0d-a750-16c09b75f96b</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:34.125+02:00</from_date>
<till_date>2019-10-11T11:51:34.126+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:34.133+02:00</creation_date>
</measured_value>
</measured_values>

View File

@ -1,299 +1,544 @@
<measured_values> <measured_values>
<measured_value> <measured_value>
<id>7d3286c3-3f32-40e7-9656-f587de5d5341</id> <id>2029cc8c-56cf-4cd1-adf8-06e768fbad29</id>
<value>58.55859375</value> <value>20.90999984741211</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:33.862+02:00</from_date>
<till_date>2019-09-29T19:32:33.862+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>9890f244-9854-4a78-826e-124dc7b179af</id>
<value>58.55859375</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:35.521+02:00</from_date>
<till_date>2019-09-29T19:32:35.521+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>40124dc7-a6af-4864-8566-7c2925b4471b</id>
<value>58.525390625</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:36.186+02:00</from_date>
<till_date>2019-09-29T19:32:36.186+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>92bfde08-0f2a-4b6e-b227-44f341f35446</id>
<value>58.5068359375</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:36.881+02:00</from_date>
<till_date>2019-09-29T19:32:36.882+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>c22e278e-f6fb-4755-8bf3-7a7313816abf</id>
<value>58.470703125</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:37.485+02:00</from_date>
<till_date>2019-09-29T19:32:37.485+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>c0468792-72c2-45f6-a9f4-c798f9307bc2</id>
<value>58.4384765625</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:38.073+02:00</from_date>
<till_date>2019-09-29T19:32:38.073+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>9afab5be-7502-47fc-a5b2-cf8bd1a62054</id>
<value>58.4384765625</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:38.675+02:00</from_date>
<till_date>2019-09-29T19:32:38.676+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>3b8560f9-9536-47e3-839e-8351ffecbfcf</id>
<value>58.4384765625</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:39.258+02:00</from_date>
<till_date>2019-09-29T19:32:39.259+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>4afcb00e-4035-443d-8495-535932d45623</id>
<value>58.4375</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:39.839+02:00</from_date>
<till_date>2019-09-29T19:32:39.839+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>132e91ec-9b06-4792-a8c0-b82ccdcbce16</id>
<value>58.447265625</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:40.503+02:00</from_date>
<till_date>2019-09-29T19:32:40.504+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>5aba6643-3fe3-422f-aa40-2d98591d9a82</id>
<value>58.46875</value>
<value_type>humidity</value_type>
<from_date>2019-09-29T19:32:41.187+02:00</from_date>
<till_date>2019-09-29T19:32:41.188+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>c18c918e-180b-40ea-8509-b37a2d19c1b8</id>
<value>98527.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:29:56.579+02:00</from_date>
<till_date>2019-09-29T19:29:56.579+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.905+02:00</creation_date>
</measured_value>
<measured_value>
<id>31269000-f855-472c-b607-5ef7dbcc2d3b</id>
<value>98531.296875</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:29:58.02+02:00</from_date>
<till_date>2019-09-29T19:29:58.02+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>7df14e44-185e-43a4-ba67-c86561bf19a0</id>
<value>98526.8984375</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:29:58.886+02:00</from_date>
<till_date>2019-09-29T19:29:58.886+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>e63f2d08-cbbe-43c6-80f6-70e504aebce5</id>
<value>98530.5</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:29:59.657+02:00</from_date>
<till_date>2019-09-29T19:29:59.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c</id>
<value>98529.796875</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:30:00.301+02:00</from_date>
<till_date>2019-09-29T19:30:00.302+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>b002af5d-3ef0-4608-b6c6-2745be36c7f0</id>
<value>98530.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:30:00.878+02:00</from_date>
<till_date>2019-09-29T19:30:00.879+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>e0753df7-865d-41ec-a2fc-58692c0e6a12</id>
<value>98530.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:30:01.513+02:00</from_date>
<till_date>2019-09-29T19:30:01.513+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>a46d74d4-dce8-497d-a08a-a609d2ed1238</id>
<value>98532.5</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:30:02.095+02:00</from_date>
<till_date>2019-09-29T19:30:02.095+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>2a17ada0-caad-42d3-b12e-9ef432d79e59</id>
<value>98532.203125</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:30:02.643+02:00</from_date>
<till_date>2019-09-29T19:30:02.643+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>f83d1000-9fe5-4ced-9c10-587525b2a9e7</id>
<value>98528.296875</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:30:03.26+02:00</from_date>
<till_date>2019-09-29T19:30:03.26+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>e2d50392-2d67-4324-add5-dd5c566ba826</id>
<value>98532.796875</value>
<value_type>pressure</value_type>
<from_date>2019-09-29T19:30:03.835+02:00</from_date>
<till_date>2019-09-29T19:30:03.835+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date>
</measured_value>
<measured_value>
<id>63d546fe-4e27-4816-8e8c-cd16026cf079</id>
<value>22.040000915527344</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:12.887+02:00</from_date> <from_date>2019-10-11T11:50:43.317+02:00</from_date>
<till_date>2019-09-29T19:26:12.887+02:00</till_date> <till_date>2019-10-11T11:50:43.317+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date> <creation_date>2019-10-11T11:50:43.319+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>ac3dddda-a669-4215-8174-42eaa3af741b</id> <id>a588cc90-4dca-4a4e-be81-2d20b9f64458</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:13.312+02:00</from_date> <from_date>2019-10-11T11:50:44.459+02:00</from_date>
<till_date>2019-09-29T19:26:13.312+02:00</till_date> <till_date>2019-10-11T11:50:44.459+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.906+02:00</creation_date> <creation_date>2019-10-11T11:50:44.473+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae</id> <id>1ebb60de-6066-4731-9f55-ee1c51748b7f</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:13.848+02:00</from_date> <from_date>2019-10-11T11:50:45.614+02:00</from_date>
<till_date>2019-09-29T19:26:13.848+02:00</till_date> <till_date>2019-10-11T11:50:45.614+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:45.615+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>2ebc3339-974e-4a8f-bec1-531f9045ffe6</id> <id>6cbc586f-a5c9-4296-b3b2-200afae12059</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:14.381+02:00</from_date> <from_date>2019-10-11T11:50:46.776+02:00</from_date>
<till_date>2019-09-29T19:26:14.382+02:00</till_date> <till_date>2019-10-11T11:50:46.776+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:47.134+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>dfa35a46-803b-4c21-9cbc-092efc8d3646</id> <id>14e03e32-f214-4f61-97b0-8e021c47bead</id>
<value>22.059999465942383</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:14.923+02:00</from_date> <from_date>2019-10-11T11:50:47.745+02:00</from_date>
<till_date>2019-09-29T19:26:14.923+02:00</till_date> <till_date>2019-10-11T11:50:47.745+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:47.747+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>ce284f94-6032-467a-804d-34f7dc47ffcb</id> <id>88f5c095-8e88-4c80-b66a-cf154919afa8</id>
<value>22.049999237060547</value> <value>20.93000030517578</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:15.472+02:00</from_date> <from_date>2019-10-11T11:50:49.53+02:00</from_date>
<till_date>2019-09-29T19:26:15.472+02:00</till_date> <till_date>2019-10-11T11:50:49.53+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:50.018+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>9926b8e7-2092-48c7-9906-856af2fa7251</id> <id>7c3b7eac-3b43-4461-b204-d74c2bde3a08</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:16.001+02:00</from_date> <from_date>2019-10-11T11:50:51.187+02:00</from_date>
<till_date>2019-09-29T19:26:16.001+02:00</till_date> <till_date>2019-10-11T11:50:51.187+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:51.189+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>9170f2e0-c6aa-4c75-95dc-d1f129df541f</id> <id>3caf0b08-38d5-4536-baa5-86d4d75e359d</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:16.591+02:00</from_date> <from_date>2019-10-11T11:50:52.508+02:00</from_date>
<till_date>2019-09-29T19:26:16.591+02:00</till_date> <till_date>2019-10-11T11:50:52.508+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:52.51+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>ebce8428-d414-4ed2-98c1-2f3b8b45dd0b</id> <id>4b8595bf-3624-4963-b796-efc648515cd9</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:17.124+02:00</from_date> <from_date>2019-10-11T11:50:53.652+02:00</from_date>
<till_date>2019-09-29T19:26:17.124+02:00</till_date> <till_date>2019-10-11T11:50:53.652+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:53.654+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>58e55045-33c6-4122-a2d9-b5bc12059b77</id> <id>acb55d68-d909-41ba-a445-8ef9eab0c7aa</id>
<value>22.059999465942383</value> <value>20.950000762939453</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:17.679+02:00</from_date> <from_date>2019-10-11T11:50:53.788+02:00</from_date>
<till_date>2019-09-29T19:26:17.679+02:00</till_date> <till_date>2019-10-11T11:50:53.789+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:53.79+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>1df7d65b-149c-46f5-a377-5d9ad399f471</id> <id>6563ff1e-371b-46a2-aca8-cc49b418bf61</id>
<value>22.049999237060547</value> <value>20.93000030517578</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:18.291+02:00</from_date> <from_date>2019-10-11T11:50:54.929+02:00</from_date>
<till_date>2019-09-29T19:26:18.291+02:00</till_date> <till_date>2019-10-11T11:50:54.93+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.907+02:00</creation_date> <creation_date>2019-10-11T11:50:55.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>a64f57c4-b95c-45b1-b78a-a6be263abb85</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.536+02:00</from_date>
<till_date>2019-10-11T11:50:55.536+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.538+02:00</creation_date>
</measured_value>
<measured_value>
<id>157eda79-3283-4cda-a21d-db0aa2da8548</id>
<value>20.959999084472656</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.674+02:00</from_date>
<till_date>2019-10-11T11:50:55.674+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.677+02:00</creation_date>
</measured_value>
<measured_value>
<id>c7d8d6ce-59d9-4448-9934-69cebc071cf6</id>
<value>20.940000534057617</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:56.817+02:00</from_date>
<till_date>2019-10-11T11:50:56.817+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:56.82+02:00</creation_date>
</measured_value>
<measured_value>
<id>07d08037-7267-44ab-8d90-878271809a4c</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:57.959+02:00</from_date>
<till_date>2019-10-11T11:50:57.96+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:57.962+02:00</creation_date>
</measured_value>
<measured_value>
<id>bf2e981f-8bad-466e-9a12-c1a5d9b64399</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.1+02:00</from_date>
<till_date>2019-10-11T11:50:59.1+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.103+02:00</creation_date>
</measured_value>
<measured_value>
<id>0b865113-d0f4-42f4-af3d-50e60edcc523</id>
<value>20.959999084472656</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.238+02:00</from_date>
<till_date>2019-10-11T11:50:59.238+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.241+02:00</creation_date>
</measured_value>
<measured_value>
<id>c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2</id>
<value>20.979999542236328</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.368+02:00</from_date>
<till_date>2019-10-11T11:50:59.368+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.371+02:00</creation_date>
</measured_value>
<measured_value>
<id>8d98e723-7a07-4ccf-b3bc-7a2653952b8b</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:00.509+02:00</from_date>
<till_date>2019-10-11T11:51:00.51+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:00.516+02:00</creation_date>
</measured_value>
<measured_value>
<id>f61b7bfb-14eb-4b43-a7b6-47b61fa46dda</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:01.658+02:00</from_date>
<till_date>2019-10-11T11:51:01.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.661+02:00</creation_date>
</measured_value>
</measured_values><measured_values>
<measured_value>
<id>0fc9c4bf-7e86-4cee-b99c-7642984b5fcd</id>
<value>50.8740234375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:01.969+02:00</from_date>
<till_date>2019-10-11T11:51:01.969+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.971+02:00</creation_date>
</measured_value>
<measured_value>
<id>45e8b20c-1ab0-4cf1-9ef1-aa82537557f6</id>
<value>50.8740234375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:03.109+02:00</from_date>
<till_date>2019-10-11T11:51:03.109+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:03.111+02:00</creation_date>
</measured_value>
<measured_value>
<id>7b4f0fc3-ecec-4226-b621-49dd01cf9eb7</id>
<value>50.884765625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:04.251+02:00</from_date>
<till_date>2019-10-11T11:51:04.252+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:04.254+02:00</creation_date>
</measured_value>
<measured_value>
<id>72ccf0a7-e680-460c-a3b8-7d14f46b5b0c</id>
<value>50.861328125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:05.402+02:00</from_date>
<till_date>2019-10-11T11:51:05.403+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:05.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>6f5277d9-abe3-4e87-b0f1-e4320756bbac</id>
<value>50.8505859375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:06.551+02:00</from_date>
<till_date>2019-10-11T11:51:06.552+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:06.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>026370e8-2011-4bf0-8da9-ec4a9fe1ee19</id>
<value>50.7734375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:07.7+02:00</from_date>
<till_date>2019-10-11T11:51:07.7+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:07.702+02:00</creation_date>
</measured_value>
<measured_value>
<id>e96eff46-8322-424d-9a79-51c746124354</id>
<value>50.728515625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:08.843+02:00</from_date>
<till_date>2019-10-11T11:51:08.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:08.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>6beb6aee-6888-4f4a-82ff-5bf700a22b0a</id>
<value>50.67578125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:09.986+02:00</from_date>
<till_date>2019-10-11T11:51:09.986+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:09.989+02:00</creation_date>
</measured_value>
<measured_value>
<id>62a8f169-344d-4f9c-828a-7b4ea4261fad</id>
<value>50.6650390625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.129+02:00</from_date>
<till_date>2019-10-11T11:51:11.13+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.133+02:00</creation_date>
</measured_value>
<measured_value>
<id>b1d64d40-59d7-4093-ba1d-208d869c9aae</id>
<value>50.6884765625</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.264+02:00</from_date>
<till_date>2019-10-11T11:51:11.265+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.267+02:00</creation_date>
</measured_value>
<measured_value>
<id>f98b69ee-bef9-4609-8bfa-82f11d7f51b6</id>
<value>50.76171875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:12.401+02:00</from_date>
<till_date>2019-10-11T11:51:12.402+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:12.41+02:00</creation_date>
</measured_value>
<measured_value>
<id>eab34e23-2b43-40c2-9d6e-90e72fa13db5</id>
<value>50.7373046875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:13.551+02:00</from_date>
<till_date>2019-10-11T11:51:13.551+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:13.554+02:00</creation_date>
</measured_value>
<measured_value>
<id>4659b946-8a40-4ba4-9888-6997bd1795f2</id>
<value>50.73828125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:14.695+02:00</from_date>
<till_date>2019-10-11T11:51:14.695+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:14.698+02:00</creation_date>
</measured_value>
<measured_value>
<id>a6552aff-724c-4339-810a-36d911ddaa58</id>
<value>50.6845703125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.839+02:00</from_date>
<till_date>2019-10-11T11:51:15.839+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.842+02:00</creation_date>
</measured_value>
<measured_value>
<id>c311cacd-e346-4b68-902b-400be0f8e02e</id>
<value>50.6767578125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.976+02:00</from_date>
<till_date>2019-10-11T11:51:15.977+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.98+02:00</creation_date>
</measured_value>
<measured_value>
<id>2d4db614-17f8-4ddd-ba08-e2a5f77d74ea</id>
<value>50.68359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.118+02:00</from_date>
<till_date>2019-10-11T11:51:17.118+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.121+02:00</creation_date>
</measured_value>
<measured_value>
<id>936d61e4-494e-4959-a39a-c1dbc4a7d162</id>
<value>50.685546875</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.243+02:00</from_date>
<till_date>2019-10-11T11:51:17.244+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.247+02:00</creation_date>
</measured_value>
<measured_value>
<id>b913c9ca-4b5e-4c01-9aea-ee31d0d97977</id>
<value>50.6943359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:18.381+02:00</from_date>
<till_date>2019-10-11T11:51:18.382+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:18.385+02:00</creation_date>
</measured_value>
<measured_value>
<id>1171d0dd-2173-4da2-b2c6-7f7daaad7cd1</id>
<value>50.6943359375</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.529+02:00</from_date>
<till_date>2019-10-11T11:51:19.529+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.532+02:00</creation_date>
</measured_value>
<measured_value>
<id>d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312</id>
<value>50.7080078125</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.664+02:00</from_date>
<till_date>2019-10-11T11:51:19.664+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.667+02:00</creation_date>
</measured_value>
</measured_values><measured_values>
<measured_value>
<id>140d6183-36c8-4903-a798-def4fcb3bd74</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:20.98+02:00</from_date>
<till_date>2019-10-11T11:51:20.98+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:20.982+02:00</creation_date>
</measured_value>
<measured_value>
<id>98102a36-a38e-4ccc-9886-c119a7971414</id>
<value>100151.703125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:22.123+02:00</from_date>
<till_date>2019-10-11T11:51:22.123+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:22.125+02:00</creation_date>
</measured_value>
<measured_value>
<id>5ffe51ae-687c-47df-8936-7785de9beed7</id>
<value>100150.8984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.261+02:00</from_date>
<till_date>2019-10-11T11:51:23.262+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:23.263+02:00</creation_date>
</measured_value>
<measured_value>
<id>e534cb23-c725-403b-b5c9-5455256a8662</id>
<value>100153.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.739+02:00</from_date>
<till_date>2019-10-11T11:51:23.739+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.594+02:00</creation_date>
</measured_value>
<measured_value>
<id>e3c2a10b-373f-43d5-b02c-b381d1ad203b</id>
<value>100149.296875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.721+02:00</from_date>
<till_date>2019-10-11T11:51:24.721+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.723+02:00</creation_date>
</measured_value>
<measured_value>
<id>e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94</id>
<value>100150.796875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.849+02:00</from_date>
<till_date>2019-10-11T11:51:24.849+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:25.212+02:00</creation_date>
</measured_value>
<measured_value>
<id>70f6de4d-3a17-4688-b635-b8965e85be43</id>
<value>100149.6015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.352+02:00</from_date>
<till_date>2019-10-11T11:51:26.352+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.354+02:00</creation_date>
</measured_value>
<measured_value>
<id>0e42478b-da36-4096-afad-d8c2a7685ccd</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.488+02:00</from_date>
<till_date>2019-10-11T11:51:26.488+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.49+02:00</creation_date>
</measured_value>
<measured_value>
<id>0313994c-db52-42d6-b059-2ca13afdd5d8</id>
<value>100151.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.622+02:00</from_date>
<till_date>2019-10-11T11:51:26.622+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.624+02:00</creation_date>
</measured_value>
<measured_value>
<id>9cb66b4c-31d8-40dc-8c5b-9d243c2bb974</id>
<value>100150.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.754+02:00</from_date>
<till_date>2019-10-11T11:51:26.754+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.757+02:00</creation_date>
</measured_value>
<measured_value>
<id>6e626fdb-326d-4984-9585-7b64976be1a2</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.894+02:00</from_date>
<till_date>2019-10-11T11:51:26.894+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.896+02:00</creation_date>
</measured_value>
<measured_value>
<id>6869ae37-0200-40c2-85a5-d4412d81b62d</id>
<value>100154.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:27.029+02:00</from_date>
<till_date>2019-10-11T11:51:27.029+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:27.032+02:00</creation_date>
</measured_value>
<measured_value>
<id>8a0770b9-f8b0-42de-90fe-3e6a6311818b</id>
<value>100152.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.169+02:00</from_date>
<till_date>2019-10-11T11:51:28.169+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.171+02:00</creation_date>
</measured_value>
<measured_value>
<id>cf989dbb-2e73-4042-b339-b4dbc75b0a7c</id>
<value>100151.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.294+02:00</from_date>
<till_date>2019-10-11T11:51:28.294+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.296+02:00</creation_date>
</measured_value>
<measured_value>
<id>53a2d8fb-3b15-48a2-a277-1b821adba088</id>
<value>100151.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.426+02:00</from_date>
<till_date>2019-10-11T11:51:28.426+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.428+02:00</creation_date>
</measured_value>
<measured_value>
<id>9de16913-67f3-4e0b-9976-ddadbd057bae</id>
<value>100153.8984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:29.563+02:00</from_date>
<till_date>2019-10-11T11:51:29.563+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:29.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>d8c255a5-c5bd-4e9e-9aec-d0e6ae795719</id>
<value>100154.6015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:30.707+02:00</from_date>
<till_date>2019-10-11T11:51:30.707+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:30.71+02:00</creation_date>
</measured_value>
<measured_value>
<id>31ab31ac-e991-4081-8b4e-eba0f789b806</id>
<value>100153.796875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:31.843+02:00</from_date>
<till_date>2019-10-11T11:51:31.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:31.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>ed2ec0a9-9bc1-424a-9edf-85aad7a059ec</id>
<value>100150.703125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:32.981+02:00</from_date>
<till_date>2019-10-11T11:51:32.981+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:32.984+02:00</creation_date>
</measured_value>
<measured_value>
<id>31e03c4c-49a1-4c0d-a750-16c09b75f96b</id>
<value>100151.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:34.125+02:00</from_date>
<till_date>2019-10-11T11:51:34.126+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:34.133+02:00</creation_date>
</measured_value> </measured_value>
</measured_values> </measured_values>

View File

@ -0,0 +1,544 @@
<measured_values>
<measured_value>
<id>2029cc8c-56cf-4cd1-adf8-06e768fbad29</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:43.317+02:00</from_date>
<till_date>2019-10-11T11:50:43.317+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:43.319+02:00</creation_date>
</measured_value>
<measured_value>
<id>a588cc90-4dca-4a4e-be81-2d20b9f64458</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:44.459+02:00</from_date>
<till_date>2019-10-11T11:50:44.459+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:44.473+02:00</creation_date>
</measured_value>
<measured_value>
<id>1ebb60de-6066-4731-9f55-ee1c51748b7f</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:45.614+02:00</from_date>
<till_date>2019-10-11T11:50:45.614+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:45.615+02:00</creation_date>
</measured_value>
<measured_value>
<id>6cbc586f-a5c9-4296-b3b2-200afae12059</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:46.776+02:00</from_date>
<till_date>2019-10-11T11:50:46.776+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:47.134+02:00</creation_date>
</measured_value>
<measured_value>
<id>14e03e32-f214-4f61-97b0-8e021c47bead</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:47.745+02:00</from_date>
<till_date>2019-10-11T11:50:47.745+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:47.747+02:00</creation_date>
</measured_value>
<measured_value>
<id>88f5c095-8e88-4c80-b66a-cf154919afa8</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:49.53+02:00</from_date>
<till_date>2019-10-11T11:50:49.53+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:50.018+02:00</creation_date>
</measured_value>
<measured_value>
<id>7c3b7eac-3b43-4461-b204-d74c2bde3a08</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:51.187+02:00</from_date>
<till_date>2019-10-11T11:50:51.187+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:51.189+02:00</creation_date>
</measured_value>
<measured_value>
<id>3caf0b08-38d5-4536-baa5-86d4d75e359d</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:52.508+02:00</from_date>
<till_date>2019-10-11T11:50:52.508+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:52.51+02:00</creation_date>
</measured_value>
<measured_value>
<id>4b8595bf-3624-4963-b796-efc648515cd9</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:53.652+02:00</from_date>
<till_date>2019-10-11T11:50:53.652+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:53.654+02:00</creation_date>
</measured_value>
<measured_value>
<id>acb55d68-d909-41ba-a445-8ef9eab0c7aa</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:53.788+02:00</from_date>
<till_date>2019-10-11T11:50:53.789+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:53.79+02:00</creation_date>
</measured_value>
<measured_value>
<id>6563ff1e-371b-46a2-aca8-cc49b418bf61</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:54.929+02:00</from_date>
<till_date>2019-10-11T11:50:54.93+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>a64f57c4-b95c-45b1-b78a-a6be263abb85</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.536+02:00</from_date>
<till_date>2019-10-11T11:50:55.536+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.538+02:00</creation_date>
</measured_value>
<measured_value>
<id>157eda79-3283-4cda-a21d-db0aa2da8548</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.674+02:00</from_date>
<till_date>2019-10-11T11:50:55.674+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.677+02:00</creation_date>
</measured_value>
<measured_value>
<id>c7d8d6ce-59d9-4448-9934-69cebc071cf6</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:56.817+02:00</from_date>
<till_date>2019-10-11T11:50:56.817+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:56.82+02:00</creation_date>
</measured_value>
<measured_value>
<id>07d08037-7267-44ab-8d90-878271809a4c</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:57.959+02:00</from_date>
<till_date>2019-10-11T11:50:57.96+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:57.962+02:00</creation_date>
</measured_value>
<measured_value>
<id>bf2e981f-8bad-466e-9a12-c1a5d9b64399</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.1+02:00</from_date>
<till_date>2019-10-11T11:50:59.1+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.103+02:00</creation_date>
</measured_value>
<measured_value>
<id>0b865113-d0f4-42f4-af3d-50e60edcc523</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.238+02:00</from_date>
<till_date>2019-10-11T11:50:59.238+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.241+02:00</creation_date>
</measured_value>
<measured_value>
<id>c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.368+02:00</from_date>
<till_date>2019-10-11T11:50:59.368+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.371+02:00</creation_date>
</measured_value>
<measured_value>
<id>8d98e723-7a07-4ccf-b3bc-7a2653952b8b</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:00.509+02:00</from_date>
<till_date>2019-10-11T11:51:00.51+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:00.516+02:00</creation_date>
</measured_value>
<measured_value>
<id>f61b7bfb-14eb-4b43-a7b6-47b61fa46dda</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:01.658+02:00</from_date>
<till_date>2019-10-11T11:51:01.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.661+02:00</creation_date>
</measured_value>
</measured_values><measured_values>
<measured_value>
<id>0fc9c4bf-7e86-4cee-b99c-7642984b5fcd</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:01.969+02:00</from_date>
<till_date>2019-10-11T11:51:01.969+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.971+02:00</creation_date>
</measured_value>
<measured_value>
<id>45e8b20c-1ab0-4cf1-9ef1-aa82537557f6</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:03.109+02:00</from_date>
<till_date>2019-10-11T11:51:03.109+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:03.111+02:00</creation_date>
</measured_value>
<measured_value>
<id>7b4f0fc3-ecec-4226-b621-49dd01cf9eb7</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:04.251+02:00</from_date>
<till_date>2019-10-11T11:51:04.252+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:04.254+02:00</creation_date>
</measured_value>
<measured_value>
<id>72ccf0a7-e680-460c-a3b8-7d14f46b5b0c</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:05.402+02:00</from_date>
<till_date>2019-10-11T11:51:05.403+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:05.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>6f5277d9-abe3-4e87-b0f1-e4320756bbac</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:06.551+02:00</from_date>
<till_date>2019-10-11T11:51:06.552+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:06.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>026370e8-2011-4bf0-8da9-ec4a9fe1ee19</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:07.7+02:00</from_date>
<till_date>2019-10-11T11:51:07.7+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:07.702+02:00</creation_date>
</measured_value>
<measured_value>
<id>e96eff46-8322-424d-9a79-51c746124354</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:08.843+02:00</from_date>
<till_date>2019-10-11T11:51:08.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:08.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>6beb6aee-6888-4f4a-82ff-5bf700a22b0a</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:09.986+02:00</from_date>
<till_date>2019-10-11T11:51:09.986+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:09.989+02:00</creation_date>
</measured_value>
<measured_value>
<id>62a8f169-344d-4f9c-828a-7b4ea4261fad</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.129+02:00</from_date>
<till_date>2019-10-11T11:51:11.13+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.133+02:00</creation_date>
</measured_value>
<measured_value>
<id>b1d64d40-59d7-4093-ba1d-208d869c9aae</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:11.264+02:00</from_date>
<till_date>2019-10-11T11:51:11.265+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:11.267+02:00</creation_date>
</measured_value>
<measured_value>
<id>f98b69ee-bef9-4609-8bfa-82f11d7f51b6</id>
<value>51</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:12.401+02:00</from_date>
<till_date>2019-10-11T11:51:12.402+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:12.41+02:00</creation_date>
</measured_value>
<measured_value>
<id>eab34e23-2b43-40c2-9d6e-90e72fa13db5</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:13.551+02:00</from_date>
<till_date>2019-10-11T11:51:13.551+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:13.554+02:00</creation_date>
</measured_value>
<measured_value>
<id>4659b946-8a40-4ba4-9888-6997bd1795f2</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:14.695+02:00</from_date>
<till_date>2019-10-11T11:51:14.695+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:14.698+02:00</creation_date>
</measured_value>
<measured_value>
<id>a6552aff-724c-4339-810a-36d911ddaa58</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.839+02:00</from_date>
<till_date>2019-10-11T11:51:15.839+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.842+02:00</creation_date>
</measured_value>
<measured_value>
<id>c311cacd-e346-4b68-902b-400be0f8e02e</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:15.976+02:00</from_date>
<till_date>2019-10-11T11:51:15.977+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:15.98+02:00</creation_date>
</measured_value>
<measured_value>
<id>2d4db614-17f8-4ddd-ba08-e2a5f77d74ea</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.118+02:00</from_date>
<till_date>2019-10-11T11:51:17.118+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.121+02:00</creation_date>
</measured_value>
<measured_value>
<id>936d61e4-494e-4959-a39a-c1dbc4a7d162</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:17.243+02:00</from_date>
<till_date>2019-10-11T11:51:17.244+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:17.247+02:00</creation_date>
</measured_value>
<measured_value>
<id>b913c9ca-4b5e-4c01-9aea-ee31d0d97977</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:18.381+02:00</from_date>
<till_date>2019-10-11T11:51:18.382+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:18.385+02:00</creation_date>
</measured_value>
<measured_value>
<id>1171d0dd-2173-4da2-b2c6-7f7daaad7cd1</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.529+02:00</from_date>
<till_date>2019-10-11T11:51:19.529+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.532+02:00</creation_date>
</measured_value>
<measured_value>
<id>d1a5e29c-d7e7-4ccc-9ff7-80ba1f797312</id>
<value>50.5</value>
<value_type>humidity</value_type>
<from_date>2019-10-11T11:51:19.664+02:00</from_date>
<till_date>2019-10-11T11:51:19.664+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:19.667+02:00</creation_date>
</measured_value>
</measured_values><measured_values>
<measured_value>
<id>140d6183-36c8-4903-a798-def4fcb3bd74</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:20.98+02:00</from_date>
<till_date>2019-10-11T11:51:20.98+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:20.982+02:00</creation_date>
</measured_value>
<measured_value>
<id>98102a36-a38e-4ccc-9886-c119a7971414</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:22.123+02:00</from_date>
<till_date>2019-10-11T11:51:22.123+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:22.125+02:00</creation_date>
</measured_value>
<measured_value>
<id>5ffe51ae-687c-47df-8936-7785de9beed7</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.261+02:00</from_date>
<till_date>2019-10-11T11:51:23.262+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:23.263+02:00</creation_date>
</measured_value>
<measured_value>
<id>e534cb23-c725-403b-b5c9-5455256a8662</id>
<value>100153</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.739+02:00</from_date>
<till_date>2019-10-11T11:51:23.739+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.594+02:00</creation_date>
</measured_value>
<measured_value>
<id>e3c2a10b-373f-43d5-b02c-b381d1ad203b</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.721+02:00</from_date>
<till_date>2019-10-11T11:51:24.721+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.723+02:00</creation_date>
</measured_value>
<measured_value>
<id>e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.849+02:00</from_date>
<till_date>2019-10-11T11:51:24.849+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:25.212+02:00</creation_date>
</measured_value>
<measured_value>
<id>70f6de4d-3a17-4688-b635-b8965e85be43</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.352+02:00</from_date>
<till_date>2019-10-11T11:51:26.352+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.354+02:00</creation_date>
</measured_value>
<measured_value>
<id>0e42478b-da36-4096-afad-d8c2a7685ccd</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.488+02:00</from_date>
<till_date>2019-10-11T11:51:26.488+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.49+02:00</creation_date>
</measured_value>
<measured_value>
<id>0313994c-db52-42d6-b059-2ca13afdd5d8</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.622+02:00</from_date>
<till_date>2019-10-11T11:51:26.622+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.624+02:00</creation_date>
</measured_value>
<measured_value>
<id>9cb66b4c-31d8-40dc-8c5b-9d243c2bb974</id>
<value>100150</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.754+02:00</from_date>
<till_date>2019-10-11T11:51:26.754+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.757+02:00</creation_date>
</measured_value>
<measured_value>
<id>6e626fdb-326d-4984-9585-7b64976be1a2</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.894+02:00</from_date>
<till_date>2019-10-11T11:51:26.894+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.896+02:00</creation_date>
</measured_value>
<measured_value>
<id>6869ae37-0200-40c2-85a5-d4412d81b62d</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:27.029+02:00</from_date>
<till_date>2019-10-11T11:51:27.029+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:27.032+02:00</creation_date>
</measured_value>
<measured_value>
<id>8a0770b9-f8b0-42de-90fe-3e6a6311818b</id>
<value>100152.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.169+02:00</from_date>
<till_date>2019-10-11T11:51:28.169+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.171+02:00</creation_date>
</measured_value>
<measured_value>
<id>cf989dbb-2e73-4042-b339-b4dbc75b0a7c</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.294+02:00</from_date>
<till_date>2019-10-11T11:51:28.294+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.296+02:00</creation_date>
</measured_value>
<measured_value>
<id>53a2d8fb-3b15-48a2-a277-1b821adba088</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.426+02:00</from_date>
<till_date>2019-10-11T11:51:28.426+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.428+02:00</creation_date>
</measured_value>
<measured_value>
<id>9de16913-67f3-4e0b-9976-ddadbd057bae</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:29.563+02:00</from_date>
<till_date>2019-10-11T11:51:29.563+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:29.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>d8c255a5-c5bd-4e9e-9aec-d0e6ae795719</id>
<value>100154.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:30.707+02:00</from_date>
<till_date>2019-10-11T11:51:30.707+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:30.71+02:00</creation_date>
</measured_value>
<measured_value>
<id>31ab31ac-e991-4081-8b4e-eba0f789b806</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:31.843+02:00</from_date>
<till_date>2019-10-11T11:51:31.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:31.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>ed2ec0a9-9bc1-424a-9edf-85aad7a059ec</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:32.981+02:00</from_date>
<till_date>2019-10-11T11:51:32.981+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:32.984+02:00</creation_date>
</measured_value>
<measured_value>
<id>31e03c4c-49a1-4c0d-a750-16c09b75f96b</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:34.125+02:00</from_date>
<till_date>2019-10-11T11:51:34.126+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:34.133+02:00</creation_date>
</measured_value>
</measured_values>

View File

@ -0,0 +1,182 @@
<measured_values>
<measured_value>
<id>140d6183-36c8-4903-a798-def4fcb3bd74</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:20.98+02:00</from_date>
<till_date>2019-10-11T11:51:20.98+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:20.982+02:00</creation_date>
</measured_value>
<measured_value>
<id>98102a36-a38e-4ccc-9886-c119a7971414</id>
<value>100151.703125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:22.123+02:00</from_date>
<till_date>2019-10-11T11:51:22.123+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:22.125+02:00</creation_date>
</measured_value>
<measured_value>
<id>5ffe51ae-687c-47df-8936-7785de9beed7</id>
<value>100150.8984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.261+02:00</from_date>
<till_date>2019-10-11T11:51:23.262+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:23.263+02:00</creation_date>
</measured_value>
<measured_value>
<id>e534cb23-c725-403b-b5c9-5455256a8662</id>
<value>100153.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.739+02:00</from_date>
<till_date>2019-10-11T11:51:23.739+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.594+02:00</creation_date>
</measured_value>
<measured_value>
<id>e3c2a10b-373f-43d5-b02c-b381d1ad203b</id>
<value>100149.296875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.721+02:00</from_date>
<till_date>2019-10-11T11:51:24.721+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.723+02:00</creation_date>
</measured_value>
<measured_value>
<id>e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94</id>
<value>100150.796875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.849+02:00</from_date>
<till_date>2019-10-11T11:51:24.849+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:25.212+02:00</creation_date>
</measured_value>
<measured_value>
<id>70f6de4d-3a17-4688-b635-b8965e85be43</id>
<value>100149.6015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.352+02:00</from_date>
<till_date>2019-10-11T11:51:26.352+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.354+02:00</creation_date>
</measured_value>
<measured_value>
<id>0e42478b-da36-4096-afad-d8c2a7685ccd</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.488+02:00</from_date>
<till_date>2019-10-11T11:51:26.488+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.49+02:00</creation_date>
</measured_value>
<measured_value>
<id>0313994c-db52-42d6-b059-2ca13afdd5d8</id>
<value>100151.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.622+02:00</from_date>
<till_date>2019-10-11T11:51:26.622+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.624+02:00</creation_date>
</measured_value>
<measured_value>
<id>9cb66b4c-31d8-40dc-8c5b-9d243c2bb974</id>
<value>100150.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.754+02:00</from_date>
<till_date>2019-10-11T11:51:26.754+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.757+02:00</creation_date>
</measured_value>
<measured_value>
<id>6e626fdb-326d-4984-9585-7b64976be1a2</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.894+02:00</from_date>
<till_date>2019-10-11T11:51:26.894+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.896+02:00</creation_date>
</measured_value>
<measured_value>
<id>6869ae37-0200-40c2-85a5-d4412d81b62d</id>
<value>100154.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:27.029+02:00</from_date>
<till_date>2019-10-11T11:51:27.029+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:27.032+02:00</creation_date>
</measured_value>
<measured_value>
<id>8a0770b9-f8b0-42de-90fe-3e6a6311818b</id>
<value>100152.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.169+02:00</from_date>
<till_date>2019-10-11T11:51:28.169+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.171+02:00</creation_date>
</measured_value>
<measured_value>
<id>cf989dbb-2e73-4042-b339-b4dbc75b0a7c</id>
<value>100151.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.294+02:00</from_date>
<till_date>2019-10-11T11:51:28.294+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.296+02:00</creation_date>
</measured_value>
<measured_value>
<id>53a2d8fb-3b15-48a2-a277-1b821adba088</id>
<value>100151.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.426+02:00</from_date>
<till_date>2019-10-11T11:51:28.426+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.428+02:00</creation_date>
</measured_value>
<measured_value>
<id>9de16913-67f3-4e0b-9976-ddadbd057bae</id>
<value>100153.8984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:29.563+02:00</from_date>
<till_date>2019-10-11T11:51:29.563+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:29.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>d8c255a5-c5bd-4e9e-9aec-d0e6ae795719</id>
<value>100154.6015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:30.707+02:00</from_date>
<till_date>2019-10-11T11:51:30.707+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:30.71+02:00</creation_date>
</measured_value>
<measured_value>
<id>31ab31ac-e991-4081-8b4e-eba0f789b806</id>
<value>100153.796875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:31.843+02:00</from_date>
<till_date>2019-10-11T11:51:31.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:31.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>ed2ec0a9-9bc1-424a-9edf-85aad7a059ec</id>
<value>100150.703125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:32.981+02:00</from_date>
<till_date>2019-10-11T11:51:32.981+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:32.984+02:00</creation_date>
</measured_value>
<measured_value>
<id>31e03c4c-49a1-4c0d-a750-16c09b75f96b</id>
<value>100151.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:34.125+02:00</from_date>
<till_date>2019-10-11T11:51:34.126+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:34.133+02:00</creation_date>
</measured_value>
</measured_values>

View File

@ -0,0 +1,174 @@
<measured_values>
<measured_value>
<id>140d6183-36c8-4903-a798-def4fcb3bd74</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:20.98+02:00</from_date>
<till_date>2019-10-11T11:51:20.98+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:20.982+02:00</creation_date>
</measured_value>
<measured_value>
<id>98102a36-a38e-4ccc-9886-c119a7971414</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:22.123+02:00</from_date>
<till_date>2019-10-11T11:51:22.123+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:22.125+02:00</creation_date>
</measured_value>
<measured_value>
<id>5ffe51ae-687c-47df-8936-7785de9beed7</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.261+02:00</from_date>
<till_date>2019-10-11T11:51:23.262+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:23.263+02:00</creation_date>
</measured_value>
<measured_value>
<id>e534cb23-c725-403b-b5c9-5455256a8662</id>
<value>100153</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.739+02:00</from_date>
<till_date>2019-10-11T11:51:23.739+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.594+02:00</creation_date>
</measured_value>
<measured_value>
<id>e3c2a10b-373f-43d5-b02c-b381d1ad203b</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.721+02:00</from_date>
<till_date>2019-10-11T11:51:24.721+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.723+02:00</creation_date>
</measured_value>
<measured_value>
<id>e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.849+02:00</from_date>
<till_date>2019-10-11T11:51:24.849+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:25.212+02:00</creation_date>
</measured_value>
<measured_value>
<id>70f6de4d-3a17-4688-b635-b8965e85be43</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.352+02:00</from_date>
<till_date>2019-10-11T11:51:26.488+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.354+02:00</creation_date>
<update_date>2019-10-11T11:51:35.333+02:00</update_date>
</measured_value>
<measured_value>
<id>0313994c-db52-42d6-b059-2ca13afdd5d8</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.622+02:00</from_date>
<till_date>2019-10-11T11:51:26.622+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.624+02:00</creation_date>
</measured_value>
<measured_value>
<id>9cb66b4c-31d8-40dc-8c5b-9d243c2bb974</id>
<value>100150</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.754+02:00</from_date>
<till_date>2019-10-11T11:51:26.754+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.757+02:00</creation_date>
</measured_value>
<measured_value>
<id>6e626fdb-326d-4984-9585-7b64976be1a2</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.894+02:00</from_date>
<till_date>2019-10-11T11:51:26.894+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.896+02:00</creation_date>
</measured_value>
<measured_value>
<id>6869ae37-0200-40c2-85a5-d4412d81b62d</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:27.029+02:00</from_date>
<till_date>2019-10-11T11:51:27.029+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:27.032+02:00</creation_date>
</measured_value>
<measured_value>
<id>8a0770b9-f8b0-42de-90fe-3e6a6311818b</id>
<value>100152.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.169+02:00</from_date>
<till_date>2019-10-11T11:51:28.169+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.171+02:00</creation_date>
</measured_value>
<measured_value>
<id>cf989dbb-2e73-4042-b339-b4dbc75b0a7c</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.294+02:00</from_date>
<till_date>2019-10-11T11:51:28.294+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.296+02:00</creation_date>
</measured_value>
<measured_value>
<id>53a2d8fb-3b15-48a2-a277-1b821adba088</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.426+02:00</from_date>
<till_date>2019-10-11T11:51:28.426+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.428+02:00</creation_date>
</measured_value>
<measured_value>
<id>9de16913-67f3-4e0b-9976-ddadbd057bae</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:29.563+02:00</from_date>
<till_date>2019-10-11T11:51:29.563+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:29.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>d8c255a5-c5bd-4e9e-9aec-d0e6ae795719</id>
<value>100154.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:30.707+02:00</from_date>
<till_date>2019-10-11T11:51:30.707+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:30.71+02:00</creation_date>
</measured_value>
<measured_value>
<id>31ab31ac-e991-4081-8b4e-eba0f789b806</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:31.843+02:00</from_date>
<till_date>2019-10-11T11:51:31.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:31.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>ed2ec0a9-9bc1-424a-9edf-85aad7a059ec</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:32.981+02:00</from_date>
<till_date>2019-10-11T11:51:32.981+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:32.984+02:00</creation_date>
</measured_value>
<measured_value>
<id>31e03c4c-49a1-4c0d-a750-16c09b75f96b</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:34.125+02:00</from_date>
<till_date>2019-10-11T11:51:34.126+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:34.133+02:00</creation_date>
</measured_value>
</measured_values>

View File

@ -1,101 +1,182 @@
<measured_values> <measured_values>
<measured_value> <measured_value>
<id>c18c918e-180b-40ea-8509-b37a2d19c1b8</id> <id>140d6183-36c8-4903-a798-def4fcb3bd74</id>
<value>98527.1015625</value> <value>100150.5</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:29:56.579+02:00</from_date> <from_date>2019-10-11T11:51:20.98+02:00</from_date>
<till_date>2019-09-29T19:29:56.579+02:00</till_date> <till_date>2019-10-11T11:51:20.98+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.941+02:00</creation_date> <creation_date>2019-10-11T11:51:20.982+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>31269000-f855-472c-b607-5ef7dbcc2d3b</id> <id>98102a36-a38e-4ccc-9886-c119a7971414</id>
<value>98531.296875</value> <value>100151.703125</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:29:58.02+02:00</from_date> <from_date>2019-10-11T11:51:22.123+02:00</from_date>
<till_date>2019-09-29T19:29:58.02+02:00</till_date> <till_date>2019-10-11T11:51:22.123+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.941+02:00</creation_date> <creation_date>2019-10-11T11:51:22.125+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>7df14e44-185e-43a4-ba67-c86561bf19a0</id> <id>5ffe51ae-687c-47df-8936-7785de9beed7</id>
<value>98526.8984375</value> <value>100150.8984375</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:29:58.886+02:00</from_date> <from_date>2019-10-11T11:51:23.261+02:00</from_date>
<till_date>2019-09-29T19:29:58.886+02:00</till_date> <till_date>2019-10-11T11:51:23.262+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.941+02:00</creation_date> <creation_date>2019-10-11T11:51:23.263+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>e63f2d08-cbbe-43c6-80f6-70e504aebce5</id> <id>e534cb23-c725-403b-b5c9-5455256a8662</id>
<value>98530.5</value> <value>100153.203125</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:29:59.657+02:00</from_date> <from_date>2019-10-11T11:51:23.739+02:00</from_date>
<till_date>2019-09-29T19:29:59.658+02:00</till_date> <till_date>2019-10-11T11:51:23.739+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.941+02:00</creation_date> <creation_date>2019-10-11T11:51:24.594+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>1ce5e316-8ae5-4ddb-ae6c-5b2b6c9fd83c</id> <id>e3c2a10b-373f-43d5-b02c-b381d1ad203b</id>
<value>98529.796875</value> <value>100149.296875</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:30:00.301+02:00</from_date> <from_date>2019-10-11T11:51:24.721+02:00</from_date>
<till_date>2019-09-29T19:30:00.302+02:00</till_date> <till_date>2019-10-11T11:51:24.721+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.941+02:00</creation_date> <creation_date>2019-10-11T11:51:24.723+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>b002af5d-3ef0-4608-b6c6-2745be36c7f0</id> <id>e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94</id>
<value>98530.1015625</value> <value>100150.796875</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:30:00.878+02:00</from_date> <from_date>2019-10-11T11:51:24.849+02:00</from_date>
<till_date>2019-09-29T19:30:00.879+02:00</till_date> <till_date>2019-10-11T11:51:24.849+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.941+02:00</creation_date> <creation_date>2019-10-11T11:51:25.212+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>e0753df7-865d-41ec-a2fc-58692c0e6a12</id> <id>70f6de4d-3a17-4688-b635-b8965e85be43</id>
<value>98530.3984375</value> <value>100149.6015625</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:30:01.513+02:00</from_date> <from_date>2019-10-11T11:51:26.352+02:00</from_date>
<till_date>2019-09-29T19:30:01.513+02:00</till_date> <till_date>2019-10-11T11:51:26.352+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.942+02:00</creation_date> <creation_date>2019-10-11T11:51:26.354+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>a46d74d4-dce8-497d-a08a-a609d2ed1238</id> <id>0e42478b-da36-4096-afad-d8c2a7685ccd</id>
<value>98532.5</value> <value>100149.5</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:30:02.095+02:00</from_date> <from_date>2019-10-11T11:51:26.488+02:00</from_date>
<till_date>2019-09-29T19:30:02.095+02:00</till_date> <till_date>2019-10-11T11:51:26.488+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.942+02:00</creation_date> <creation_date>2019-10-11T11:51:26.49+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>2a17ada0-caad-42d3-b12e-9ef432d79e59</id> <id>0313994c-db52-42d6-b059-2ca13afdd5d8</id>
<value>98532.203125</value> <value>100151.3984375</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:30:02.643+02:00</from_date> <from_date>2019-10-11T11:51:26.622+02:00</from_date>
<till_date>2019-09-29T19:30:02.643+02:00</till_date> <till_date>2019-10-11T11:51:26.622+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.942+02:00</creation_date> <creation_date>2019-10-11T11:51:26.624+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>f83d1000-9fe5-4ced-9c10-587525b2a9e7</id> <id>9cb66b4c-31d8-40dc-8c5b-9d243c2bb974</id>
<value>98528.296875</value> <value>100150.203125</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:30:03.26+02:00</from_date> <from_date>2019-10-11T11:51:26.754+02:00</from_date>
<till_date>2019-09-29T19:30:03.26+02:00</till_date> <till_date>2019-10-11T11:51:26.754+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.942+02:00</creation_date> <creation_date>2019-10-11T11:51:26.757+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>e2d50392-2d67-4324-add5-dd5c566ba826</id> <id>6e626fdb-326d-4984-9585-7b64976be1a2</id>
<value>98532.796875</value> <value>100150.5</value>
<value_type>pressure</value_type> <value_type>pressure</value_type>
<from_date>2019-09-29T19:30:03.835+02:00</from_date> <from_date>2019-10-11T11:51:26.894+02:00</from_date>
<till_date>2019-09-29T19:30:03.835+02:00</till_date> <till_date>2019-10-11T11:51:26.894+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:01.942+02:00</creation_date> <creation_date>2019-10-11T11:51:26.896+02:00</creation_date>
</measured_value>
<measured_value>
<id>6869ae37-0200-40c2-85a5-d4412d81b62d</id>
<value>100154.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:27.029+02:00</from_date>
<till_date>2019-10-11T11:51:27.029+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:27.032+02:00</creation_date>
</measured_value>
<measured_value>
<id>8a0770b9-f8b0-42de-90fe-3e6a6311818b</id>
<value>100152.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.169+02:00</from_date>
<till_date>2019-10-11T11:51:28.169+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.171+02:00</creation_date>
</measured_value>
<measured_value>
<id>cf989dbb-2e73-4042-b339-b4dbc75b0a7c</id>
<value>100151.3984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.294+02:00</from_date>
<till_date>2019-10-11T11:51:28.294+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.296+02:00</creation_date>
</measured_value>
<measured_value>
<id>53a2d8fb-3b15-48a2-a277-1b821adba088</id>
<value>100151.1015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.426+02:00</from_date>
<till_date>2019-10-11T11:51:28.426+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.428+02:00</creation_date>
</measured_value>
<measured_value>
<id>9de16913-67f3-4e0b-9976-ddadbd057bae</id>
<value>100153.8984375</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:29.563+02:00</from_date>
<till_date>2019-10-11T11:51:29.563+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:29.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>d8c255a5-c5bd-4e9e-9aec-d0e6ae795719</id>
<value>100154.6015625</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:30.707+02:00</from_date>
<till_date>2019-10-11T11:51:30.707+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:30.71+02:00</creation_date>
</measured_value>
<measured_value>
<id>31ab31ac-e991-4081-8b4e-eba0f789b806</id>
<value>100153.796875</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:31.843+02:00</from_date>
<till_date>2019-10-11T11:51:31.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:31.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>ed2ec0a9-9bc1-424a-9edf-85aad7a059ec</id>
<value>100150.703125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:32.981+02:00</from_date>
<till_date>2019-10-11T11:51:32.981+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:32.984+02:00</creation_date>
</measured_value>
<measured_value>
<id>31e03c4c-49a1-4c0d-a750-16c09b75f96b</id>
<value>100151.203125</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:34.125+02:00</from_date>
<till_date>2019-10-11T11:51:34.126+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:34.133+02:00</creation_date>
</measured_value> </measured_value>
</measured_values> </measured_values>

View File

@ -0,0 +1,182 @@
<measured_values>
<measured_value>
<id>140d6183-36c8-4903-a798-def4fcb3bd74</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:20.98+02:00</from_date>
<till_date>2019-10-11T11:51:20.98+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:20.982+02:00</creation_date>
</measured_value>
<measured_value>
<id>98102a36-a38e-4ccc-9886-c119a7971414</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:22.123+02:00</from_date>
<till_date>2019-10-11T11:51:22.123+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:22.125+02:00</creation_date>
</measured_value>
<measured_value>
<id>5ffe51ae-687c-47df-8936-7785de9beed7</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.261+02:00</from_date>
<till_date>2019-10-11T11:51:23.262+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:23.263+02:00</creation_date>
</measured_value>
<measured_value>
<id>e534cb23-c725-403b-b5c9-5455256a8662</id>
<value>100153</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:23.739+02:00</from_date>
<till_date>2019-10-11T11:51:23.739+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.594+02:00</creation_date>
</measured_value>
<measured_value>
<id>e3c2a10b-373f-43d5-b02c-b381d1ad203b</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.721+02:00</from_date>
<till_date>2019-10-11T11:51:24.721+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:24.723+02:00</creation_date>
</measured_value>
<measured_value>
<id>e9fbdd79-10ca-4fda-aed4-6fa2dbf3ff94</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:24.849+02:00</from_date>
<till_date>2019-10-11T11:51:24.849+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:25.212+02:00</creation_date>
</measured_value>
<measured_value>
<id>70f6de4d-3a17-4688-b635-b8965e85be43</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.352+02:00</from_date>
<till_date>2019-10-11T11:51:26.352+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.354+02:00</creation_date>
</measured_value>
<measured_value>
<id>0e42478b-da36-4096-afad-d8c2a7685ccd</id>
<value>100149.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.488+02:00</from_date>
<till_date>2019-10-11T11:51:26.488+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.49+02:00</creation_date>
</measured_value>
<measured_value>
<id>0313994c-db52-42d6-b059-2ca13afdd5d8</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.622+02:00</from_date>
<till_date>2019-10-11T11:51:26.622+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.624+02:00</creation_date>
</measured_value>
<measured_value>
<id>9cb66b4c-31d8-40dc-8c5b-9d243c2bb974</id>
<value>100150</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.754+02:00</from_date>
<till_date>2019-10-11T11:51:26.754+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.757+02:00</creation_date>
</measured_value>
<measured_value>
<id>6e626fdb-326d-4984-9585-7b64976be1a2</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:26.894+02:00</from_date>
<till_date>2019-10-11T11:51:26.894+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:26.896+02:00</creation_date>
</measured_value>
<measured_value>
<id>6869ae37-0200-40c2-85a5-d4412d81b62d</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:27.029+02:00</from_date>
<till_date>2019-10-11T11:51:27.029+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:27.032+02:00</creation_date>
</measured_value>
<measured_value>
<id>8a0770b9-f8b0-42de-90fe-3e6a6311818b</id>
<value>100152.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.169+02:00</from_date>
<till_date>2019-10-11T11:51:28.169+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.171+02:00</creation_date>
</measured_value>
<measured_value>
<id>cf989dbb-2e73-4042-b339-b4dbc75b0a7c</id>
<value>100151.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.294+02:00</from_date>
<till_date>2019-10-11T11:51:28.294+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.296+02:00</creation_date>
</measured_value>
<measured_value>
<id>53a2d8fb-3b15-48a2-a277-1b821adba088</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:28.426+02:00</from_date>
<till_date>2019-10-11T11:51:28.426+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:28.428+02:00</creation_date>
</measured_value>
<measured_value>
<id>9de16913-67f3-4e0b-9976-ddadbd057bae</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:29.563+02:00</from_date>
<till_date>2019-10-11T11:51:29.563+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:29.565+02:00</creation_date>
</measured_value>
<measured_value>
<id>d8c255a5-c5bd-4e9e-9aec-d0e6ae795719</id>
<value>100154.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:30.707+02:00</from_date>
<till_date>2019-10-11T11:51:30.707+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:30.71+02:00</creation_date>
</measured_value>
<measured_value>
<id>31ab31ac-e991-4081-8b4e-eba0f789b806</id>
<value>100154</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:31.843+02:00</from_date>
<till_date>2019-10-11T11:51:31.843+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:31.846+02:00</creation_date>
</measured_value>
<measured_value>
<id>ed2ec0a9-9bc1-424a-9edf-85aad7a059ec</id>
<value>100150.5</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:32.981+02:00</from_date>
<till_date>2019-10-11T11:51:32.981+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:32.984+02:00</creation_date>
</measured_value>
<measured_value>
<id>31e03c4c-49a1-4c0d-a750-16c09b75f96b</id>
<value>100151</value>
<value_type>pressure</value_type>
<from_date>2019-10-11T11:51:34.125+02:00</from_date>
<till_date>2019-10-11T11:51:34.126+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:34.133+02:00</creation_date>
</measured_value>
</measured_values>

View File

@ -0,0 +1,115 @@
<measured_values>
<measured_value>
<id>2029cc8c-56cf-4cd1-adf8-06e768fbad29</id>
<value>20.90999984741211</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:43.317+02:00</from_date>
<till_date>2019-10-11T11:50:43.317+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:43.319+02:00</creation_date>
</measured_value>
<measured_value>
<id>a588cc90-4dca-4a4e-be81-2d20b9f64458</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:44.459+02:00</from_date>
<till_date>2019-10-11T11:50:47.745+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:44.473+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
<measured_value>
<id>88f5c095-8e88-4c80-b66a-cf154919afa8</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:49.53+02:00</from_date>
<till_date>2019-10-11T11:50:49.53+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:50.018+02:00</creation_date>
</measured_value>
<measured_value>
<id>7c3b7eac-3b43-4461-b204-d74c2bde3a08</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:51.187+02:00</from_date>
<till_date>2019-10-11T11:50:53.652+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:51.189+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
<measured_value>
<id>acb55d68-d909-41ba-a445-8ef9eab0c7aa</id>
<value>20.950000762939453</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:53.788+02:00</from_date>
<till_date>2019-10-11T11:50:53.789+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:53.79+02:00</creation_date>
</measured_value>
<measured_value>
<id>6563ff1e-371b-46a2-aca8-cc49b418bf61</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:54.929+02:00</from_date>
<till_date>2019-10-11T11:50:55.536+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.405+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
<measured_value>
<id>157eda79-3283-4cda-a21d-db0aa2da8548</id>
<value>20.959999084472656</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.674+02:00</from_date>
<till_date>2019-10-11T11:50:55.674+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.677+02:00</creation_date>
</measured_value>
<measured_value>
<id>c7d8d6ce-59d9-4448-9934-69cebc071cf6</id>
<value>20.940000534057617</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:56.817+02:00</from_date>
<till_date>2019-10-11T11:50:56.817+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:56.82+02:00</creation_date>
</measured_value>
<measured_value>
<id>07d08037-7267-44ab-8d90-878271809a4c</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:57.959+02:00</from_date>
<till_date>2019-10-11T11:50:59.1+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:57.962+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
<measured_value>
<id>0b865113-d0f4-42f4-af3d-50e60edcc523</id>
<value>20.959999084472656</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.238+02:00</from_date>
<till_date>2019-10-11T11:50:59.238+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.241+02:00</creation_date>
</measured_value>
<measured_value>
<id>c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2</id>
<value>20.979999542236328</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.368+02:00</from_date>
<till_date>2019-10-11T11:50:59.368+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.371+02:00</creation_date>
</measured_value>
<measured_value>
<id>8d98e723-7a07-4ccf-b3bc-7a2653952b8b</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:00.509+02:00</from_date>
<till_date>2019-10-11T11:51:01.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:00.516+02:00</creation_date>
<update_date>2019-10-11T11:51:01.827+02:00</update_date>
</measured_value>
</measured_values>

View File

@ -0,0 +1,12 @@
<measured_values>
<measured_value>
<id>2029cc8c-56cf-4cd1-adf8-06e768fbad29</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:43.317+02:00</from_date>
<till_date>2019-10-11T11:51:01.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:43.319+02:00</creation_date>
<update_date>2019-10-11T11:51:01.856+02:00</update_date>
</measured_value>
</measured_values>

View File

@ -1,101 +1,182 @@
<measured_values> <measured_values>
<measured_value> <measured_value>
<id>63d546fe-4e27-4816-8e8c-cd16026cf079</id> <id>2029cc8c-56cf-4cd1-adf8-06e768fbad29</id>
<value>22.040000915527344</value> <value>20.90999984741211</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:12.887+02:00</from_date> <from_date>2019-10-11T11:50:43.317+02:00</from_date>
<till_date>2019-09-29T19:26:12.887+02:00</till_date> <till_date>2019-10-11T11:50:43.317+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.37+02:00</creation_date> <creation_date>2019-10-11T11:50:43.319+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>ac3dddda-a669-4215-8174-42eaa3af741b</id> <id>a588cc90-4dca-4a4e-be81-2d20b9f64458</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:13.312+02:00</from_date> <from_date>2019-10-11T11:50:44.459+02:00</from_date>
<till_date>2019-09-29T19:26:13.312+02:00</till_date> <till_date>2019-10-11T11:50:44.459+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.37+02:00</creation_date> <creation_date>2019-10-11T11:50:44.473+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>0031e9f2-5795-4a03-b1dd-a5d9b4c7f8ae</id> <id>1ebb60de-6066-4731-9f55-ee1c51748b7f</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:13.848+02:00</from_date> <from_date>2019-10-11T11:50:45.614+02:00</from_date>
<till_date>2019-09-29T19:26:13.848+02:00</till_date> <till_date>2019-10-11T11:50:45.614+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.37+02:00</creation_date> <creation_date>2019-10-11T11:50:45.615+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>2ebc3339-974e-4a8f-bec1-531f9045ffe6</id> <id>6cbc586f-a5c9-4296-b3b2-200afae12059</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:14.381+02:00</from_date> <from_date>2019-10-11T11:50:46.776+02:00</from_date>
<till_date>2019-09-29T19:26:14.382+02:00</till_date> <till_date>2019-10-11T11:50:46.776+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.37+02:00</creation_date> <creation_date>2019-10-11T11:50:47.134+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>dfa35a46-803b-4c21-9cbc-092efc8d3646</id> <id>14e03e32-f214-4f61-97b0-8e021c47bead</id>
<value>22.059999465942383</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:14.923+02:00</from_date> <from_date>2019-10-11T11:50:47.745+02:00</from_date>
<till_date>2019-09-29T19:26:14.923+02:00</till_date> <till_date>2019-10-11T11:50:47.745+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.37+02:00</creation_date> <creation_date>2019-10-11T11:50:47.747+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>ce284f94-6032-467a-804d-34f7dc47ffcb</id> <id>88f5c095-8e88-4c80-b66a-cf154919afa8</id>
<value>22.049999237060547</value> <value>20.93000030517578</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:15.472+02:00</from_date> <from_date>2019-10-11T11:50:49.53+02:00</from_date>
<till_date>2019-09-29T19:26:15.472+02:00</till_date> <till_date>2019-10-11T11:50:49.53+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.37+02:00</creation_date> <creation_date>2019-10-11T11:50:50.018+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>9926b8e7-2092-48c7-9906-856af2fa7251</id> <id>7c3b7eac-3b43-4461-b204-d74c2bde3a08</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:16.001+02:00</from_date> <from_date>2019-10-11T11:50:51.187+02:00</from_date>
<till_date>2019-09-29T19:26:16.001+02:00</till_date> <till_date>2019-10-11T11:50:51.187+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.37+02:00</creation_date> <creation_date>2019-10-11T11:50:51.189+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>9170f2e0-c6aa-4c75-95dc-d1f129df541f</id> <id>3caf0b08-38d5-4536-baa5-86d4d75e359d</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:16.591+02:00</from_date> <from_date>2019-10-11T11:50:52.508+02:00</from_date>
<till_date>2019-09-29T19:26:16.591+02:00</till_date> <till_date>2019-10-11T11:50:52.508+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.371+02:00</creation_date> <creation_date>2019-10-11T11:50:52.51+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>ebce8428-d414-4ed2-98c1-2f3b8b45dd0b</id> <id>4b8595bf-3624-4963-b796-efc648515cd9</id>
<value>22.049999237060547</value> <value>20.920000076293945</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:17.124+02:00</from_date> <from_date>2019-10-11T11:50:53.652+02:00</from_date>
<till_date>2019-09-29T19:26:17.124+02:00</till_date> <till_date>2019-10-11T11:50:53.652+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.371+02:00</creation_date> <creation_date>2019-10-11T11:50:53.654+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>58e55045-33c6-4122-a2d9-b5bc12059b77</id> <id>acb55d68-d909-41ba-a445-8ef9eab0c7aa</id>
<value>22.059999465942383</value> <value>20.950000762939453</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:17.679+02:00</from_date> <from_date>2019-10-11T11:50:53.788+02:00</from_date>
<till_date>2019-09-29T19:26:17.679+02:00</till_date> <till_date>2019-10-11T11:50:53.789+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.371+02:00</creation_date> <creation_date>2019-10-11T11:50:53.79+02:00</creation_date>
</measured_value> </measured_value>
<measured_value> <measured_value>
<id>1df7d65b-149c-46f5-a377-5d9ad399f471</id> <id>6563ff1e-371b-46a2-aca8-cc49b418bf61</id>
<value>22.049999237060547</value> <value>20.93000030517578</value>
<value_type>temperature</value_type> <value_type>temperature</value_type>
<from_date>2019-09-29T19:26:18.291+02:00</from_date> <from_date>2019-10-11T11:50:54.929+02:00</from_date>
<till_date>2019-09-29T19:26:18.291+02:00</till_date> <till_date>2019-10-11T11:50:54.93+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id> <sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-09-29T19:44:02.371+02:00</creation_date> <creation_date>2019-10-11T11:50:55.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>a64f57c4-b95c-45b1-b78a-a6be263abb85</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.536+02:00</from_date>
<till_date>2019-10-11T11:50:55.536+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.538+02:00</creation_date>
</measured_value>
<measured_value>
<id>157eda79-3283-4cda-a21d-db0aa2da8548</id>
<value>20.959999084472656</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.674+02:00</from_date>
<till_date>2019-10-11T11:50:55.674+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.677+02:00</creation_date>
</measured_value>
<measured_value>
<id>c7d8d6ce-59d9-4448-9934-69cebc071cf6</id>
<value>20.940000534057617</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:56.817+02:00</from_date>
<till_date>2019-10-11T11:50:56.817+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:56.82+02:00</creation_date>
</measured_value>
<measured_value>
<id>07d08037-7267-44ab-8d90-878271809a4c</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:57.959+02:00</from_date>
<till_date>2019-10-11T11:50:57.96+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:57.962+02:00</creation_date>
</measured_value>
<measured_value>
<id>bf2e981f-8bad-466e-9a12-c1a5d9b64399</id>
<value>20.93000030517578</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.1+02:00</from_date>
<till_date>2019-10-11T11:50:59.1+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.103+02:00</creation_date>
</measured_value>
<measured_value>
<id>0b865113-d0f4-42f4-af3d-50e60edcc523</id>
<value>20.959999084472656</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.238+02:00</from_date>
<till_date>2019-10-11T11:50:59.238+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.241+02:00</creation_date>
</measured_value>
<measured_value>
<id>c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2</id>
<value>20.979999542236328</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.368+02:00</from_date>
<till_date>2019-10-11T11:50:59.368+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.371+02:00</creation_date>
</measured_value>
<measured_value>
<id>8d98e723-7a07-4ccf-b3bc-7a2653952b8b</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:00.509+02:00</from_date>
<till_date>2019-10-11T11:51:00.51+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:00.516+02:00</creation_date>
</measured_value>
<measured_value>
<id>f61b7bfb-14eb-4b43-a7b6-47b61fa46dda</id>
<value>20.920000076293945</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:01.658+02:00</from_date>
<till_date>2019-10-11T11:51:01.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.661+02:00</creation_date>
</measured_value> </measured_value>
</measured_values> </measured_values>

View File

@ -0,0 +1,182 @@
<measured_values>
<measured_value>
<id>2029cc8c-56cf-4cd1-adf8-06e768fbad29</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:43.317+02:00</from_date>
<till_date>2019-10-11T11:50:43.317+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:43.319+02:00</creation_date>
</measured_value>
<measured_value>
<id>a588cc90-4dca-4a4e-be81-2d20b9f64458</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:44.459+02:00</from_date>
<till_date>2019-10-11T11:50:44.459+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:44.473+02:00</creation_date>
</measured_value>
<measured_value>
<id>1ebb60de-6066-4731-9f55-ee1c51748b7f</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:45.614+02:00</from_date>
<till_date>2019-10-11T11:50:45.614+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:45.615+02:00</creation_date>
</measured_value>
<measured_value>
<id>6cbc586f-a5c9-4296-b3b2-200afae12059</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:46.776+02:00</from_date>
<till_date>2019-10-11T11:50:46.776+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:47.134+02:00</creation_date>
</measured_value>
<measured_value>
<id>14e03e32-f214-4f61-97b0-8e021c47bead</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:47.745+02:00</from_date>
<till_date>2019-10-11T11:50:47.745+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:47.747+02:00</creation_date>
</measured_value>
<measured_value>
<id>88f5c095-8e88-4c80-b66a-cf154919afa8</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:49.53+02:00</from_date>
<till_date>2019-10-11T11:50:49.53+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:50.018+02:00</creation_date>
</measured_value>
<measured_value>
<id>7c3b7eac-3b43-4461-b204-d74c2bde3a08</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:51.187+02:00</from_date>
<till_date>2019-10-11T11:50:51.187+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:51.189+02:00</creation_date>
</measured_value>
<measured_value>
<id>3caf0b08-38d5-4536-baa5-86d4d75e359d</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:52.508+02:00</from_date>
<till_date>2019-10-11T11:50:52.508+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:52.51+02:00</creation_date>
</measured_value>
<measured_value>
<id>4b8595bf-3624-4963-b796-efc648515cd9</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:53.652+02:00</from_date>
<till_date>2019-10-11T11:50:53.652+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:53.654+02:00</creation_date>
</measured_value>
<measured_value>
<id>acb55d68-d909-41ba-a445-8ef9eab0c7aa</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:53.788+02:00</from_date>
<till_date>2019-10-11T11:50:53.789+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:53.79+02:00</creation_date>
</measured_value>
<measured_value>
<id>6563ff1e-371b-46a2-aca8-cc49b418bf61</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:54.929+02:00</from_date>
<till_date>2019-10-11T11:50:54.93+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.405+02:00</creation_date>
</measured_value>
<measured_value>
<id>a64f57c4-b95c-45b1-b78a-a6be263abb85</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.536+02:00</from_date>
<till_date>2019-10-11T11:50:55.536+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.538+02:00</creation_date>
</measured_value>
<measured_value>
<id>157eda79-3283-4cda-a21d-db0aa2da8548</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:55.674+02:00</from_date>
<till_date>2019-10-11T11:50:55.674+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:55.677+02:00</creation_date>
</measured_value>
<measured_value>
<id>c7d8d6ce-59d9-4448-9934-69cebc071cf6</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:56.817+02:00</from_date>
<till_date>2019-10-11T11:50:56.817+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:56.82+02:00</creation_date>
</measured_value>
<measured_value>
<id>07d08037-7267-44ab-8d90-878271809a4c</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:57.959+02:00</from_date>
<till_date>2019-10-11T11:50:57.96+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:57.962+02:00</creation_date>
</measured_value>
<measured_value>
<id>bf2e981f-8bad-466e-9a12-c1a5d9b64399</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.1+02:00</from_date>
<till_date>2019-10-11T11:50:59.1+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.103+02:00</creation_date>
</measured_value>
<measured_value>
<id>0b865113-d0f4-42f4-af3d-50e60edcc523</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.238+02:00</from_date>
<till_date>2019-10-11T11:50:59.238+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.241+02:00</creation_date>
</measured_value>
<measured_value>
<id>c40ad502-b6f1-49d8-8b6d-e7d5e475a6e2</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:50:59.368+02:00</from_date>
<till_date>2019-10-11T11:50:59.368+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:50:59.371+02:00</creation_date>
</measured_value>
<measured_value>
<id>8d98e723-7a07-4ccf-b3bc-7a2653952b8b</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:00.509+02:00</from_date>
<till_date>2019-10-11T11:51:00.51+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:00.516+02:00</creation_date>
</measured_value>
<measured_value>
<id>f61b7bfb-14eb-4b43-a7b6-47b61fa46dda</id>
<value>21</value>
<value_type>temperature</value_type>
<from_date>2019-10-11T11:51:01.658+02:00</from_date>
<till_date>2019-10-11T11:51:01.658+02:00</till_date>
<sensor_id>d7fc0e1f-9d5a-45c7-bc01-e85bd1b610c6</sensor_id>
<creation_date>2019-10-11T11:51:01.661+02:00</creation_date>
</measured_value>
</measured_values>