diff --git a/broker/Dockerfile_multiarch b/broker/Dockerfile_multiarch
new file mode 100644
index 00000000..d685c6fa
--- /dev/null
+++ b/broker/Dockerfile_multiarch
@@ -0,0 +1,5 @@
+FROM alpine
+ARG TARGETOS
+ARG TARGETARCH
+ADD /${TARGETOS}/${TARGETARCH}/broker /
+CMD ["/broker"]
diff --git a/broker/build b/broker/build
index 9e2ba5fc..8042e251 100755
--- a/broker/build
+++ b/broker/build
@@ -29,6 +29,13 @@ case "${command}" in
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -a -installsuffix cgo -o broker_arm64
time docker build -f Dockerfile4Armv8 -t "fogflow/broker:arm64" .
;;
+ "multiarch")
+ go get
+ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -o linux/amd64/broker
+ CGO_ENABLED=0 GOOS=linux GOARCH=arm go build -a -installsuffix cgo -o linux/arm/broker
+ CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -a -installsuffix cgo -o linux/arm64/broker
+ time docker buildx build --platform linux/arm,linux/arm64,linux/amd64 --push -f ./Dockerfile_multiarch -t "fogflow/broker" .
+ ;;
*)
echo "Command not Found."
echo "usage: ./build [multistage|development|arm|arm64]"
diff --git a/broker/build_k8s b/broker/build_k8s
new file mode 100644
index 00000000..935045fa
--- /dev/null
+++ b/broker/build_k8s
@@ -0,0 +1 @@
+docker buildx build --platform linux/arm,linux/arm64,linux/amd64 --push -f ./Dockerfile_multiarch -t "fogflow/broker:k8s" .
diff --git a/broker/ngsild.go b/broker/ngsild.go
index 58078ab8..7f2b53a0 100644
--- a/broker/ngsild.go
+++ b/broker/ngsild.go
@@ -23,6 +23,8 @@ func (tb *ThinBroker) NGSILD_UpdateContext(w rest.ResponseWriter, r *rest.Reques
updateCtxReq := UpdateContextRequest{}
numUpdates := updateCtxReq.ReadFromNGSILD(ngsildUpsert)
+ // DEBUG.Println(updateCtxReq)
+
if numUpdates > 0 {
tb.handleInternalUpdateContext(&updateCtxReq)
}
@@ -44,6 +46,8 @@ func (tb *ThinBroker) NGSILD_CreateEntity(w rest.ResponseWriter, r *rest.Request
updateCtxReq := UpdateContextRequest{}
numUpdates := updateCtxReq.ReadFromNGSILD(ngsildUpsert)
+ // DEBUG.Println(updateCtxReq)
+
if numUpdates > 0 {
tb.handleInternalUpdateContext(&updateCtxReq)
}
diff --git a/broker/ngsiv1.go b/broker/ngsiv1.go
index 93d8a79c..261db141 100644
--- a/broker/ngsiv1.go
+++ b/broker/ngsiv1.go
@@ -3,6 +3,7 @@ package main
import (
"io/ioutil"
"net/http"
+ "strings"
"github.com/ant0ine/go-json-rest/rest"
"github.com/google/uuid"
@@ -119,6 +120,8 @@ func (tb *ThinBroker) NGSIV1_SubscribeContext(w rest.ResponseWriter, r *rest.Req
subReq := SubscribeContextRequest{}
subReq.Attributes = make([]string, 0)
+ DEBUG.Println("Subscription request from: ", r.RemoteAddr)
+
err := r.DecodeJsonPayload(&subReq)
if err != nil {
rest.Error(w, err.Error(), http.StatusInternalServerError)
@@ -132,20 +135,22 @@ func (tb *ThinBroker) NGSIV1_SubscribeContext(w rest.ResponseWriter, r *rest.Req
}
subID := u1.String()
+ subReq.Reference = strings.TrimSpace(subReq.Reference)
+
// send out the response
subResp := SubscribeContextResponse{}
subResp.SubscribeResponse.SubscriptionId = subID
subResp.SubscribeError.SubscriptionId = subID
w.WriteJson(&subResp)
- INFO.Println(r.Header)
+ // INFO.Println(r.Header)
// check the request header
subReq.Subscriber.DestinationType = r.Header.Get("Destination")
subReq.Subscriber.Tenant = r.Header.Get("Ngsild-Tenant")
subReq.Subscriber.Correlator = r.Header.Get("Fiware-Correlator")
- DEBUG.Println(subReq.Subscriber)
+ // DEBUG.Println(subReq.Subscriber)
if r.Header.Get("User-Agent") == "lightweight-iot-broker" {
subReq.Subscriber.IsInternal = true
diff --git a/broker/thinBroker.go b/broker/thinBroker.go
index 0cc1bb93..ab43eba5 100644
--- a/broker/thinBroker.go
+++ b/broker/thinBroker.go
@@ -323,6 +323,9 @@ func (tb *ThinBroker) fetchEntities(ids []EntityId, providerURL string) []Contex
// handle context updates from external applications/devices
func (tb *ThinBroker) handleInternalUpdateContext(updateCtxReq *UpdateContextRequest) {
+
+ // DEBUG.Println("updateCtxReq", updateCtxReq)
+
switch strings.ToUpper(updateCtxReq.UpdateAction) {
case "UPDATE":
for _, ctxElem := range updateCtxReq.ContextElements {
@@ -388,6 +391,9 @@ func (tb *ThinBroker) queryOwnerOfEntity(eid string) string {
}
func (tb *ThinBroker) UpdateContext2LocalSite(ctxElem *ContextElement, correlator string, params ...rest.ResponseWriter) {
+
+ // DEBUG.Println("elements", ctxElem)
+
// register the entity if there is any changes on attribute list, domain metadata
tb.entities_lock.Lock()
eid := ctxElem.Entity.ID
@@ -402,13 +408,13 @@ func (tb *ThinBroker) UpdateContext2LocalSite(ctxElem *ContextElement, correlato
tb.updateContextElement(ctxElem)
// propogate this update to its subscribers
- go tb.notifySubscribers(ctxElem, correlator, true)
+ tb.notifySubscribers(ctxElem, correlator, true)
}
func (tb *ThinBroker) UpdateContext2RemoteSite(ctxElem *ContextElement, updateAction string, brokerURL string) {
switch updateAction {
case "UPDATE":
- INFO.Println(brokerURL)
+ // INFO.Println(brokerURL)
client := NGSI10Client{IoTBrokerURL: brokerURL, SecurityCfg: tb.SecurityCfg}
client.UpdateContext(ctxElem)
@@ -421,7 +427,7 @@ func (tb *ThinBroker) UpdateContext2RemoteSite(ctxElem *ContextElement, updateAc
func (tb *ThinBroker) notifySubscribers(ctxElem *ContextElement, correlator string, checkSelectedAttributes bool) {
eid := ctxElem.Entity.ID
- //DEBUG.Println(ctxElem)
+ // DEBUG.Println("elements", ctxElem)
tb.e2sub_lock.RLock()
defer tb.e2sub_lock.RUnlock()
@@ -468,6 +474,7 @@ func (tb *ThinBroker) notifySubscribers(ctxElem *ContextElement, correlator stri
elements = append(elements, *ctxElem)
}
+ // DEBUG.Println("elements", elements)
go tb.sendReliableNotify(elements, sid)
}
}
@@ -535,11 +542,13 @@ func (tb *ThinBroker) sendReliableNotifyToSubscriber(elements []ContextElement,
}
tb.subscriptions_lock.Unlock()
- INFO.Println("NOTIFY: ", len(elements), ", ", sid, ", ", subscriberURL, ", ", DestinationBroker)
+ //INFO.Println("NOTIFY: ", len(elements), ", ", sid, ", ", subscriberURL, ", ", DestinationBroker)
+ // DEBUG.Println(elements)
err := postNotifyContext(elements, sid, subscriberURL, DestinationBroker, Tenant, tb.SecurityCfg)
+
if err != nil {
- INFO.Println("NOTIFY is not received by the subscriber, ", subscriberURL)
+ DEBUG.Println("NOTIFY is not received by the subscriber, ", subscriberURL)
tb.subscriptions_lock.Lock()
if subscription, exist := tb.subscriptions[sid]; exist {
@@ -561,6 +570,7 @@ func (tb *ThinBroker) sendReliableNotifyToSubscriber(elements []ContextElement,
*/
func (tb *ThinBroker) sendReliableNotify(elements []ContextElement, sid string) {
+ // DEBUG.Println(elements)
tb.subscriptions_lock.Lock()
_, ok := tb.subscriptions[sid]
if ok == true {
@@ -683,9 +693,9 @@ func (tb *ThinBroker) handleNGSI9Notify(mainSubID string, notifyContextAvailabil
tb.e2sub_lock.Unlock()
}
- INFO.Println(registration.ProvidingApplication, ", ", tb.MyURL)
- INFO.Println("TO ngsi10 subscription, ", mainSubID)
- INFO.Printf("entity list: %+v\r\n", registration.EntityIdList)
+ // INFO.Println(registration.ProvidingApplication, ", ", tb.MyURL)
+ // INFO.Println("TO ngsi10 subscription, ", mainSubID)
+ // INFO.Printf("entity list: %+v\r\n", registration.EntityIdList)
if registration.ProvidingApplication == tb.MyURL {
//for matched entities provided by myself
@@ -702,7 +712,7 @@ func (tb *ThinBroker) handleNGSI9Notify(mainSubID string, notifyContextAvailabil
if action == "CREATE" || action == "UPDATE" {
sid, err := subscribeContextProvider(&newSubscription, registration.ProvidingApplication, tb.SecurityCfg)
if err == nil {
- INFO.Println("issue a new subscription ", sid)
+ // INFO.Println("issue a new subscription ", sid)
tb.subscriptions_lock.Lock()
tb.subscriptions[sid] = &newSubscription
diff --git a/broker/utils.go b/broker/utils.go
index 3678970b..b44ed377 100644
--- a/broker/utils.go
+++ b/broker/utils.go
@@ -14,7 +14,8 @@ import (
)
func postNotifyContext(ctxElems []ContextElement, subscriptionId string, URL string, DestinationBrokerType string, tenant string, httpsCfg *HTTPS) error {
- INFO.Println("destination protocol: ", DestinationBrokerType)
+ //INFO.Println("destination protocol: ", DestinationBrokerType)
+ // INFO.Println("ctxElems: ", ctxElems)
switch DestinationBrokerType {
case "NGSI-LD":
@@ -28,7 +29,7 @@ func postNotifyContext(ctxElems []ContextElement, subscriptionId string, URL str
// for ngsiv1 consumer
func postNGSIV1NotifyContext(ctxElems []ContextElement, subscriptionId string, URL string, httpsCfg *HTTPS) error {
- INFO.Println("NGSIv1 NOTIFY: ", URL)
+ // INFO.Println("NGSIv1 NOTIFY: ", URL)
payload := toNGSIv1Payload(ctxElems)
@@ -95,7 +96,7 @@ func postNGSIV2NotifyContext(ctxElems []ContextElement, subscriptionId string, U
return err
}
- INFO.Println(string(body))
+ // INFO.Println(string(body))
req, err := http.NewRequest("POST", URL, bytes.NewBuffer(body))
req.Header.Add("Content-Type", "application/json")
@@ -164,7 +165,8 @@ func toNGSIv2Payload(ctxElems []ContextElement) []map[string]interface{} {
// for NGSI-LD consumer
func postNGSILDUpsert(ctxElems []ContextElement, subscriptionId string, URL string, tenant string) error {
- INFO.Println("NGSI-LD NOTIFY: ", URL)
+ //INFO.Println("NGSI-LD NOTIFY: ", URL)
+ // DEBUG.Println(ctxElems)
payload := toNGSILDPayload(ctxElems)
@@ -233,6 +235,9 @@ func toNGSILDPayload(ctxElems []ContextElement) []map[string]interface{} {
default:
propertyValue["type"] = "Property"
propertyValue["value"] = attr.Value
+ for _, metadata := range attr.Metadata {
+ propertyValue[metadata.Name] = metadata.Value
+ }
}
element[attr.Name] = propertyValue
diff --git a/common/config/config.go b/common/config/config.go
index 29ce4e28..0e9fc4f1 100644
--- a/common/config/config.go
+++ b/common/config/config.go
@@ -52,9 +52,11 @@ type Config struct {
Debug string `json:"debug"`
} `json:"logging"`
Discovery struct {
- HostIP string `json:"host_ip"`
- HTTPPort int `json:"http_port"`
- HTTPSPort int `json:"https_port"`
+ HostIP string `json:"host_ip"`
+ HTTPPort int `json:"http_port"`
+ HTTPSPort int `json:"https_port"`
+ StoreOnDisk bool `json:"storeOnDisk"`
+ DelayStoreOnFile int `json:"delayStoreOnFile"`
} `json:"discovery"`
Broker struct {
HostIP string `json:"host_ip"`
@@ -63,9 +65,10 @@ type Config struct {
HeartbeatInterval int `json:"heartbeat_interval"`
} `json:"broker"`
Master struct {
- HostIP string `json:"host_ip"`
- AgentPort int `json:"ngsi_agent_port"`
- RESTAPIPort int `json:"rest_api_port"`
+ HostIP string `json:"host_ip"`
+ AgentPort int `json:"ngsi_agent_port"`
+ RESTAPIPort int `json:"rest_api_port"`
+ InfiniteReconnectionTries bool `json:"infinite_reconnection_tries"`
} `json:"master"`
Designer struct {
HostIP string `json:"host_ip"`
@@ -73,15 +76,16 @@ type Config struct {
HTTPSPort int `json:"https_webSrvPort"`
} `json:"designer"`
Worker struct {
- ContainerManagement string `json:"container_management"`
- AppNameSpace string `json:"app_namespace"`
- EdgeControllerPort int `json:"edge_controller_port"`
- Registry RegistryConfiguration `json:"registry,omitempty"`
- ContainerAutoRemove bool `json:"container_autoremove"`
- StartActualTask bool `json:"start_actual_task"`
- Capacity int `json:"capacity"`
- HeartbeatInterval int `json:"heartbeat_interval"`
- DetectionDuration int `json:"detection_duration"`
+ ContainerManagement string `json:"container_management"`
+ AppNameSpace string `json:"app_namespace"`
+ EdgeControllerPort int `json:"edge_controller_port"`
+ Registry RegistryConfiguration `json:"registry,omitempty"`
+ ContainerAutoRemove bool `json:"container_autoremove"`
+ StartActualTask bool `json:"start_actual_task"`
+ Capacity int `json:"capacity"`
+ HeartbeatInterval int `json:"heartbeat_interval"`
+ DetectionDuration int `json:"detection_duration"`
+ InfiniteReconnectionTries bool `json:"infinite_reconnection_tries"`
} `json:"worker"`
RabbitMQ struct {
HostIP string `json:"host_ip"`
diff --git a/common/ngsi/ngsi.go b/common/ngsi/ngsi.go
index cd83f73f..703fa651 100644
--- a/common/ngsi/ngsi.go
+++ b/common/ngsi/ngsi.go
@@ -436,6 +436,26 @@ func (ce *ContextElement) ReadFromNGSILD(ngsildEntity map[string]interface{}) bo
newCtxAttribute.Value = attrValue
+ // dateObserved, dateObservedExist := attribute["dateObserved"]
+ // if dateObservedExist {
+ // newCtxMedata := ContextMetadata{}
+ // newCtxMedata.Name = "dateObserved"
+ // newCtxMedata.Type = "dateObserved"
+ // newCtxMedata.Value = dateObserved
+ // newCtxAttribute.Metadata = append(newCtxAttribute.Metadata, newCtxMedata)
+ // }
+
+ for key, element := range attribute {
+ if strings.ToLower(key) != "type" && strings.ToLower(key) != "value" {
+ newCtxMedata := ContextMetadata{}
+ newCtxMedata.Name = key
+ newCtxMedata.Type = key
+ newCtxMedata.Value = element
+ newCtxAttribute.Metadata = append(newCtxAttribute.Metadata, newCtxMedata)
+ }
+ //fmt.Println("Key:", key, "=>", "Element:", element)
+ }
+
ce.Attributes = append(ce.Attributes, newCtxAttribute)
} else if strings.ToLower(attrType) == "relationship" {
refObject := attribute["object"]
diff --git a/common/ngsi/ngsiclient.go b/common/ngsi/ngsiclient.go
index f52f9c03..6f1eecc5 100644
--- a/common/ngsi/ngsiclient.go
+++ b/common/ngsi/ngsiclient.go
@@ -556,6 +556,8 @@ func (nc *NGSI9Client) DiscoverContextAvailability(discoverCtxAvailabilityReq *D
return nil, err
}
+ // DEBUG.Printf("Discovery request to %s: %s", nc.IoTDiscoveryURL+"/discoverContextAvailability", string(body))
+
req, err := http.NewRequest("POST", nc.IoTDiscoveryURL+"/discoverContextAvailability", bytes.NewBuffer(body))
if err != nil {
return nil, err
diff --git a/designer/build_k8s b/designer/build_k8s
new file mode 100644
index 00000000..15522942
--- /dev/null
+++ b/designer/build_k8s
@@ -0,0 +1 @@
+docker image tag fogflow/designer:latest fogflow/designer:k8s
diff --git a/designer/config.json b/designer/config.json
index 5d0fb92b..192d6ff3 100644
--- a/designer/config.json
+++ b/designer/config.json
@@ -28,7 +28,8 @@
},
"designer": {
"webSrvPort": 8080,
- "agentPort": 1030
+ "agentPort": 1030,
+ "notRecreateSubscriptions": false
},
"rabbitmq": {
"port": 5672,
diff --git a/designer/main.js b/designer/main.js
index 1d14fafe..0e3eea52 100644
--- a/designer/main.js
+++ b/designer/main.js
@@ -68,6 +68,8 @@ if (!('host_ip' in globalConfigFile.broker)) {
var cloudBrokerURL = "http://" + globalConfigFile.broker.host_ip + ":" + globalConfigFile.broker.http_port
var ngsi10client = new NGSIClient.NGSI10Client(cloudBrokerURL + "/ngsi10");
+config.notRecreateSubscriptions = globalConfigFile.designer.notRecreateSubscriptions;
+
var recheck_interval = 2000;
var timerID = setTimeout(function entityrestore(){
var url = cloudBrokerURL + "/version";
@@ -81,29 +83,58 @@ var timerID = setTimeout(function entityrestore(){
});
});
- // create the persistent subscriptions at the FogFlow Cloud Broker
- Object.values(db.data.subscriptions).forEach(subscription => {
- var headers = {};
-
- if (subscription.destination_broker == 'NGSI-LD') {
- headers["Content-Type"] = "application/json";
- headers["Destination"] = "NGSI-LD";
- headers["NGSILD-Tenant"] = subscription.tenant;
- } else if (subscription.destination_broker == 'NGSIv2') {
- headers["Content-Type"] = "application/json";
- headers["Destination"] = "NGSIv2";
- }
-
- var subscribeCtxReq = {};
- subscribeCtxReq.entities = [{ type: subscription['entity_type'], isPattern: true }];
- subscribeCtxReq.reference = subscription['reference_url'];
- ngsi10client.subscribeContextWithHeaders(subscribeCtxReq, headers).then(function (subscriptionId) {
- console.log("new subscription id = ", subscriptionId);
- console.log(subscription)
- }).catch(function (error) {
- console.log('failed to subscribe context, ', error);
- });
- });
+
+ if (!config.notRecreateSubscriptions){
+
+ fetch(cloudBrokerURL + "/ngsi10/subscription").
+ then((response) => response.json()).
+ then(brokerSubscriptions => {
+
+ Object.keys(db.data.subscriptions).
+ forEach(key => {
+ console.log("checking if the following subscription is already in the broker: ",key)
+ if(brokerSubscriptions.hasOwnProperty(key)) {
+ //delete designerSubscriptions[key];
+ console.log("subscription already in the broker:", key)
+ } else {
+
+ var subscription = db.data.subscriptions[key]
+
+ var headers = {};
+
+ if (subscription.destination_broker == 'NGSI-LD') {
+ headers["Content-Type"] = "application/json";
+ headers["Destination"] = "NGSI-LD";
+ headers["NGSILD-Tenant"] = subscription.tenant;
+ } else if (subscription.destination_broker == 'NGSIv2') {
+ headers["Content-Type"] = "application/json";
+ headers["Destination"] = "NGSIv2";
+ }
+
+ var subscribeCtxReq = {};
+ subscribeCtxReq.entities = [{ type: subscription['entity_type'], isPattern: true }];
+ subscribeCtxReq.reference = subscription['reference_url'];
+ // it is necessary to send them out not at the same time for having different subID
+ // since the subID is based on timestamp
+ var delayBeforeSend = Math.floor(Math.random() * 1000)
+ setTimeout(function(){
+ //console.log("waited", delayBeforeSend);
+ ngsi10client.subscribeContextWithHeaders(subscribeCtxReq, headers).then(function (subscriptionId) {
+ console.log("new subscription id = ", subscriptionId);
+ console.log(subscription)
+ delete db.data.subscriptions[key];
+ db.data.subscriptions[subscriptionId] = subscription
+ db.write();
+ }).catch(function (error) {
+ console.log('failed to subscribe context, ', error);
+ });
+ }, delayBeforeSend);
+ }
+ });
+ })
+ } else {
+ console.log("not recreating subscriptions ", config.notRecreateSubscriptions);
+ }
}).catch(error=>{
console.log("try it again due to the error: ", error.code);
@@ -306,12 +337,12 @@ app.all("/ngsi10/*", function (req, res) {
});
app.all("/ngsi-ld/*", function (req, res) {
- //console.log('redirecting to ngsi-ld broker');
+ console.log('redirecting to ngsi-ld broker', cloudBrokerURL);
ngsiProxy.web(req, res, { target: cloudBrokerURL });
});
app.all("/ngsi9/*", function (req, res) {
- //console.log('redirecting to ngsi-v1 discovery');
+ console.log('redirecting to ngsi-v1 discovery', discoveryURL);
ngsiProxy.web(req, res, { target: discoveryURL });
});
@@ -420,6 +451,39 @@ app.post('/operator', jsonParser, async function (req, res) {
res.sendStatus(200)
});
+app.get('/dockerimage', async function (req, res) {
+ var operators = db.data.operators;
+ var dockers = {}
+ for (const [key, value] of Object.entries(operators)) {
+ if (value.hasOwnProperty('dockerimages') && value.dockerimages.length > 0){
+ dockers.key = value
+ }
+ }
+ res.json(dockers);
+
+});
+
+app.post('/dockerimage', jsonParser, async function (req, res) {
+ var dockerimages = req.body;
+ for (var i = 0; i < dockerimages.length; i++) {
+ var dockerimage = dockerimages[i];
+ var operatorName = dockerimage.operatorName
+
+ if (operatorName in db.data.operators) {
+ if (db.data.operators[operatorName].hasOwnProperty('dockerimages')){
+ db.data.operators[operatorName].dockerimages.push(dockerimage)
+ } else {
+ db.data.operators[operatorName].dockerimages = []
+ db.data.operators[operatorName].dockerimages.push(dockerimage)
+ }
+ }
+ }
+
+ await db.write();
+
+ res.sendStatus(200)
+});
+
app.get('/dockerimage/:operator', async function (req, res) {
var operatorName = req.params.operator;
var operator = db.data.operators[operatorName];
@@ -430,8 +494,16 @@ app.post('/dockerimage/:operator', jsonParser, async function (req, res) {
var operatorName = req.params.operator;
var dockerimage = req.body;
+ console.log(operatorName in db.data.operators)
+ console.log(db.data.operators[operatorName])
+
if (operatorName in db.data.operators) {
- db.data.operators[operatorName].dockerimages.push(dockerimage)
+ if (db.data.operators[operatorName].hasOwnProperty('dockerimages')){
+ db.data.operators[operatorName].dockerimages.push(dockerimage)
+ } else {
+ db.data.operators[operatorName].dockerimages = []
+ db.data.operators[operatorName].dockerimages.push(dockerimage)
+ }
}
await db.write();
diff --git a/designer/public/css/dashboard.css b/designer/public/css/dashboard.css
index 045bb238..dee3edd9 100644
--- a/designer/public/css/dashboard.css
+++ b/designer/public/css/dashboard.css
@@ -125,4 +125,43 @@ body {
.hidediv {
visibility: hidden;
height: 0px;
-}
\ No newline at end of file
+}
+
+.slidecontainer {
+ width: 100%; /* Width of the outside container */
+ }
+
+ /* The slider itself */
+ .slider {
+ -webkit-appearance: none; /* Override default CSS styles */
+ appearance: none;
+ width: 600px; /* Full-width */
+ height: 25px; /* Specified height */
+ background: #d3d3d3; /* Grey background */
+ outline: none; /* Remove outline */
+ opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
+ -webkit-transition: .2s; /* 0.2 seconds transition on hover */
+ transition: opacity .2s;
+ }
+
+ /* Mouse-over effects */
+ .slider:hover {
+ opacity: 1; /* Fully shown on mouse-over */
+ }
+
+ /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
+ .slider::-webkit-slider-thumb {
+ -webkit-appearance: none; /* Override default look */
+ appearance: none;
+ width: 25px; /* Set a specific slider handle width */
+ height: 25px; /* Slider handle height */
+ background: #04AA6D; /* Green background */
+ cursor: pointer; /* Cursor on hover */
+ }
+
+ .slider::-moz-range-thumb {
+ width: 25px; /* Set a specific slider handle width */
+ height: 25px; /* Slider handle height */
+ background: #04AA6D; /* Green background */
+ cursor: pointer; /* Cursor on hover */
+ }
\ No newline at end of file
diff --git a/designer/public/customerjourney.html b/designer/public/customerjourney.html
new file mode 100644
index 00000000..7d544ba8
--- /dev/null
+++ b/designer/public/customerjourney.html
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+ Smart Parking
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/designer/public/data/shops_data.json b/designer/public/data/shops_data.json
new file mode 100644
index 00000000..b5a69deb
--- /dev/null
+++ b/designer/public/data/shops_data.json
@@ -0,0 +1 @@
+[{"id": "urn:ngsi-ld:shop:clothesstore:17214", "type": "clothesstore", "CO2": {"type": "Property", "value": 452.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 22.4, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 3.0, "dayweek": 1.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 2.587889022815574, "month": 3.0, "dayweek": 1.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74500106086703, 35.687860457196514]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17215", "type": "opticianstore", "CO2": {"type": "Property", "value": 445.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 22.4, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 1.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 1.3833825244460058, "month": 3.0, "dayweek": 1.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74284587919584, 35.67890864088788]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17312", "type": "musicshop", "CO2": {"type": "Property", "value": 879.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 303.0, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 311.8382014951702, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7209015383977, 35.674285958533595]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:17313", "type": "sweetsshop", "CO2": {"type": "Property", "value": 895.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 307.0, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 316.5767035696135, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74386365803488, 35.67661392410406]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:17314", "type": "clothesstore", "CO2": {"type": "Property", "value": 896.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 343.0, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 317.4393304878745, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7064905835, 35.669152028892434]}}}, {"id": "urn:ngsi-ld:shop:cafe:17315", "type": "cafe", "CO2": {"type": "Property", "value": 921.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 368.0, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 324.5033576560271, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7549278850419, 35.67443960782525]}}}, {"id": "urn:ngsi-ld:shop:cinema:17316", "type": "cinema", "CO2": {"type": "Property", "value": 952.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 370.0, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 333.1177348866528, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75081840701463, 35.69327383877684]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:17317", "type": "sweetsshop", "CO2": {"type": "Property", "value": 970.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 363.0, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 338.3730203152537, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7134394042964, 35.68463886097516]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:17318", "type": "beuatystore", "CO2": {"type": "Property", "value": 975.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 346.0, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 312.2194575114279, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76050834613878, 35.672800371075375]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17319", "type": "musicshop", "CO2": {"type": "Property", "value": 975.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 378.0, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 312.8236927526101, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70773320065737, 35.68451922669365]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:17320", "type": "sweetsshop", "CO2": {"type": "Property", "value": 911.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 368.0, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 296.89086066074765, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75802179738605, 35.68105124783799]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:17321", "type": "sweetsshop", "CO2": {"type": "Property", "value": 929.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 383.0, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 302.1461460893486, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73045480248544, 35.683494513947856]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17322", "type": "bookshop", "CO2": {"type": "Property", "value": 1060.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 384.0, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 336.59969102785624, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76079058083263, 35.68457229639056]}}}, {"id": "urn:ngsi-ld:shop:cinema:17323", "type": "cinema", "CO2": {"type": "Property", "value": 1078.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 385.0, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 341.85497645645717, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77917532446475, 35.67054915259192]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17324", "type": "opticianstore", "CO2": {"type": "Property", "value": 1088.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 349.0, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 316.9933720380254, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7193462800261, 35.67791968004919]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17325", "type": "restaurant", "CO2": {"type": "Property", "value": 1070.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 349.0, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 312.9465570917889, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7651722858212, 35.670564052202984]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17326", "type": "electronicsstore", "CO2": {"type": "Property", "value": 996.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 335.0, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 294.4298082291382, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74126638302363, 35.679741477500585]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17327", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 980.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 336.0, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 290.8997766370592, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7241398802558, 35.67695890474841]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17328", "type": "computerstore", "CO2": {"type": "Property", "value": 939.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 322.0, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 280.90995311800975, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7579861036278, 35.66916147113173]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17329", "type": "bookshop", "CO2": {"type": "Property", "value": 929.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 328.0, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 278.9302715884037, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76114429666518, 35.670190624648264]}}}, {"id": "urn:ngsi-ld:shop:teeshop:17330", "type": "teeshop", "CO2": {"type": "Property", "value": 893.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 156.0, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 242.18265002434615, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7706222089927, 35.68623656738093]}}}, {"id": "urn:ngsi-ld:shop:flowershop:17331", "type": "flowershop", "CO2": {"type": "Property", "value": 885.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 102.0, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 240.71975184889774, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71473569563457, 35.687872546174646]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17332", "type": "opticianstore", "CO2": {"type": "Property", "value": 886.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 104.0, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 241.5823787671587, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75634572510583, 35.67259876514822]}}}, {"id": "urn:ngsi-ld:shop:flowershop:17333", "type": "flowershop", "CO2": {"type": "Property", "value": 880.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 91.0, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 240.6362639458679, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72281043336315, 35.68659642651454]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17334", "type": "computerstore", "CO2": {"type": "Property", "value": 845.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 95.0, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 232.19679048929132, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70756233113536, 35.683154118892254]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17335", "type": "restaurant", "CO2": {"type": "Property", "value": 811.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 44.0, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 224.01570870979359, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7618016536184, 35.68375340872838]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:17336", "type": "clothesstore", "CO2": {"type": "Property", "value": 780.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 24.0, "month": 3.0, "dayweek": 2.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 188.56004553113027, "month": 3.0, "dayweek": 2.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.769714972012, 35.68205632959409]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:17337", "type": "sweetsshop", "CO2": {"type": "Property", "value": 763.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 42.0, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 184.77162226197245, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71328075405168, 35.67023695653202]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17338", "type": "bookshop", "CO2": {"type": "Property", "value": 723.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 175.04019042000172, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7273715848735, 35.67259126971638]}}}, {"id": "urn:ngsi-ld:shop:flowershop:17339", "type": "flowershop", "CO2": {"type": "Property", "value": 699.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 46.0, "month": 3.0, "dayweek": 2.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 169.44302541129215, "month": 3.0, "dayweek": 2.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76679193871763, 35.677260268534184]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:17340", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 686.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 166.68816885044967, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74718002725922, 35.69132372128852]}}}, {"id": "urn:ngsi-ld:shop:flowershop:17341", "type": "flowershop", "CO2": {"type": "Property", "value": 649.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 2.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 157.73191203971538, "month": 3.0, "dayweek": 2.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76696727969158, 35.685359972639986]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17342", "type": "electronicsstore", "CO2": {"type": "Property", "value": 638.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 127.44408240262845, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70598239933932, 35.687507275705265]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:17343", "type": "beuatystore", "CO2": {"type": "Property", "value": 605.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 3.0, "dayweek": 2.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 119.5213923002095, "month": 3.0, "dayweek": 2.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73594488783147, 35.69278296487105]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:17344", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 594.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 3.0, "dayweek": 2.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 117.28331909352457, "month": 3.0, "dayweek": 2.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77069314414007, 35.68556409006588]}}}, {"id": "urn:ngsi-ld:shop:teeshop:17345", "type": "teeshop", "CO2": {"type": "Property", "value": 602.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 119.9546877513373, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7739889478445, 35.685961912464116]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17346", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 593.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 118.23339789881007, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.746949441197, 35.685983561760466]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17347", "type": "electronicsstore", "CO2": {"type": "Property", "value": 563.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 2.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 111.08588282762759, "month": 3.0, "dayweek": 2.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73578272314012, 35.675669212926756]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17348", "type": "computerstore", "CO2": {"type": "Property", "value": 545.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 44.0, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.98931145098891, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77333696407325, 35.6820424926482]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17349", "type": "restaurant", "CO2": {"type": "Property", "value": 531.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.97606321306756, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73478268636782, 35.67648865919074]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17350", "type": "restaurant", "CO2": {"type": "Property", "value": 525.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.02994839177671, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76815176144004, 35.670417149646205]}}}, {"id": "urn:ngsi-ld:shop:flowershop:17351", "type": "flowershop", "CO2": {"type": "Property", "value": 530.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.92614201835298, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7607428550874, 35.678352450800304]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17352", "type": "restaurant", "CO2": {"type": "Property", "value": 522.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 46.0, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.46324384290457, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75729002470993, 35.68744556681031]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17353", "type": "restaurant", "CO2": {"type": "Property", "value": 514.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 65.0, "month": 3.0, "dayweek": 2.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 74.00034566745614, "month": 3.0, "dayweek": 2.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74762200479978, 35.66930065369198]}}}, {"id": "urn:ngsi-ld:shop:teeshop:17354", "type": "teeshop", "CO2": {"type": "Property", "value": 517.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 64.0, "month": 3.0, "dayweek": 2.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 47.329999509472714, "month": 3.0, "dayweek": 2.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76838448890143, 35.67910037697561]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:17355", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 501.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 3.0, "dayweek": 2.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.79996791739373, "month": 3.0, "dayweek": 2.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71966896379755, 35.68089348003762]}}}, {"id": "urn:ngsi-ld:shop:cafe:17356", "type": "cafe", "CO2": {"type": "Property", "value": 500.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 63.0, "month": 3.0, "dayweek": 2.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 44.14581148149699, "month": 3.0, "dayweek": 2.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76136350633095, 35.672931544254894]}}}, {"id": "urn:ngsi-ld:shop:jewellery:17357", "type": "jewellery", "CO2": {"type": "Property", "value": 499.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 2.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 44.49165504560034, "month": 3.0, "dayweek": 2.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.733596025367, 35.67780333688802]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:17358", "type": "shoesstore", "CO2": {"type": "Property", "value": 482.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 3.0, "dayweek": 2.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 40.70323177644252, "month": 3.0, "dayweek": 2.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71584341325695, 35.669610643452245]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17359", "type": "musicshop", "CO2": {"type": "Property", "value": 472.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 23.1, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 3.0, "dayweek": 2.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 38.72355024683645, "month": 3.0, "dayweek": 2.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76656286788148, 35.69294761186458]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17456", "type": "electronicsstore", "CO2": {"type": "Property", "value": 919.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 316.0, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 466.52224537823594, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73873746403365, 35.678261771330334]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17457", "type": "electronicsstore", "CO2": {"type": "Property", "value": 937.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 337.0, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 471.7775308068369, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76592799604606, 35.67819989573477]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17458", "type": "computerstore", "CO2": {"type": "Property", "value": 873.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 352.0, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 455.84469871497447, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7527067351897, 35.69404325486924]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:17459", "type": "clothesstore", "CO2": {"type": "Property", "value": 779.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 341.0, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 432.16011631074736, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76053197107248, 35.689104580775066]}}}, {"id": "urn:ngsi-ld:shop:teeshop:17460", "type": "teeshop", "CO2": {"type": "Property", "value": 721.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 340.0, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 417.7776342813579, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76733441525798, 35.68874738576117]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17461", "type": "bookshop", "CO2": {"type": "Property", "value": 677.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 349.0, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 407.01263573107195, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72614467725217, 35.69009686506802]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17462", "type": "opticianstore", "CO2": {"type": "Property", "value": 650.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 305.0, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 372.5905392607239, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75729692272776, 35.67878479851106]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:17463", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 674.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 352.0, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 379.39617475179773, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74009798658054, 35.67893012997389]}}}, {"id": "urn:ngsi-ld:shop:cinema:17464", "type": "cinema", "CO2": {"type": "Property", "value": 686.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 375.0, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 383.1011101179257, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70966776595245, 35.68031647387012]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:17465", "type": "beuatystore", "CO2": {"type": "Property", "value": 709.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 374.0, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 389.6483539319208, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75660690353777, 35.67551717704723]}}}, {"id": "urn:ngsi-ld:shop:teeshop:17466", "type": "teeshop", "CO2": {"type": "Property", "value": 754.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 380.0, "month": 3.0, "dayweek": 3.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 401.8802146416498, "month": 3.0, "dayweek": 3.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74070095495233, 35.69158536973316]}}}, {"id": "urn:ngsi-ld:shop:jewellery:17467", "type": "jewellery", "CO2": {"type": "Property", "value": 773.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 345.0, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 407.39389174732963, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72720800104412, 35.67462555166716]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:17468", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 790.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 322.0, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 384.3410290684496, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76616241107672, 35.68202809641119]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17469", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 792.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 286.0, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 385.46204766378946, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.744681748443, 35.68438212317652]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17470", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 828.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 296.0, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 395.3683832798091, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74256015187473, 35.675289871978556]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:17471", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 844.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 294.0, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 400.10688535425237, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77065682504698, 35.69260164651413]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:17472", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 893.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 293.0, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 413.3723127722967, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7417134368345, 35.68116780352617]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17473", "type": "restaurant", "CO2": {"type": "Property", "value": 901.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 288.0, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 416.04368143010953, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7454648527258, 35.67293584685787]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:17474", "type": "sweetsshop", "CO2": {"type": "Property", "value": 893.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 240.0, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 386.53102682425896, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70809576028634, 35.67978505024283]}}}, {"id": "urn:ngsi-ld:shop:cinema:17475", "type": "cinema", "CO2": {"type": "Property", "value": 913.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 175.0, "month": 3.0, "dayweek": 3.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 392.30309560701755, "month": 3.0, "dayweek": 3.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77739428380147, 35.68387676238216]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:17476", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 925.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 160.0, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 396.00803097314554, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7701595098239, 35.67072520847835]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17477", "type": "bookshop", "CO2": {"type": "Property", "value": 872.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 151.0, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 382.91750732915017, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73676680080584, 35.67756340552211]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17478", "type": "electronicsstore", "CO2": {"type": "Property", "value": 835.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 148.0, "month": 3.0, "dayweek": 3.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 373.9612505184159, "month": 3.0, "dayweek": 3.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71988208951805, 35.67807403801778]}}}, {"id": "urn:ngsi-ld:shop:flowershop:17479", "type": "flowershop", "CO2": {"type": "Property", "value": 799.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 144.0, "month": 3.0, "dayweek": 3.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 365.2633853847605, "month": 3.0, "dayweek": 3.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75446811445843, 35.69213646410268]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:17480", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 752.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 325.6734553728361, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71287184800283, 35.685394227021796]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:17481", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 716.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 316.97559023918063, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77349056128966, 35.67159271783168]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:17484", "type": "clothesstore", "CO2": {"type": "Property", "value": 686.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 311.0365456503624, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71029691371922, 35.67725944034365]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17487", "type": "musicshop", "CO2": {"type": "Property", "value": 595.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 261.28585232933415, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72352789545127, 35.682797482009434]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17488", "type": "computerstore", "CO2": {"type": "Property", "value": 562.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 253.36316222691508, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74025397286087, 35.68581797574961]}}}, {"id": "urn:ngsi-ld:shop:flowershop:17492", "type": "flowershop", "CO2": {"type": "Property", "value": 561.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 227.4719550841629, "month": 3.0, "dayweek": 3.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75467767119744, 35.689719915044456]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:17493", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 597.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 237.3782907001826, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72759750809624, 35.67694345493412]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17494", "type": "opticianstore", "CO2": {"type": "Property", "value": 625.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 245.21749289957168, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77102816754237, 35.694009101227394]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17495", "type": "electronicsstore", "CO2": {"type": "Property", "value": 653.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 253.05669509896077, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74454010347586, 35.683771969636666]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:17496", "type": "clothesstore", "CO2": {"type": "Property", "value": 666.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 257.02002214216765, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74082086372812, 35.68024101829292]}}}, {"id": "urn:ngsi-ld:shop:cinema:17497", "type": "cinema", "CO2": {"type": "Property", "value": 677.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 260.4665658312168, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70616825124367, 35.687834868439225]}}}, {"id": "urn:ngsi-ld:shop:teeshop:17498", "type": "teeshop", "CO2": {"type": "Property", "value": 679.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 233.5378279961545, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77232838605957, 35.67817612534301]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:17501", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 694.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 9.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 239.22640887588327, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76205607920645, 35.669793494548536]}}}, {"id": "urn:ngsi-ld:shop:cafe:17600", "type": "cafe", "CO2": {"type": "Property", "value": 806.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 254.0, "month": 3.0, "dayweek": 4.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 303.364982562235, "month": 3.0, "dayweek": 4.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7316403823721, 35.6899488487833]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17601", "type": "musicshop", "CO2": {"type": "Property", "value": 775.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 257.0, "month": 3.0, "dayweek": 4.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 295.95907581397364, "month": 3.0, "dayweek": 4.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72255369800953, 35.68850969204982]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17602", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 786.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 258.0, "month": 3.0, "dayweek": 4.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 299.40561950302276, "month": 3.0, "dayweek": 4.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7757811458609, 35.689149638695795]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17603", "type": "computerstore", "CO2": {"type": "Property", "value": 796.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 256.0, "month": 3.0, "dayweek": 4.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 302.59377151499314, "month": 3.0, "dayweek": 4.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7606090535837, 35.67980049379232]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17604", "type": "electronicsstore", "CO2": {"type": "Property", "value": 813.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 259.0, "month": 3.0, "dayweek": 4.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 307.5906652665153, "month": 3.0, "dayweek": 4.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7446526464334, 35.67930444975481]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17605", "type": "musicshop", "CO2": {"type": "Property", "value": 799.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 272.0, "month": 3.0, "dayweek": 4.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 304.5774170285939, "month": 3.0, "dayweek": 4.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74353446811747, 35.6939410076283]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17606", "type": "opticianstore", "CO2": {"type": "Property", "value": 807.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 303.0, "month": 3.0, "dayweek": 4.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 279.19902925600456, "month": 3.0, "dayweek": 4.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7177720027581, 35.68796024403613]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17607", "type": "computerstore", "CO2": {"type": "Property", "value": 809.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 303.0, "month": 3.0, "dayweek": 4.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 280.3200478513444, "month": 3.0, "dayweek": 4.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77958509766685, 35.69335228429601]}}}, {"id": "urn:ngsi-ld:shop:cafe:17608", "type": "cafe", "CO2": {"type": "Property", "value": 792.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 313.0, "month": 3.0, "dayweek": 4.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 276.5316245821865, "month": 3.0, "dayweek": 4.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71321647027435, 35.688035115338224]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17609", "type": "musicshop", "CO2": {"type": "Property", "value": 848.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 319.0, "month": 3.0, "dayweek": 4.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 291.6057937397827, "month": 3.0, "dayweek": 4.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77290313979663, 35.670655272084446]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17610", "type": "restaurant", "CO2": {"type": "Property", "value": 826.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 334.0, "month": 3.0, "dayweek": 4.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 286.52541208523076, "month": 3.0, "dayweek": 4.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72270207676152, 35.68851918096398]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17611", "type": "computerstore", "CO2": {"type": "Property", "value": 812.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 324.0, "month": 3.0, "dayweek": 4.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 283.51216384730947, "month": 3.0, "dayweek": 4.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7512894654373, 35.678298022471665]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:17612", "type": "sweetsshop", "CO2": {"type": "Property", "value": 813.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 280.0, "month": 3.0, "dayweek": 4.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 256.3250343351683, "month": 3.0, "dayweek": 4.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72177007616742, 35.679302546913235]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17613", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 789.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 280.0, "month": 3.0, "dayweek": 4.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 250.72786932645877, "month": 3.0, "dayweek": 4.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72067771820824, 35.68889019505071]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17614", "type": "musicshop", "CO2": {"type": "Property", "value": 773.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 241.0, "month": 3.0, "dayweek": 4.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 247.19783773437976, "month": 3.0, "dayweek": 4.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74641349465054, 35.69012415878879]}}}, {"id": "urn:ngsi-ld:shop:teeshop:17615", "type": "teeshop", "CO2": {"type": "Property", "value": 744.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 223.0, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 240.30871434027605, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.766063241796, 35.67140708862354]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17616", "type": "bookshop", "CO2": {"type": "Property", "value": 710.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 209.0, "month": 3.0, "dayweek": 4.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 232.12763256077832, "month": 3.0, "dayweek": 4.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7224740968322, 35.670381565190326]}}}, {"id": "urn:ngsi-ld:shop:musicshop:17617", "type": "musicshop", "CO2": {"type": "Property", "value": 703.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 169.0, "month": 3.0, "dayweek": 4.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 230.92312606240873, "month": 3.0, "dayweek": 4.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7226743198944, 35.66903388083064]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17618", "type": "restaurant", "CO2": {"type": "Property", "value": 677.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 114.0, "month": 3.0, "dayweek": 4.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 196.7594212691395, "month": 3.0, "dayweek": 4.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7334732288647, 35.674215542657734]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:17619", "type": "electronicsstore", "CO2": {"type": "Property", "value": 665.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 76.0, "month": 3.0, "dayweek": 4.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 194.26295638537576, "month": 3.0, "dayweek": 4.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70861886064034, 35.68670763572581]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:17620", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 620.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 68.0, "month": 3.0, "dayweek": 4.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 183.23956615801094, "month": 3.0, "dayweek": 4.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75322345022533, 35.68777609432182]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17621", "type": "bookshop", "CO2": {"type": "Property", "value": 529.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 63.0, "month": 3.0, "dayweek": 4.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 160.33015878502036, "month": 3.0, "dayweek": 4.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71407925161301, 35.68754810279305]}}}, {"id": "urn:ngsi-ld:shop:cafe:17622", "type": "cafe", "CO2": {"type": "Property", "value": 518.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 61.0, "month": 3.0, "dayweek": 4.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 158.09208557833549, "month": 3.0, "dayweek": 4.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73444896387525, 35.69025461279938]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17623", "type": "bookshop", "CO2": {"type": "Property", "value": 502.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 64.0, "month": 3.0, "dayweek": 4.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 154.56205398625647, "month": 3.0, "dayweek": 4.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7597847405821, 35.68505427624208]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:17624", "type": "clothesstore", "CO2": {"type": "Property", "value": 511.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 66.0, "month": 3.0, "dayweek": 4.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 129.4420578907461, "month": 3.0, "dayweek": 4.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71919048249265, 35.6733833384223]}}}, {"id": "urn:ngsi-ld:shop:jewellery:17625", "type": "jewellery", "CO2": {"type": "Property", "value": 503.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 4.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 127.9791597152977, "month": 3.0, "dayweek": 4.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71177627365608, 35.67217985137677]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17626", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 531.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 4.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 135.8183619146868, "month": 3.0, "dayweek": 4.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7429685585039, 35.690088902074145]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17627", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 505.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 3.0, "dayweek": 4.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 129.70441355181956, "month": 3.0, "dayweek": 4.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77439035288003, 35.672956880512935]}}}, {"id": "urn:ngsi-ld:shop:flowershop:17628", "type": "flowershop", "CO2": {"type": "Property", "value": 467.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 20.0, "month": 3.0, "dayweek": 4.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 120.48976506400649, "month": 3.0, "dayweek": 4.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75592002336703, 35.68610206275993]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17629", "type": "opticianstore", "CO2": {"type": "Property", "value": 555.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 4.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 143.8324678881249, "month": 3.0, "dayweek": 4.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71939655375604, 35.68850723781521]}}}, {"id": "urn:ngsi-ld:shop:cafe:17630", "type": "cafe", "CO2": {"type": "Property", "value": 542.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 4.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 113.02785489688037, "month": 3.0, "dayweek": 4.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75489751032254, 35.670976639722056]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:17631", "type": "clothesstore", "CO2": {"type": "Property", "value": 519.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 3.0, "dayweek": 4.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 107.68908156524961, "month": 3.0, "dayweek": 4.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71471779970346, 35.69418754828654]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17632", "type": "computerstore", "CO2": {"type": "Property", "value": 484.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 4.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 99.24960810867296, "month": 3.0, "dayweek": 4.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72583553220588, 35.68992087457006]}}}, {"id": "urn:ngsi-ld:shop:cafe:17633", "type": "cafe", "CO2": {"type": "Property", "value": 472.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 3.0, "dayweek": 4.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 96.75314322490928, "month": 3.0, "dayweek": 4.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75201342068593, 35.69307810440586]}}}, {"id": "urn:ngsi-ld:shop:cinema:17634", "type": "cinema", "CO2": {"type": "Property", "value": 440.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 4.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 89.08884479956916, "month": 3.0, "dayweek": 4.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75079427635382, 35.67523707296432]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17635", "type": "opticianstore", "CO2": {"type": "Property", "value": 439.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 4.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 89.4346883636725, "month": 3.0, "dayweek": 4.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72407342189246, 35.67363865836551]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:17636", "type": "beuatystore", "CO2": {"type": "Property", "value": 425.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 4.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 58.371683695349105, "month": 3.0, "dayweek": 4.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73342052752545, 35.691262258760005]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:17637", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 439.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 3.0, "dayweek": 4.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 62.593402415634756, "month": 3.0, "dayweek": 4.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7247799765232, 35.691794228781184]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17638", "type": "bookshop", "CO2": {"type": "Property", "value": 437.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 4.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 62.680854302659185, "month": 3.0, "dayweek": 4.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76116744150147, 35.67088323032212]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:17639", "type": "opticianstore", "CO2": {"type": "Property", "value": 470.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 4.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 71.81201488744242, "month": 3.0, "dayweek": 4.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71195647281948, 35.68968414212501]}}}, {"id": "urn:ngsi-ld:shop:cinema:17640", "type": "cinema", "CO2": {"type": "Property", "value": 436.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 3.0, "dayweek": 4.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 63.630933107944685, "month": 3.0, "dayweek": 4.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73113622039406, 35.67159042820813]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17641", "type": "computerstore", "CO2": {"type": "Property", "value": 429.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 62.42642660957509, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72800546420774, 35.68915694200316]}}}, {"id": "urn:ngsi-ld:shop:computerstore:17642", "type": "computerstore", "CO2": {"type": "Property", "value": 430.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 3.0, "dayweek": 4.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 35.23929709743399, "month": 3.0, "dayweek": 4.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7742175080248, 35.67610688505787]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:17643", "type": "clothesstore", "CO2": {"type": "Property", "value": 424.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 4.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 34.2931822761432, "month": 3.0, "dayweek": 4.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.744992155919, 35.689537455486345]}}}, {"id": "urn:ngsi-ld:shop:bookshop:17644", "type": "bookshop", "CO2": {"type": "Property", "value": 425.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 4.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 35.155809194404156, "month": 3.0, "dayweek": 4.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74934854097532, 35.67178654963918]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:17645", "type": "shoesstore", "CO2": {"type": "Property", "value": 427.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 4.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.27682778974392, "month": 3.0, "dayweek": 4.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71769918152455, 35.67077112291425]}}}, {"id": "urn:ngsi-ld:shop:jewellery:17646", "type": "jewellery", "CO2": {"type": "Property", "value": 414.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 3.0, "dayweek": 4.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 33.521971228901435, "month": 3.0, "dayweek": 4.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74726448394728, 35.6820955981144]}}}, {"id": "urn:ngsi-ld:shop:restaurant:17647", "type": "restaurant", "CO2": {"type": "Property", "value": 424.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.9, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 3.0, "dayweek": 4.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.71012324087175, "month": 3.0, "dayweek": 4.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7155619544133, 35.68710860874802]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18032", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 907.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 315.0, "month": 3.0, "dayweek": 0.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 291.51705810477154, "month": 3.0, "dayweek": 0.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71596887352706, 35.67581739803418]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18033", "type": "jewellery", "CO2": {"type": "Property", "value": 932.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 305.0, "month": 3.0, "dayweek": 0.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 298.58108527292416, "month": 3.0, "dayweek": 0.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74654888819975, 35.690365398616834]}}}, {"id": "urn:ngsi-ld:shop:cinema:18034", "type": "cinema", "CO2": {"type": "Property", "value": 894.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 305.0, "month": 3.0, "dayweek": 0.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 289.36643678511115, "month": 3.0, "dayweek": 0.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77202795047845, 35.67056493257704]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18035", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 890.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 315.0, "month": 3.0, "dayweek": 0.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 288.93710531797797, "month": 3.0, "dayweek": 0.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74217014242927, 35.69046744648801]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18036", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 896.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 301.0, "month": 3.0, "dayweek": 0.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 291.09169062163306, "month": 3.0, "dayweek": 0.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76516728045647, 35.67973550638927]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18037", "type": "clothesstore", "CO2": {"type": "Property", "value": 871.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 297.0, "month": 3.0, "dayweek": 0.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 285.2361339358447, "month": 3.0, "dayweek": 0.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73640225029342, 35.67671233673783]}}}, {"id": "urn:ngsi-ld:shop:cafe:18038", "type": "cafe", "CO2": {"type": "Property", "value": 883.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 313.0, "month": 3.0, "dayweek": 0.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 260.8913128715706, "month": 3.0, "dayweek": 0.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77477528130788, 35.67625815763998]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18039", "type": "teeshop", "CO2": {"type": "Property", "value": 853.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 334.0, "month": 3.0, "dayweek": 0.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 253.74379780038817, "month": 3.0, "dayweek": 0.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71512857488764, 35.67883264258263]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18040", "type": "computerstore", "CO2": {"type": "Property", "value": 857.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 340.0, "month": 3.0, "dayweek": 0.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 255.38159974988554, "month": 3.0, "dayweek": 0.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76337617994915, 35.69190546352457]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18041", "type": "restaurant", "CO2": {"type": "Property", "value": 975.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 319.0, "month": 3.0, "dayweek": 0.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 286.47605288636856, "month": 3.0, "dayweek": 0.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72394258958684, 35.69102900724498]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18042", "type": "opticianstore", "CO2": {"type": "Property", "value": 990.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 349.0, "month": 3.0, "dayweek": 0.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 290.956163283733, "month": 3.0, "dayweek": 0.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7642717661244, 35.67926245389268]}}}, {"id": "urn:ngsi-ld:shop:cafe:18043", "type": "cafe", "CO2": {"type": "Property", "value": 979.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 356.0, "month": 3.0, "dayweek": 0.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 288.71809007704815, "month": 3.0, "dayweek": 0.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76608261475505, 35.686998406234956]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18044", "type": "sweetsshop", "CO2": {"type": "Property", "value": 986.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 317.0, "month": 3.0, "dayweek": 0.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 263.08131062738, "month": 3.0, "dayweek": 0.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7800218241289, 35.68115693916715]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18045", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 962.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 308.0, "month": 3.0, "dayweek": 0.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 257.4841456186704, "month": 3.0, "dayweek": 0.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75597248414206, 35.68257379821074]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18046", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 958.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 277.0, "month": 3.0, "dayweek": 0.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 257.05481415153724, "month": 3.0, "dayweek": 0.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76574908914273, 35.675808381527744]}}}, {"id": "urn:ngsi-ld:shop:cafe:18047", "type": "cafe", "CO2": {"type": "Property", "value": 1049.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 265.0, "month": 3.0, "dayweek": 0.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 281.17269200689213, "month": 3.0, "dayweek": 0.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74887316043097, 35.68531670492931]}}}, {"id": "urn:ngsi-ld:shop:cafe:18048", "type": "cafe", "CO2": {"type": "Property", "value": 1080.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 271.0, "month": 3.0, "dayweek": 0.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 289.78706923751776, "month": 3.0, "dayweek": 0.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75804180984193, 35.68661648526394]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18049", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1090.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 181.0, "month": 3.0, "dayweek": 0.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 292.97522124948813, "month": 3.0, "dayweek": 0.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70779671659335, 35.681304760843126]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18050", "type": "flowershop", "CO2": {"type": "Property", "value": 1092.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 66.0, "month": 3.0, "dayweek": 0.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 266.04648341442584, "month": 3.0, "dayweek": 0.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74004102462126, 35.68470175277982]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18051", "type": "beuatystore", "CO2": {"type": "Property", "value": 1062.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 65.0, "month": 3.0, "dayweek": 0.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 258.8989683432434, "month": 3.0, "dayweek": 0.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75707872759844, 35.6769090405173]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18052", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1017.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 0.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 247.8755781158785, "month": 3.0, "dayweek": 0.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76982383973387, 35.68100386173232]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18053", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1030.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 3.0, "dayweek": 0.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 251.83890515908536, "month": 3.0, "dayweek": 0.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7727054939802, 35.690919736040364]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18054", "type": "musicshop", "CO2": {"type": "Property", "value": 974.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 39.0, "month": 3.0, "dayweek": 0.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 237.97320648385352, "month": 3.0, "dayweek": 0.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77962949639274, 35.69185877745236]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18055", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 918.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 0.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 224.10750780862168, "month": 3.0, "dayweek": 0.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7706954997399, 35.674551730671055]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18056", "type": "restaurant", "CO2": {"type": "Property", "value": 903.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 0.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 192.78611146321953, "month": 3.0, "dayweek": 0.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70823387616863, 35.67207604444818]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18057", "type": "electronicsstore", "CO2": {"type": "Property", "value": 881.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 78.0, "month": 3.0, "dayweek": 0.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 187.70572980866763, "month": 3.0, "dayweek": 0.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75305287718496, 35.686452247742686]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18058", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 842.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 82.0, "month": 3.0, "dayweek": 0.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 178.2326896437757, "month": 3.0, "dayweek": 0.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71108863509895, 35.68534364486884]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18059", "type": "beuatystore", "CO2": {"type": "Property", "value": 800.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 77.0, "month": 3.0, "dayweek": 0.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 167.98447444764736, "month": 3.0, "dayweek": 0.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70943381163184, 35.6932665837716]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18060", "type": "bookshop", "CO2": {"type": "Property", "value": 658.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 76.0, "month": 3.0, "dayweek": 0.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 131.89709154363686, "month": 3.0, "dayweek": 0.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75381036652226, 35.68832169978462]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18061", "type": "restaurant", "CO2": {"type": "Property", "value": 642.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 93.0, "month": 3.0, "dayweek": 0.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 128.36705995155788, "month": 3.0, "dayweek": 0.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7322092181373, 35.6844474550991]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18062", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 600.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 94.0, "month": 3.0, "dayweek": 0.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 90.06908832502751, "month": 3.0, "dayweek": 0.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7501804767478, 35.67944294325789]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18063", "type": "teeshop", "CO2": {"type": "Property", "value": 543.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 93.0, "month": 3.0, "dayweek": 0.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.94499797271683, "month": 3.0, "dayweek": 0.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74472939503295, 35.67419906482518]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18064", "type": "jewellery", "CO2": {"type": "Property", "value": 525.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 97.0, "month": 3.0, "dayweek": 0.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 71.89818302648015, "month": 3.0, "dayweek": 0.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71687526912703, 35.67195747998247]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18065", "type": "opticianstore", "CO2": {"type": "Property", "value": 491.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 3.0, "dayweek": 0.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 63.717101246982395, "month": 3.0, "dayweek": 0.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70831557628244, 35.690691350976]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18066", "type": "computerstore", "CO2": {"type": "Property", "value": 507.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 79.0, "month": 3.0, "dayweek": 0.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 68.45560332142568, "month": 3.0, "dayweek": 0.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71950738148425, 35.67467040698332]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18067", "type": "beuatystore", "CO2": {"type": "Property", "value": 497.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 3.0, "dayweek": 0.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 66.47592179181964, "month": 3.0, "dayweek": 0.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7764012383734, 35.68348411006621]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18068", "type": "shoesstore", "CO2": {"type": "Property", "value": 513.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 3.0, "dayweek": 0.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.16466743586088, "month": 3.0, "dayweek": 0.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74230348421546, 35.68299909214754]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18069", "type": "electronicsstore", "CO2": {"type": "Property", "value": 500.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 3.0, "dayweek": 0.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 40.40981087501834, "month": 3.0, "dayweek": 0.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77523100881535, 35.69506266678743]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18070", "type": "flowershop", "CO2": {"type": "Property", "value": 500.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 3.0, "dayweek": 0.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.01404611620043, "month": 3.0, "dayweek": 0.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73852618391774, 35.68832335805507]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18071", "type": "opticianstore", "CO2": {"type": "Property", "value": 566.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 83.0, "month": 3.0, "dayweek": 0.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 58.67213204458477, "month": 3.0, "dayweek": 0.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73533509697734, 35.67294790745027]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18072", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 616.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 0.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 72.19595113970797, "month": 3.0, "dayweek": 0.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71583030044152, 35.692084205903306]}}}, {"id": "urn:ngsi-ld:shop:cinema:18073", "type": "cinema", "CO2": {"type": "Property", "value": 631.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 63.0, "month": 3.0, "dayweek": 0.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.67606153707246, "month": 3.0, "dayweek": 0.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70821270109747, 35.669395110288555]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18074", "type": "clothesstore", "CO2": {"type": "Property", "value": 702.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 3.0, "dayweek": 0.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 67.57634942044885, "month": 3.0, "dayweek": 0.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76531470609413, 35.671136147608244]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18075", "type": "musicshop", "CO2": {"type": "Property", "value": 700.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 82.0, "month": 3.0, "dayweek": 0.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 67.66380130747336, "month": 3.0, "dayweek": 0.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73878885356606, 35.67558239165344]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18076", "type": "flowershop", "CO2": {"type": "Property", "value": 726.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 80.0, "month": 3.0, "dayweek": 0.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 74.98622015270479, "month": 3.0, "dayweek": 0.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77989981388149, 35.67196844380095]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18077", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 713.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 3.0, "dayweek": 0.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 72.23136359186228, "month": 3.0, "dayweek": 0.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7159565681925, 35.69439908892558]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18078", "type": "sweetsshop", "CO2": {"type": "Property", "value": 706.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 3.0, "dayweek": 0.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 71.02685709349268, "month": 3.0, "dayweek": 0.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77410381409112, 35.67475512848339]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18079", "type": "computerstore", "CO2": {"type": "Property", "value": 707.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.5, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 5.6, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 79.0, "month": 3.0, "dayweek": 0.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 71.88948401175367, "month": 3.0, "dayweek": 0.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77283659837454, 35.672810835394316]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18176", "type": "beuatystore", "CO2": {"type": "Property", "value": 1047.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 354.0, "month": 3.0, "dayweek": 1.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 307.24748012177946, "month": 3.0, "dayweek": 1.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7187115412268, 35.687257274032305]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18177", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1053.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 358.0, "month": 3.0, "dayweek": 1.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 309.40206542543456, "month": 3.0, "dayweek": 1.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70909268889721, 35.67647182233189]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18178", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1042.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 363.0, "month": 3.0, "dayweek": 1.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 307.1639922187496, "month": 3.0, "dayweek": 1.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75390727153223, 35.67962948311677]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18179", "type": "flowershop", "CO2": {"type": "Property", "value": 1197.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 364.0, "month": 3.0, "dayweek": 1.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 348.4231726483312, "month": 3.0, "dayweek": 1.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7594879386639, 35.67159259978436]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18180", "type": "opticianstore", "CO2": {"type": "Property", "value": 1201.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 354.0, "month": 3.0, "dayweek": 1.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 349.4567393566465, "month": 3.0, "dayweek": 1.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75094868092967, 35.67868779149681]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18181", "type": "computerstore", "CO2": {"type": "Property", "value": 1172.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 355.0, "month": 3.0, "dayweek": 1.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 342.5676159625428, "month": 3.0, "dayweek": 1.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.725555145586, 35.68041983364685]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18182", "type": "shoesstore", "CO2": {"type": "Property", "value": 1166.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 310.0, "month": 3.0, "dayweek": 1.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 313.57174471085, "month": 3.0, "dayweek": 1.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7136917369322, 35.67727220587369]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18183", "type": "beuatystore", "CO2": {"type": "Property", "value": 1164.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 353.0, "month": 3.0, "dayweek": 1.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 313.6591965978745, "month": 3.0, "dayweek": 1.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7605603775936, 35.693706945580544]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18184", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1149.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 356.0, "month": 3.0, "dayweek": 1.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 310.3875566828743, "month": 3.0, "dayweek": 1.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.753155430478, 35.69265887956371]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18185", "type": "opticianstore", "CO2": {"type": "Property", "value": 1201.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 363.0, "month": 3.0, "dayweek": 1.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 324.42815913215514, "month": 3.0, "dayweek": 1.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7092905277103, 35.69477205276744]}}}, {"id": "urn:ngsi-ld:shop:cafe:18186", "type": "cafe", "CO2": {"type": "Property", "value": 1272.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 344.0, "month": 3.0, "dayweek": 1.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 343.3782034459336, "month": 3.0, "dayweek": 1.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71911188521545, 35.685031601762255]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18187", "type": "musicshop", "CO2": {"type": "Property", "value": 1254.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 346.0, "month": 3.0, "dayweek": 1.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 339.33138849969697, "month": 3.0, "dayweek": 1.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75920343131122, 35.68095712492296]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18188", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1233.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 231.0, "month": 3.0, "dayweek": 1.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 306.4596420918218, "month": 3.0, "dayweek": 1.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74590220688486, 35.69454823839867]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18189", "type": "musicshop", "CO2": {"type": "Property", "value": 1244.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 185.0, "month": 3.0, "dayweek": 1.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 310.5104210220531, "month": 3.0, "dayweek": 1.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7401885361164, 35.67279579435854]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18190", "type": "computerstore", "CO2": {"type": "Property", "value": 1187.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 161.0, "month": 3.0, "dayweek": 1.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 295.7820954285603, "month": 3.0, "dayweek": 1.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7066676366199, 35.67156560239406]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18191", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1064.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 160.0, "month": 3.0, "dayweek": 1.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 264.60415438904744, "month": 3.0, "dayweek": 1.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77999331220724, 35.69381940240559]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18192", "type": "beuatystore", "CO2": {"type": "Property", "value": 923.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 152.0, "month": 3.0, "dayweek": 1.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 228.77516316211583, "month": 3.0, "dayweek": 1.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7265130169866, 35.69492435067888]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18193", "type": "jewellery", "CO2": {"type": "Property", "value": 824.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 163.0, "month": 3.0, "dayweek": 1.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 203.7986223724947, "month": 3.0, "dayweek": 1.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7741488637976, 35.69500039039074]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18194", "type": "clothesstore", "CO2": {"type": "Property", "value": 766.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 121.0, "month": 3.0, "dayweek": 1.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 161.3663839127032, "month": 3.0, "dayweek": 1.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71666081434708, 35.69103009890055]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18195", "type": "teeshop", "CO2": {"type": "Property", "value": 715.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 3.0, "dayweek": 1.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 148.79264362286546, "month": 3.0, "dayweek": 1.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74799883847024, 35.68281186458997]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18196", "type": "jewellery", "CO2": {"type": "Property", "value": 695.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 3.0, "dayweek": 1.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 144.22904532247117, "month": 3.0, "dayweek": 1.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75654087447097, 35.68857292263393]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18197", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 675.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 1.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 139.66544702207688, "month": 3.0, "dayweek": 1.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74618856316505, 35.68250551083019]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18198", "type": "shoesstore", "CO2": {"type": "Property", "value": 674.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 3.0, "dayweek": 1.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 140.01129058618022, "month": 3.0, "dayweek": 1.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75003138001372, 35.68027344787668]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18199", "type": "electronicsstore", "CO2": {"type": "Property", "value": 656.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 1.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 135.9644756399436, "month": 3.0, "dayweek": 1.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77662856802542, 35.68747174112151]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18201", "type": "teeshop", "CO2": {"type": "Property", "value": 652.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 108.08962298359062, "month": 3.0, "dayweek": 1.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7381277535331, 35.68403478201251]}}}, {"id": "urn:ngsi-ld:shop:cinema:18202", "type": "cinema", "CO2": {"type": "Property", "value": 649.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 1.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 107.91868319353624, "month": 3.0, "dayweek": 1.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70607242871543, 35.69138912689944]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18203", "type": "beuatystore", "CO2": {"type": "Property", "value": 628.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 1.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.09669321606313, "month": 3.0, "dayweek": 1.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73351028519966, 35.69137238794838]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18204", "type": "teeshop", "CO2": {"type": "Property", "value": 621.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 3.0, "dayweek": 1.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 101.89218671769353, "month": 3.0, "dayweek": 1.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73314898275473, 35.670671061960206]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18205", "type": "jewellery", "CO2": {"type": "Property", "value": 623.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 3.0, "dayweek": 1.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.0132053130333, "month": 3.0, "dayweek": 1.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77078314231187, 35.68911193374363]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18206", "type": "bookshop", "CO2": {"type": "Property", "value": 633.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 1.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.15160089460161, "month": 3.0, "dayweek": 1.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75460565373015, 35.691534129954825]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18208", "type": "shoesstore", "CO2": {"type": "Property", "value": 625.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 1.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 77.29293796033531, "month": 3.0, "dayweek": 1.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77268487473788, 35.68729669592031]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18209", "type": "sweetsshop", "CO2": {"type": "Property", "value": 610.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 1.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 74.02129804533516, "month": 3.0, "dayweek": 1.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77641407244906, 35.693239758507765]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18214", "type": "computerstore", "CO2": {"type": "Property", "value": 560.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.07313396690276, "month": 3.0, "dayweek": 1.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75228991997332, 35.681497673821106]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18215", "type": "computerstore", "CO2": {"type": "Property", "value": 548.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 3.0, "dayweek": 1.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 33.57666908313902, "month": 3.0, "dayweek": 1.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7791616221449, 35.68456813437557]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18216", "type": "opticianstore", "CO2": {"type": "Property", "value": 540.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 3.0, "dayweek": 1.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 32.11377090769062, "month": 3.0, "dayweek": 1.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7344180500984, 35.67927182811633]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18218", "type": "jewellery", "CO2": {"type": "Property", "value": 516.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 1.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -0.928915290238848, "month": 3.0, "dayweek": 1.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76917103228737, 35.68895887925736]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18219", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 519.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 1.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 0.45049498217977657, "month": 3.0, "dayweek": 1.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7182749886692, 35.692220002297944]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18220", "type": "clothesstore", "CO2": {"type": "Property", "value": 505.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -2.562753255741626, "month": 3.0, "dayweek": 1.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77596942370926, 35.69342744777934]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18221", "type": "sweetsshop", "CO2": {"type": "Property", "value": 495.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -4.542434785347666, "month": 3.0, "dayweek": 1.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71361367771988, 35.68233909063065]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18222", "type": "electronicsstore", "CO2": {"type": "Property", "value": 500.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -2.646241158771403, "month": 3.0, "dayweek": 1.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73133119998298, 35.67828626887043]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18223", "type": "bookshop", "CO2": {"type": "Property", "value": 488.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.3, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -5.14270604253511, "month": 3.0, "dayweek": 1.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76285890848803, 35.68058440508942]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18320", "type": "musicshop", "CO2": {"type": "Property", "value": 780.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 336.0, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 273.18929907878925, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7477688910567, 35.680557596313726]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:18321", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 818.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 385.0, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 283.6124180489666, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7105651178461, 35.67629915578084]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18322", "type": "flowershop", "CO2": {"type": "Property", "value": 827.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 391.0, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 286.5421783838581, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77100203778684, 35.67798100103692]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:18323", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 916.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 416.0, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 310.1432728850553, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7728289850789, 35.67937674525379]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18324", "type": "opticianstore", "CO2": {"type": "Property", "value": 932.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 394.0, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 314.8817749594986, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73678760658885, 35.674623418673086]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18325", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 950.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 385.0, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 320.1370603880995, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74242768877468, 35.67537085303143]}}}, {"id": "urn:ngsi-ld:shop:cafe:18326", "type": "cafe", "CO2": {"type": "Property", "value": 966.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 332.0, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 296.82580603214075, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70896209589108, 35.68596246169182]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18327", "type": "teeshop", "CO2": {"type": "Property", "value": 926.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 360.0, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 287.09437419017013, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72824790643278, 35.69218072361487]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18328", "type": "beuatystore", "CO2": {"type": "Property", "value": 920.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 362.0, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 286.1482593688793, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7543672207174, 35.676670235474454]}}}, {"id": "urn:ngsi-ld:shop:cinema:18329", "type": "cinema", "CO2": {"type": "Property", "value": 1015.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 401.0, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 311.2997039325494, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7346335327087, 35.68960190209804]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18330", "type": "musicshop", "CO2": {"type": "Property", "value": 1051.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 397.0, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 321.20603954856915, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77993038463953, 35.68973544681201]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18331", "type": "restaurant", "CO2": {"type": "Property", "value": 1033.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 394.0, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 317.15922460233253, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74135626988198, 35.68210411530594]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18332", "type": "opticianstore", "CO2": {"type": "Property", "value": 1031.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 348.0, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 289.19692005895496, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73679121922495, 35.672205972962395]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18333", "type": "computerstore", "CO2": {"type": "Property", "value": 985.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 332.0, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 277.91513815451134, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7398303777496, 35.67168180677623]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:18334", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 980.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 356.0, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 277.2274150102993, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7665200542034, 35.67366505392367]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18335", "type": "bookshop", "CO2": {"type": "Property", "value": 1002.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 331.0, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 283.51626714721556, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75586951416966, 35.66978183350052]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18336", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1023.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 292.0, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 289.54672760705296, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71587900222832, 35.67345305834852]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18337", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1048.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 297.0, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 296.61075477520563, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77867403849493, 35.693195332361384]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18338", "type": "jewellery", "CO2": {"type": "Property", "value": 1036.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 224.0, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 266.06453346103984, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7160947237709, 35.69478344300176]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:18339", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1011.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 149.0, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 260.2089767752515, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73741378678147, 35.6725398523072]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18340", "type": "electronicsstore", "CO2": {"type": "Property", "value": 963.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 145.0, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 248.41041151665019, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7719350116977, 35.670269417429765]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18341", "type": "restaurant", "CO2": {"type": "Property", "value": 856.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 152.0, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 221.3667373103985, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7223783221528, 35.68888592145509]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18342", "type": "restaurant", "CO2": {"type": "Property", "value": 814.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 149.0, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 211.11852211427015, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72598227003863, 35.68769795742434]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:18343", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 804.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 209.13884058466408, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7274178080752, 35.67176196331961]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18344", "type": "flowershop", "CO2": {"type": "Property", "value": 779.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 175.2335274684737, "month": 3.0, "dayweek": 2.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72605175446608, 35.6853677252969]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18345", "type": "electronicsstore", "CO2": {"type": "Property", "value": 738.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 165.24370394942417, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75425652688196, 35.68905296977061]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18346", "type": "musicshop", "CO2": {"type": "Property", "value": 699.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 155.7706637845323, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71732958870547, 35.69319347298467]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18347", "type": "sweetsshop", "CO2": {"type": "Property", "value": 690.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 60.0, "month": 3.0, "dayweek": 2.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 154.04937393200507, "month": 3.0, "dayweek": 2.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7586422373294, 35.676968811218956]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18348", "type": "flowershop", "CO2": {"type": "Property", "value": 644.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 142.76759202756145, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71176848250806, 35.677370748229535]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:18349", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 611.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 2.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 134.84490192514252, "month": 3.0, "dayweek": 2.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7609660534653, 35.6717457777208]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18350", "type": "computerstore", "CO2": {"type": "Property", "value": 589.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 46.0, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 101.71476384018854, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7538329264509, 35.67585139286612]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:18351", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 578.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 2.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 99.47669063350367, "month": 3.0, "dayweek": 2.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76004182914855, 35.68007507546252]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18352", "type": "flowershop", "CO2": {"type": "Property", "value": 542.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 2.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 90.77882549984821, "month": 3.0, "dayweek": 2.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76031419857242, 35.68274688929326]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18353", "type": "sweetsshop", "CO2": {"type": "Property", "value": 536.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 89.83271067855745, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7154354608318, 35.68272993340658]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18354", "type": "clothesstore", "CO2": {"type": "Property", "value": 507.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 42.0, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 82.94358728445377, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71405165293882, 35.673617413118784]}}}, {"id": "urn:ngsi-ld:shop:cinema:18355", "type": "cinema", "CO2": {"type": "Property", "value": 509.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 40.0, "month": 3.0, "dayweek": 2.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 84.06460587979356, "month": 3.0, "dayweek": 2.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73856190250885, 35.68900860834152]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18356", "type": "jewellery", "CO2": {"type": "Property", "value": 492.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 52.226426180233716, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72400000620607, 35.69013190169395]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18357", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 467.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 46.370869494445316, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72022761743466, 35.67206473525934]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18358", "type": "musicshop", "CO2": {"type": "Property", "value": 478.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 58.0, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 49.817413183494466, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7550739840034, 35.694860310557075]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18359", "type": "musicshop", "CO2": {"type": "Property", "value": 470.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 48.354515008046036, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72940838668612, 35.67420352158658]}}}, {"id": "urn:ngsi-ld:shop:cafe:18360", "type": "cafe", "CO2": {"type": "Property", "value": 476.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 69.0, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 50.50910031170113, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74264477351915, 35.68815588940042]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18361", "type": "restaurant", "CO2": {"type": "Property", "value": 468.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 75.0, "month": 3.0, "dayweek": 2.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 49.0462021362527, "month": 3.0, "dayweek": 2.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73359678133917, 35.6798323250807]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18362", "type": "shoesstore", "CO2": {"type": "Property", "value": 479.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 3.0, "dayweek": 2.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 24.442989394899854, "month": 3.0, "dayweek": 2.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73969584094849, 35.67561714435227]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18363", "type": "sweetsshop", "CO2": {"type": "Property", "value": 469.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 3.0, "dayweek": 2.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 22.463307865293785, "month": 3.0, "dayweek": 2.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73956886977103, 35.69503950244288]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18364", "type": "computerstore", "CO2": {"type": "Property", "value": 476.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 24.87628484602763, "month": 3.0, "dayweek": 2.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75530351423603, 35.67636943911504]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18366", "type": "electronicsstore", "CO2": {"type": "Property", "value": 453.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 20.14174675557905, "month": 3.0, "dayweek": 2.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71943972602497, 35.6927418749342]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18367", "type": "bookshop", "CO2": {"type": "Property", "value": 466.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.8, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 2.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 24.105073798785867, "month": 3.0, "dayweek": 2.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77882457843796, 35.684412842539594]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18464", "type": "teeshop", "CO2": {"type": "Property", "value": 708.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 292.0, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 236.83034133396146, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7420944719134, 35.68457018109377]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18465", "type": "restaurant", "CO2": {"type": "Property", "value": 775.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 311.0, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 254.7468189394246, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71169035605513, 35.67970640776335]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18466", "type": "musicshop", "CO2": {"type": "Property", "value": 784.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 309.0, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 257.6765792743161, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7359304022291, 35.67250817643192]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18467", "type": "bookshop", "CO2": {"type": "Property", "value": 860.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 307.0, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 277.91858197348864, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73287280776285, 35.6849071002051]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18468", "type": "clothesstore", "CO2": {"type": "Property", "value": 882.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 304.0, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 284.20743411040485, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77468698637665, 35.679756778256895]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18469", "type": "opticianstore", "CO2": {"type": "Property", "value": 851.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 309.0, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 276.8015273621436, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7170197377715, 35.67542154454662]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18470", "type": "restaurant", "CO2": {"type": "Property", "value": 844.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 298.0, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 247.54726443337194, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75144996256785, 35.67887181793371]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18471", "type": "beuatystore", "CO2": {"type": "Property", "value": 860.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 314.0, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 252.2857665078152, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75068137976513, 35.690795843846004]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18472", "type": "jewellery", "CO2": {"type": "Property", "value": 827.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 326.0, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 244.3630764053962, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71198376918787, 35.67646247839751]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18473", "type": "bookshop", "CO2": {"type": "Property", "value": 869.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 318.0, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 255.81976208388886, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70561151686422, 35.67387177328425]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18474", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 892.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 321.0, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 262.971241139066, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7456302446158, 35.68493796460694]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18475", "type": "computerstore", "CO2": {"type": "Property", "value": 922.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 290.0, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 270.7229914514307, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75965515055677, 35.69450869663483]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18476", "type": "sweetsshop", "CO2": {"type": "Property", "value": 873.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 291.0, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 230.61627808534854, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76762400968326, 35.66995144513286]}}}, {"id": "urn:ngsi-ld:shop:cafe:18477", "type": "cafe", "CO2": {"type": "Property", "value": 868.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 296.0, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 229.92855494113655, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75079849159906, 35.67182227564913]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18478", "type": "beuatystore", "CO2": {"type": "Property", "value": 871.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 294.0, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 231.30796521355512, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77540333234137, 35.679271615436264]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18479", "type": "beuatystore", "CO2": {"type": "Property", "value": 958.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 282.0, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 254.39227636059474, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70714505782274, 35.68112277470632]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18480", "type": "electronicsstore", "CO2": {"type": "Property", "value": 961.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 264.0, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 255.77168663301336, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7446383797964, 35.69177009642102]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18481", "type": "teeshop", "CO2": {"type": "Property", "value": 945.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 264.0, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 252.24165504093435, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75219787021808, 35.69455501072034]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18482", "type": "shoesstore", "CO2": {"type": "Property", "value": 948.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 244.0, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 225.57130888295092, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71656457669877, 35.688865788173246]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18483", "type": "restaurant", "CO2": {"type": "Property", "value": 911.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 198.0, "month": 3.0, "dayweek": 3.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 216.61505207221666, "month": 3.0, "dayweek": 3.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74585658957085, 35.681740804923784]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18484", "type": "electronicsstore", "CO2": {"type": "Property", "value": 900.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 182.0, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 214.37697886553173, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77173613081985, 35.66915137235972]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18485", "type": "electronicsstore", "CO2": {"type": "Property", "value": 832.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 151.0, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 197.41058006535405, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74607280642255, 35.669986025790344]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18486", "type": "bookshop", "CO2": {"type": "Property", "value": 798.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 110.0, "month": 3.0, "dayweek": 3.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 189.22949828585632, "month": 3.0, "dayweek": 3.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7235996056112, 35.681685798107715]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18487", "type": "musicshop", "CO2": {"type": "Property", "value": 717.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 42.0, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 141.4584864944341, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73691886741844, 35.68916210822723]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18488", "type": "sweetsshop", "CO2": {"type": "Property", "value": 735.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 146.1095366818529, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.744721401334, 35.68937155568418]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18489", "type": "shoesstore", "CO2": {"type": "Property", "value": 674.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 130.95187962122696, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72911778699478, 35.682448165859704]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18490", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 645.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 3.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 124.06275622712327, "month": 3.0, "dayweek": 3.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7104029667307, 35.68554420275449]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18491", "type": "electronicsstore", "CO2": {"type": "Property", "value": 623.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 3.0, "dayweek": 3.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 118.98237457257132, "month": 3.0, "dayweek": 3.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7518959142649, 35.6743369099128]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18492", "type": "restaurant", "CO2": {"type": "Property", "value": 599.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 113.3852095638618, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75942353507008, 35.69501150724514]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18493", "type": "electronicsstore", "CO2": {"type": "Property", "value": 599.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 3.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 113.98944480504396, "month": 3.0, "dayweek": 3.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72764494159614, 35.67720708398666]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18494", "type": "jewellery", "CO2": {"type": "Property", "value": 588.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 3.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 83.70161516795704, "month": 3.0, "dayweek": 3.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74120666553978, 35.690481737059955]}}}, {"id": "urn:ngsi-ld:shop:cinema:18495", "type": "cinema", "CO2": {"type": "Property", "value": 561.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 77.329275128011, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73251449730807, 35.69194953935553]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18496", "type": "restaurant", "CO2": {"type": "Property", "value": 548.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 74.57441856716841, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72430222221095, 35.68014799877987]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18497", "type": "opticianstore", "CO2": {"type": "Property", "value": 543.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 3.0, "dayweek": 3.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 73.88669542295648, "month": 3.0, "dayweek": 3.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75900703258205, 35.686459080570515]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18498", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 520.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 3.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 68.54792209132572, "month": 3.0, "dayweek": 3.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77098526712274, 35.678766514707476]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18499", "type": "clothesstore", "CO2": {"type": "Property", "value": 521.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 53.0, "month": 3.0, "dayweek": 3.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 69.41054900958673, "month": 3.0, "dayweek": 3.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70530562947027, 35.669776928371064]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18500", "type": "shoesstore", "CO2": {"type": "Property", "value": 520.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 3.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.706636143287966, "month": 3.0, "dayweek": 3.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75586015699685, 35.6943028829296]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18501", "type": "sweetsshop", "CO2": {"type": "Property", "value": 528.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 44.37800480110073, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73822104550004, 35.68470168448187]}}}, {"id": "urn:ngsi-ld:shop:cinema:18502", "type": "cinema", "CO2": {"type": "Property", "value": 524.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.94867333396755, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76914538271308, 35.67334500172459]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18503", "type": "restaurant", "CO2": {"type": "Property", "value": 527.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 40.0, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 45.328083606386116, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7131499429845, 35.68554743535008]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18504", "type": "flowershop", "CO2": {"type": "Property", "value": 514.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 40.0, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 42.57322704554363, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71201788460095, 35.68090215835572]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:18505", "type": "electronicsstore", "CO2": {"type": "Property", "value": 517.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.95263731796226, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7653239695517, 35.69140189171279]}}}, {"id": "urn:ngsi-ld:shop:cinema:18506", "type": "cinema", "CO2": {"type": "Property", "value": 530.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 19.86620793076699, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71217443951116, 35.6910369512841]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18507", "type": "jewellery", "CO2": {"type": "Property", "value": 554.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 3.0, "dayweek": 3.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 26.67184342184086, "month": 3.0, "dayweek": 3.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73843229242104, 35.6912943732568]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18508", "type": "shoesstore", "CO2": {"type": "Property", "value": 655.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 40.0, "month": 3.0, "dayweek": 3.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 53.37363804798386, "month": 3.0, "dayweek": 3.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71551883428273, 35.66913260214803]}}}, {"id": "urn:ngsi-ld:shop:cinema:18509", "type": "cinema", "CO2": {"type": "Property", "value": 714.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 69.22298223681648, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7529329335408, 35.67774350272337]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18510", "type": "computerstore", "CO2": {"type": "Property", "value": 776.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 3.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 85.84750145688548, "month": 3.0, "dayweek": 3.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7631986294199, 35.67176557240462]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18511", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 767.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 84.12621160435828, "month": 3.0, "dayweek": 3.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75124669222765, 35.67242763875978]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18608", "type": "musicshop", "CO2": {"type": "Property", "value": 794.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 160.0, "month": 3.0, "dayweek": 4.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 283.2088470897867, "month": 3.0, "dayweek": 4.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7080180402413, 35.6818727969103]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18609", "type": "beuatystore", "CO2": {"type": "Property", "value": 795.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 181.0, "month": 3.0, "dayweek": 4.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 284.0714740080477, "month": 3.0, "dayweek": 4.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71419802688183, 35.67637915191939]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18610", "type": "computerstore", "CO2": {"type": "Property", "value": 830.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 174.0, "month": 3.0, "dayweek": 4.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 293.7194179469885, "month": 3.0, "dayweek": 4.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7384034127611, 35.692035277618075]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18611", "type": "jewellery", "CO2": {"type": "Property", "value": 851.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 169.0, "month": 3.0, "dayweek": 4.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 299.7498784068259, "month": 3.0, "dayweek": 4.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7265383103164, 35.685701922388155]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18612", "type": "beuatystore", "CO2": {"type": "Property", "value": 832.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 168.0, "month": 3.0, "dayweek": 4.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 295.44467178351044, "month": 3.0, "dayweek": 4.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75152442793774, 35.66979331439991]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18613", "type": "clothesstore", "CO2": {"type": "Property", "value": 821.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 174.0, "month": 3.0, "dayweek": 4.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 293.20659857682557, "month": 3.0, "dayweek": 4.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7597910758407, 35.67026825500578]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18614", "type": "restaurant", "CO2": {"type": "Property", "value": 826.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 189.0, "month": 3.0, "dayweek": 4.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 267.0530357729998, "month": 3.0, "dayweek": 4.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74033106640857, 35.67734421745771]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18615", "type": "musicshop", "CO2": {"type": "Property", "value": 800.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 189.0, "month": 3.0, "dayweek": 4.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 260.9390874101326, "month": 3.0, "dayweek": 4.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7233643267889, 35.6862393246117]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18616", "type": "jewellery", "CO2": {"type": "Property", "value": 842.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 211.0, "month": 3.0, "dayweek": 4.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 272.39577308862516, "month": 3.0, "dayweek": 4.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73964588607998, 35.6929096060069]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18617", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 984.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 229.0, "month": 3.0, "dayweek": 4.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 309.6916264749999, "month": 3.0, "dayweek": 4.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76682928872532, 35.6945823544354]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18618", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 968.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 228.0, "month": 3.0, "dayweek": 4.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 306.1615948829209, "month": 3.0, "dayweek": 4.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7409008184502, 35.693888757562746]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18619", "type": "restaurant", "CO2": {"type": "Property", "value": 924.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 194.0, "month": 3.0, "dayweek": 4.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 295.39659633263494, "month": 3.0, "dayweek": 4.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70671066970755, 35.67355054439461]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:18620", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 867.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 125.0, "month": 3.0, "dayweek": 4.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 253.22274954992224, "month": 3.0, "dayweek": 4.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7237746261135, 35.67743381906315]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18621", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 842.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 83.0, "month": 3.0, "dayweek": 4.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 247.3671928641339, "month": 3.0, "dayweek": 4.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7758138608918, 35.6772852706622]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18622", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 836.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 76.0, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 247.0253132840252, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73110633271315, 35.67421958025619]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:18623", "type": "shoesstore", "CO2": {"type": "Property", "value": 837.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 73.0, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 247.28370496110406, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75080775866553, 35.68529216275671]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18624", "type": "clothesstore", "CO2": {"type": "Property", "value": 820.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 74.0, "month": 3.0, "dayweek": 4.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 243.49528169194625, "month": 3.0, "dayweek": 4.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74809830477585, 35.69344543622]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:18625", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 766.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 46.0, "month": 3.0, "dayweek": 4.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 230.14636637087202, "month": 3.0, "dayweek": 4.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75674831100008, 35.670704353686745]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18626", "type": "beuatystore", "CO2": {"type": "Property", "value": 729.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 4.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 193.14035312973576, "month": 3.0, "dayweek": 4.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76780137363346, 35.69389981327782]}}}, {"id": "urn:ngsi-ld:shop:flowershop:18628", "type": "flowershop", "CO2": {"type": "Property", "value": 715.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 3.0, "dayweek": 4.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 190.73134013299656, "month": 3.0, "dayweek": 4.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7628862274302, 35.67190471272942]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18629", "type": "jewellery", "CO2": {"type": "Property", "value": 723.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 3.0, "dayweek": 4.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 193.40270879080927, "month": 3.0, "dayweek": 4.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7544990189406, 35.68629198819027]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18630", "type": "restaurant", "CO2": {"type": "Property", "value": 658.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 4.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 177.21148502186801, "month": 3.0, "dayweek": 4.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7066219079975, 35.67433298094261]}}}, {"id": "urn:ngsi-ld:shop:cinema:18631", "type": "cinema", "CO2": {"type": "Property", "value": 651.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 4.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 176.00697852349847, "month": 3.0, "dayweek": 4.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74940555145113, 35.689028981079105]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18632", "type": "clothesstore", "CO2": {"type": "Property", "value": 615.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 4.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 139.2593569594411, "month": 3.0, "dayweek": 4.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72957073819506, 35.670333769518926]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18633", "type": "computerstore", "CO2": {"type": "Property", "value": 590.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 41.0, "month": 3.0, "dayweek": 4.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 133.40380027365273, "month": 3.0, "dayweek": 4.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74776551575522, 35.67538575143684]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:18634", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 558.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 47.0, "month": 3.0, "dayweek": 4.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 125.73950184831254, "month": 3.0, "dayweek": 4.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77469919025668, 35.67495897910122]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18635", "type": "opticianstore", "CO2": {"type": "Property", "value": 540.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 3.0, "dayweek": 4.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 121.69268690207592, "month": 3.0, "dayweek": 4.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73359383417346, 35.67900634682678]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18636", "type": "musicshop", "CO2": {"type": "Property", "value": 516.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 4.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 116.09552189336635, "month": 3.0, "dayweek": 4.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7690209354544, 35.69310403288484]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18637", "type": "sweetsshop", "CO2": {"type": "Property", "value": 507.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 44.0, "month": 3.0, "dayweek": 4.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 114.37423204083912, "month": 3.0, "dayweek": 4.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77975574210404, 35.68530064657078]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18638", "type": "computerstore", "CO2": {"type": "Property", "value": 477.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 4.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 79.17696053925457, "month": 3.0, "dayweek": 4.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71451231359273, 35.6718227566843]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:18639", "type": "sweetsshop", "CO2": {"type": "Property", "value": 477.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 3.0, "dayweek": 4.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 79.78119578043672, "month": 3.0, "dayweek": 4.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7593301961312, 35.68988686718542]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18640", "type": "jewellery", "CO2": {"type": "Property", "value": 463.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 3.0, "dayweek": 4.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.76794754251532, "month": 3.0, "dayweek": 4.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77954407647502, 35.672849649707274]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18641", "type": "computerstore", "CO2": {"type": "Property", "value": 463.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 58.0, "month": 3.0, "dayweek": 4.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 77.37218278369747, "month": 3.0, "dayweek": 4.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7731653950522, 35.68077764873136]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:18642", "type": "beuatystore", "CO2": {"type": "Property", "value": 458.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 3.0, "dayweek": 4.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.68445963948554, "month": 3.0, "dayweek": 4.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74762384962307, 35.669616221164326]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18643", "type": "opticianstore", "CO2": {"type": "Property", "value": 448.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 53.0, "month": 3.0, "dayweek": 4.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 74.70477810987947, "month": 3.0, "dayweek": 4.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76338198861782, 35.692618519592685]}}}, {"id": "urn:ngsi-ld:shop:computerstore:18644", "type": "computerstore", "CO2": {"type": "Property", "value": 432.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 3.0, "dayweek": 4.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.12499008739843, "month": 3.0, "dayweek": 4.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73227601785354, 35.68290734962369]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:18645", "type": "clothesstore", "CO2": {"type": "Property", "value": 440.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 4.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 45.796358745211165, "month": 3.0, "dayweek": 4.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76704441529608, 35.67967874915517]}}}, {"id": "urn:ngsi-ld:shop:restaurant:18646", "type": "restaurant", "CO2": {"type": "Property", "value": 443.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 3.0, "dayweek": 4.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 47.175769017629676, "month": 3.0, "dayweek": 4.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71290096435723, 35.68616900052596]}}}, {"id": "urn:ngsi-ld:shop:teeshop:18647", "type": "teeshop", "CO2": {"type": "Property", "value": 454.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 3.0, "dayweek": 4.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 50.62231270667891, "month": 3.0, "dayweek": 4.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72802638076615, 35.69431174349355]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18648", "type": "jewellery", "CO2": {"type": "Property", "value": 445.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 3.0, "dayweek": 4.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 48.90102285415165, "month": 3.0, "dayweek": 4.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7281436228469, 35.687347466399636]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18649", "type": "jewellery", "CO2": {"type": "Property", "value": 441.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 48.471691387018524, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71900105127995, 35.69363324625888]}}}, {"id": "urn:ngsi-ld:shop:musicshop:18650", "type": "musicshop", "CO2": {"type": "Property", "value": 444.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 3.0, "dayweek": 4.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 21.801345229035093, "month": 3.0, "dayweek": 4.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72707718047107, 35.682647872067]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:18651", "type": "opticianstore", "CO2": {"type": "Property", "value": 440.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 3.0, "dayweek": 4.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 21.372013761901968, "month": 3.0, "dayweek": 4.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7649223382629, 35.67884197640235]}}}, {"id": "urn:ngsi-ld:shop:cafe:18652", "type": "cafe", "CO2": {"type": "Property", "value": 441.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 58.0, "month": 3.0, "dayweek": 4.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 22.23464068016287, "month": 3.0, "dayweek": 4.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72567141578642, 35.67806120927007]}}}, {"id": "urn:ngsi-ld:shop:cinema:18653", "type": "cinema", "CO2": {"type": "Property", "value": 452.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 58.0, "month": 3.0, "dayweek": 4.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 25.681184369212048, "month": 3.0, "dayweek": 4.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74996054121578, 35.67175122470892]}}}, {"id": "urn:ngsi-ld:shop:jewellery:18654", "type": "jewellery", "CO2": {"type": "Property", "value": 452.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 64.0, "month": 3.0, "dayweek": 4.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 26.2854196103942, "month": 3.0, "dayweek": 4.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76516940959957, 35.69498114013674]}}}, {"id": "urn:ngsi-ld:shop:bookshop:18655", "type": "bookshop", "CO2": {"type": "Property", "value": 442.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 19.1, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 4.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 3.0, "dayweek": 4.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 24.30573808078813, "month": 3.0, "dayweek": 4.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70692553985063, 35.67665035937768]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19040", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 586.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 264.0, "month": 3.0, "dayweek": 0.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 248.4331779424023, "month": 3.0, "dayweek": 0.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75974678853416, 35.6816137640017]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19041", "type": "sweetsshop", "CO2": {"type": "Property", "value": 548.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 294.0, "month": 3.0, "dayweek": 0.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 239.2185294545892, "month": 3.0, "dayweek": 0.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7225226330491, 35.669959077876065]}}}, {"id": "urn:ngsi-ld:shop:cafe:19042", "type": "cafe", "CO2": {"type": "Property", "value": 595.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 274.0, "month": 3.0, "dayweek": 0.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 251.967173518476, "month": 3.0, "dayweek": 0.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7267136194751, 35.69205115669073]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19043", "type": "opticianstore", "CO2": {"type": "Property", "value": 572.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 265.0, "month": 3.0, "dayweek": 0.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 246.6284001868452, "month": 3.0, "dayweek": 0.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.712075169962, 35.68802946083163]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19044", "type": "opticianstore", "CO2": {"type": "Property", "value": 558.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 259.0, "month": 3.0, "dayweek": 0.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 243.61515194892385, "month": 3.0, "dayweek": 0.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7465223287657, 35.68917139915377]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19045", "type": "opticianstore", "CO2": {"type": "Property", "value": 598.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 265.0, "month": 3.0, "dayweek": 0.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 254.5550542732588, "month": 3.0, "dayweek": 0.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7509384052335, 35.68797200928429]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19046", "type": "computerstore", "CO2": {"type": "Property", "value": 594.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 305.0, "month": 3.0, "dayweek": 0.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 226.07596637572365, "month": 3.0, "dayweek": 0.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75771518461812, 35.68154319232933]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19047", "type": "opticianstore", "CO2": {"type": "Property", "value": 556.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 286.0, "month": 3.0, "dayweek": 0.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 216.86131788791064, "month": 3.0, "dayweek": 0.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74088758078875, 35.67223499043297]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19048", "type": "sweetsshop", "CO2": {"type": "Property", "value": 525.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 271.0, "month": 3.0, "dayweek": 0.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 209.45541113964927, "month": 3.0, "dayweek": 0.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71913735888495, 35.6760244965732]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19049", "type": "electronicsstore", "CO2": {"type": "Property", "value": 514.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 277.0, "month": 3.0, "dayweek": 0.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 207.2173379329644, "month": 3.0, "dayweek": 0.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75814645571597, 35.69022253668318]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19050", "type": "flowershop", "CO2": {"type": "Property", "value": 577.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 263.0, "month": 3.0, "dayweek": 0.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 224.1002488301123, "month": 3.0, "dayweek": 0.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7533054216693, 35.67256234129617]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19051", "type": "flowershop", "CO2": {"type": "Property", "value": 580.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 274.0, "month": 3.0, "dayweek": 0.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 225.47965910253086, "month": 3.0, "dayweek": 0.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74577426492786, 35.68959843865894]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19052", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 571.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 254.0, "month": 3.0, "dayweek": 0.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 195.7086128196016, "month": 3.0, "dayweek": 0.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76660233819626, 35.67756360034557]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19053", "type": "opticianstore", "CO2": {"type": "Property", "value": 606.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 233.0, "month": 3.0, "dayweek": 0.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 205.3565567585425, "month": 3.0, "dayweek": 0.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7398677011813, 35.68583711601138]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19054", "type": "electronicsstore", "CO2": {"type": "Property", "value": 647.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 224.0, "month": 3.0, "dayweek": 0.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 216.55485075995622, "month": 3.0, "dayweek": 0.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7575171249595, 35.685948233482605]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19055", "type": "electronicsstore", "CO2": {"type": "Property", "value": 666.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 233.0, "month": 3.0, "dayweek": 0.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 222.068527865636, "month": 3.0, "dayweek": 0.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74780060328627, 35.68302608086817]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19056", "type": "shoesstore", "CO2": {"type": "Property", "value": 778.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 252.0, "month": 3.0, "dayweek": 0.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 251.61263093964607, "month": 3.0, "dayweek": 0.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7408488685298, 35.67855789458222]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19057", "type": "bookshop", "CO2": {"type": "Property", "value": 697.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 211.0, "month": 3.0, "dayweek": 0.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 231.2871403374437, "month": 3.0, "dayweek": 0.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70793601054783, 35.683462368303296]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19058", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 714.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 149.0, "month": 3.0, "dayweek": 0.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 208.23427765856377, "month": 3.0, "dayweek": 0.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7511177250386, 35.672846296088395]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19059", "type": "restaurant", "CO2": {"type": "Property", "value": 717.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 117.0, "month": 3.0, "dayweek": 0.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 209.6136879309824, "month": 3.0, "dayweek": 0.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77398801132017, 35.69241870619946]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19060", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 736.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 121.0, "month": 3.0, "dayweek": 0.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 215.12736503666207, "month": 3.0, "dayweek": 0.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77339607411895, 35.67673329197059]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19061", "type": "beuatystore", "CO2": {"type": "Property", "value": 684.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 119.0, "month": 3.0, "dayweek": 0.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 202.29523306974556, "month": 3.0, "dayweek": 0.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71652982508323, 35.689890566217215]}}}, {"id": "urn:ngsi-ld:shop:cinema:19062", "type": "cinema", "CO2": {"type": "Property", "value": 657.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 126.0, "month": 3.0, "dayweek": 0.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 195.92289302979955, "month": 3.0, "dayweek": 0.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73382787409773, 35.69073888659694]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19063", "type": "teeshop", "CO2": {"type": "Property", "value": 654.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 88.0, "month": 3.0, "dayweek": 0.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 195.75195323974523, "month": 3.0, "dayweek": 0.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77418244164747, 35.677971001476806]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19064", "type": "flowershop", "CO2": {"type": "Property", "value": 647.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 0.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 166.49769031097364, "month": 3.0, "dayweek": 0.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7769923649773, 35.685446775186065]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19065", "type": "computerstore", "CO2": {"type": "Property", "value": 665.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 3.0, "dayweek": 0.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 172.35721098075666, "month": 3.0, "dayweek": 0.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71318155661726, 35.68527247065072]}}}, {"id": "urn:ngsi-ld:shop:cinema:19066", "type": "cinema", "CO2": {"type": "Property", "value": 623.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 3.0, "dayweek": 0.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 161.50476054344617, "month": 3.0, "dayweek": 0.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74801020239414, 35.66929145590242]}}}, {"id": "urn:ngsi-ld:shop:jewellery:19067", "type": "jewellery", "CO2": {"type": "Property", "value": 546.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 3.0, "dayweek": 0.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 142.21283664955914, "month": 3.0, "dayweek": 0.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73019803240345, 35.66897873590903]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19068", "type": "flowershop", "CO2": {"type": "Property", "value": 505.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 0.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 132.2230131305096, "month": 3.0, "dayweek": 0.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71959075394705, 35.670613042882806]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19069", "type": "bookshop", "CO2": {"type": "Property", "value": 478.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 3.0, "dayweek": 0.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 125.85067309056362, "month": 3.0, "dayweek": 0.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73947545674488, 35.669298941915706]}}}, {"id": "urn:ngsi-ld:shop:jewellery:19070", "type": "jewellery", "CO2": {"type": "Property", "value": 448.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 0.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 90.65340158897905, "month": 3.0, "dayweek": 0.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75880970237108, 35.691300123580874]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19071", "type": "bookshop", "CO2": {"type": "Property", "value": 441.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 3.0, "dayweek": 0.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 89.44889509060945, "month": 3.0, "dayweek": 0.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76340684177242, 35.68659187163486]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19072", "type": "beuatystore", "CO2": {"type": "Property", "value": 427.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 3.0, "dayweek": 0.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 86.43564685268805, "month": 3.0, "dayweek": 0.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73813329961334, 35.67028902509167]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19073", "type": "clothesstore", "CO2": {"type": "Property", "value": 420.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 85.23114035431846, "month": 3.0, "dayweek": 0.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73176678739765, 35.6711409762212]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19075", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 403.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 3.0, "dayweek": 0.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 82.04695232634282, "month": 3.0, "dayweek": 0.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77543373087713, 35.681791961334234]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19076", "type": "opticianstore", "CO2": {"type": "Property", "value": 415.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 3.0, "dayweek": 0.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 57.702131262068775, "month": 3.0, "dayweek": 0.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76746193961517, 35.67242356364847]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19077", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 415.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 0.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 58.30636650325093, "month": 3.0, "dayweek": 0.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.733635520855, 35.690435556702404]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19078", "type": "computerstore", "CO2": {"type": "Property", "value": 423.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 0.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 60.97773516106358, "month": 3.0, "dayweek": 0.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7497796989058, 35.67908920713953]}}}, {"id": "urn:ngsi-ld:shop:cafe:19079", "type": "cafe", "CO2": {"type": "Property", "value": 431.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 0.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 63.64910381887631, "month": 3.0, "dayweek": 0.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72222324579946, 35.67638443672359]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19080", "type": "bookshop", "CO2": {"type": "Property", "value": 418.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 3.0, "dayweek": 0.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 60.8942472580338, "month": 3.0, "dayweek": 0.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71179685944423, 35.682154190050085]}}}, {"id": "urn:ngsi-ld:shop:musicshop:19081", "type": "musicshop", "CO2": {"type": "Property", "value": 422.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 3.0, "dayweek": 0.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 62.53204920753123, "month": 3.0, "dayweek": 0.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74853449039966, 35.688103285098045]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19082", "type": "teeshop", "CO2": {"type": "Property", "value": 426.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 0.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.120094726626604, "month": 3.0, "dayweek": 0.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73746774071876, 35.67148125736402]}}}, {"id": "urn:ngsi-ld:shop:cafe:19083", "type": "cafe", "CO2": {"type": "Property", "value": 434.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 3.0, "dayweek": 0.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 38.79146338443931, "month": 3.0, "dayweek": 0.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77763034163607, 35.672484804208494]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19084", "type": "shoesstore", "CO2": {"type": "Property", "value": 443.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 20.0, "month": 3.0, "dayweek": 0.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.72122371933082, "month": 3.0, "dayweek": 0.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77148611777676, 35.671854508826236]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19085", "type": "beuatystore", "CO2": {"type": "Property", "value": 444.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 3.0, "dayweek": 0.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 42.58385063759178, "month": 3.0, "dayweek": 0.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71245076346102, 35.68406509117301]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19086", "type": "clothesstore", "CO2": {"type": "Property", "value": 449.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 0.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 44.48004426416804, "month": 3.0, "dayweek": 0.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75125786193553, 35.68465910343895]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19087", "type": "shoesstore", "CO2": {"type": "Property", "value": 448.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 14.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 3.0, "dayweek": 0.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 44.82588782827136, "month": 3.0, "dayweek": 0.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74567331986913, 35.67903900698304]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19184", "type": "clothesstore", "CO2": {"type": "Property", "value": 718.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 284.0, "month": 3.0, "dayweek": 1.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 238.55162390153419, "month": 3.0, "dayweek": 1.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73393972857767, 35.69249527940155]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19185", "type": "sweetsshop", "CO2": {"type": "Property", "value": 728.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 292.0, "month": 3.0, "dayweek": 1.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 241.73977591350456, "month": 3.0, "dayweek": 1.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73197079967514, 35.67421026125414]}}}, {"id": "urn:ngsi-ld:shop:musicshop:19186", "type": "musicshop", "CO2": {"type": "Property", "value": 713.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 291.0, "month": 3.0, "dayweek": 1.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 238.46813599850438, "month": 3.0, "dayweek": 1.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72652883060022, 35.6723233424136]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19187", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 860.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 290.0, "month": 3.0, "dayweek": 1.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 277.0559477702732, "month": 3.0, "dayweek": 1.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7606247644561, 35.69141180221908]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19188", "type": "electronicsstore", "CO2": {"type": "Property", "value": 846.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 294.0, "month": 3.0, "dayweek": 1.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 274.04269953235183, "month": 3.0, "dayweek": 1.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77751727666504, 35.688038929211245]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19189", "type": "restaurant", "CO2": {"type": "Property", "value": 851.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 280.0, "month": 3.0, "dayweek": 1.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 275.93889315892807, "month": 3.0, "dayweek": 1.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74601376443772, 35.68402757324154]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19190", "type": "flowershop", "CO2": {"type": "Property", "value": 878.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 265.0, "month": 3.0, "dayweek": 1.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 255.46994725083636, "month": 3.0, "dayweek": 1.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7063340479059, 35.66928666715267]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19191", "type": "flowershop", "CO2": {"type": "Property", "value": 863.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 272.0, "month": 3.0, "dayweek": 1.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 252.1983073358362, "month": 3.0, "dayweek": 1.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.730957201537, 35.682122961107424]}}}, {"id": "urn:ngsi-ld:shop:cinema:19192", "type": "cinema", "CO2": {"type": "Property", "value": 722.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 271.0, "month": 3.0, "dayweek": 1.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 216.3693161089045, "month": 3.0, "dayweek": 1.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72949068814862, 35.68757110279005]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19193", "type": "clothesstore", "CO2": {"type": "Property", "value": 760.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 287.0, "month": 3.0, "dayweek": 1.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 226.79243507908188, "month": 3.0, "dayweek": 1.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77027862566433, 35.67938021310869]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19194", "type": "electronicsstore", "CO2": {"type": "Property", "value": 895.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 286.0, "month": 3.0, "dayweek": 1.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 262.2795467259049, "month": 3.0, "dayweek": 1.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73545738387963, 35.675818711614696]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19195", "type": "bookshop", "CO2": {"type": "Property", "value": 1002.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 260.0, "month": 3.0, "dayweek": 1.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 290.5316914145209, "month": 3.0, "dayweek": 1.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76440109291605, 35.675695602230526]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19196", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1065.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 171.0, "month": 3.0, "dayweek": 1.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 279.3648458812667, "month": 3.0, "dayweek": 1.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72954029877175, 35.6705607420418]}}}, {"id": "urn:ngsi-ld:shop:cafe:19197", "type": "cafe", "CO2": {"type": "Property", "value": 1093.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 90.0, "month": 3.0, "dayweek": 1.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 287.2040480806558, "month": 3.0, "dayweek": 1.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70771064032502, 35.67941476504329]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19198", "type": "bookshop", "CO2": {"type": "Property", "value": 1005.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 92.0, "month": 3.0, "dayweek": 1.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 265.0698157389017, "month": 3.0, "dayweek": 1.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71666517366612, 35.69143448236817]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19199", "type": "opticianstore", "CO2": {"type": "Property", "value": 865.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 85.0, "month": 3.0, "dayweek": 1.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 229.49921618904892, "month": 3.0, "dayweek": 1.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71268744037525, 35.66961616095393]}}}, {"id": "urn:ngsi-ld:shop:jewellery:19200", "type": "jewellery", "CO2": {"type": "Property", "value": 718.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 85.0, "month": 3.0, "dayweek": 1.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 192.11987489964434, "month": 3.0, "dayweek": 1.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7730178627168, 35.67794898992064]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19201", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 638.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 82.0, "month": 3.0, "dayweek": 1.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 172.05277597452084, "month": 3.0, "dayweek": 1.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7733053449586, 35.67220261389502]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19202", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 577.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 1.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 128.84536248349286, "month": 3.0, "dayweek": 1.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7110724208386, 35.67223682127852]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19203", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 543.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 120.66428070399508, "month": 3.0, "dayweek": 1.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71362615960737, 35.674237832023806]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19205", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 485.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 106.88603391578772, "month": 3.0, "dayweek": 1.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7487513107035, 35.68432599166821]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19206", "type": "sweetsshop", "CO2": {"type": "Property", "value": 463.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 3.0, "dayweek": 1.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 101.80565226123579, "month": 3.0, "dayweek": 1.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7079551510559, 35.685499711388424]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19207", "type": "beuatystore", "CO2": {"type": "Property", "value": 461.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 3.0, "dayweek": 1.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 101.8931041482603, "month": 3.0, "dayweek": 1.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74157986456066, 35.677498199715394]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19208", "type": "electronicsstore", "CO2": {"type": "Property", "value": 448.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 71.08849115701577, "month": 3.0, "dayweek": 1.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73016458991128, 35.673009705789056]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19209", "type": "beuatystore", "CO2": {"type": "Property", "value": 441.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 67.0, "month": 3.0, "dayweek": 1.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 69.88398465864617, "month": 3.0, "dayweek": 1.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71484061659498, 35.68059733069166]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19210", "type": "sweetsshop", "CO2": {"type": "Property", "value": 433.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 66.0, "month": 3.0, "dayweek": 1.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 68.42108648319771, "month": 3.0, "dayweek": 1.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73024702746778, 35.6928409550702]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19211", "type": "clothesstore", "CO2": {"type": "Property", "value": 428.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 61.0, "month": 3.0, "dayweek": 1.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 67.73336333898578, "month": 3.0, "dayweek": 1.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7498595352406, 35.67156419188747]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19212", "type": "computerstore", "CO2": {"type": "Property", "value": 424.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 64.0, "month": 3.0, "dayweek": 1.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 67.30403187185263, "month": 3.0, "dayweek": 1.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75896474527534, 35.680885287128255]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19213", "type": "opticianstore", "CO2": {"type": "Property", "value": 409.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 60.0, "month": 3.0, "dayweek": 1.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 64.03239195685245, "month": 3.0, "dayweek": 1.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7607140151224, 35.69477861598829]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19214", "type": "restaurant", "CO2": {"type": "Property", "value": 409.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 3.0, "dayweek": 1.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.58687076763255, "month": 3.0, "dayweek": 1.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7697490632111, 35.69079192086904]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19215", "type": "opticianstore", "CO2": {"type": "Property", "value": 417.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 3.0, "dayweek": 1.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 39.25823942544528, "month": 3.0, "dayweek": 1.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72027832288606, 35.67461281498427]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19216", "type": "beuatystore", "CO2": {"type": "Property", "value": 409.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 1.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 37.795341249996795, "month": 3.0, "dayweek": 1.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7182873212421, 35.683496307839775]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19217", "type": "restaurant", "CO2": {"type": "Property", "value": 407.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 1.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 37.88279313702134, "month": 3.0, "dayweek": 1.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7176503114639, 35.6825750317759]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19218", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 414.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 3.0, "dayweek": 1.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 40.29577011775524, "month": 3.0, "dayweek": 1.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7177608949294, 35.68605714016529]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19219", "type": "sweetsshop", "CO2": {"type": "Property", "value": 406.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 3.0, "dayweek": 1.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 38.83287194230681, "month": 3.0, "dayweek": 1.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72668066801927, 35.68702758626593]}}}, {"id": "urn:ngsi-ld:shop:cinema:19220", "type": "cinema", "CO2": {"type": "Property", "value": 407.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 1.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 11.64574243016574, "month": 3.0, "dayweek": 1.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71386923700695, 35.68948748279358]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19221", "type": "shoesstore", "CO2": {"type": "Property", "value": 402.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 47.0, "month": 3.0, "dayweek": 1.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 10.958019285953753, "month": 3.0, "dayweek": 1.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.745262992139, 35.688709368145986]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19222", "type": "computerstore", "CO2": {"type": "Property", "value": 417.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 44.0, "month": 3.0, "dayweek": 1.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.43812968331818, "month": 3.0, "dayweek": 1.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72763685815713, 35.69209063013069]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19223", "type": "flowershop", "CO2": {"type": "Property", "value": 420.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 1.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 16.817539955736777, "month": 3.0, "dayweek": 1.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71501642360195, 35.68984904215721]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19224", "type": "restaurant", "CO2": {"type": "Property", "value": 430.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 46.0, "month": 3.0, "dayweek": 1.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 20.00569196770715, "month": 3.0, "dayweek": 1.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75621571972843, 35.69065505166183]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19225", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 423.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 1.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 18.801185469337554, "month": 3.0, "dayweek": 1.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7327043419669, 35.672675809433194]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19226", "type": "bookshop", "CO2": {"type": "Property", "value": 432.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 3.0, "dayweek": 1.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -6.318810626172933, "month": 3.0, "dayweek": 1.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76940470598709, 35.69458973551763]}}}, {"id": "urn:ngsi-ld:shop:cinema:19227", "type": "cinema", "CO2": {"type": "Property", "value": 410.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 3.0, "dayweek": 1.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -11.399192280724861, "month": 3.0, "dayweek": 1.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7069832373553, 35.67425519939905]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19228", "type": "computerstore", "CO2": {"type": "Property", "value": 423.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 3.0, "dayweek": 1.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -7.435865237518101, "month": 3.0, "dayweek": 1.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75444233187974, 35.68972951491189]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19229", "type": "opticianstore", "CO2": {"type": "Property", "value": 420.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 3.0, "dayweek": 1.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -7.60680502757242, "month": 3.0, "dayweek": 1.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71366778852015, 35.67799613192912]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19230", "type": "clothesstore", "CO2": {"type": "Property", "value": 417.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 3.0, "dayweek": 1.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -7.777744817626711, "month": 3.0, "dayweek": 1.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7370553089599, 35.67995005344443]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19231", "type": "beuatystore", "CO2": {"type": "Property", "value": 428.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.7, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 17.8, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 47.0, "month": 3.0, "dayweek": 1.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -4.331201128577504, "month": 3.0, "dayweek": 1.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73883507715647, 35.674675163524284]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19328", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1180.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 294.0, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 443.22094851851125, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74551929419522, 35.67893057977221]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19329", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1199.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 306.0, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 448.734625624191, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75799867852675, 35.6820549512905]}}}, {"id": "urn:ngsi-ld:shop:cinema:19330", "type": "cinema", "CO2": {"type": "Property", "value": 1250.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 320.0, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 462.516836396393, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7097445472556, 35.6794295418539]}}}, {"id": "urn:ngsi-ld:shop:cafe:19331", "type": "cafe", "CO2": {"type": "Property", "value": 1344.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 339.0, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 487.4098892829843, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71593363335472, 35.68597123930575]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19332", "type": "bookshop", "CO2": {"type": "Property", "value": 1387.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 323.0, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 499.12496663855575, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72967958904312, 35.692280399020966]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19333", "type": "shoesstore", "CO2": {"type": "Property", "value": 1359.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 336.0, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 492.49423492153085, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74182877330384, 35.67113557819456]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19334", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1402.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 321.0, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 476.1595558467003, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7406168649589, 35.68604661278786]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19335", "type": "beuatystore", "CO2": {"type": "Property", "value": 1387.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 340.0, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 472.88791593170015, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76124963026794, 35.674065441726796]}}}, {"id": "urn:ngsi-ld:shop:cinema:19336", "type": "cinema", "CO2": {"type": "Property", "value": 1327.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 357.0, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 457.988650548153, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77659906075263, 35.67236584850588]}}}, {"id": "urn:ngsi-ld:shop:jewellery:19337", "type": "jewellery", "CO2": {"type": "Property", "value": 1334.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 357.0, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 460.4016275288869, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74257801518306, 35.66926408800486]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19338", "type": "teeshop", "CO2": {"type": "Property", "value": 1264.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 353.0, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 442.9184453745516, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7381274859195, 35.67385717929307]}}}, {"id": "urn:ngsi-ld:shop:cinema:19339", "type": "cinema", "CO2": {"type": "Property", "value": 1205.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 349.0, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 428.2775716680833, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7563549292164, 35.6934233191355]}}}, {"id": "urn:ngsi-ld:shop:cinema:19340", "type": "cinema", "CO2": {"type": "Property", "value": 1164.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 273.0, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 390.2379917186317, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75403443703155, 35.693656234651584]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19341", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1166.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 278.0, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 391.3590103139715, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76601272756326, 35.68136484713609]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19342", "type": "teeshop", "CO2": {"type": "Property", "value": 1148.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 305.0, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 387.31219536773483, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75131994545802, 35.672584454358]}}}, {"id": "urn:ngsi-ld:shop:cinema:19343", "type": "cinema", "CO2": {"type": "Property", "value": 1169.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 297.0, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 393.34265582757223, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76616170997752, 35.67501004332548]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19344", "type": "flowershop", "CO2": {"type": "Property", "value": 1149.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 283.0, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 388.77905752717794, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74508043008953, 35.68237692015616]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19345", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1124.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 284.0, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 382.92350084138957, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74414703270358, 35.673054609016674]}}}, {"id": "urn:ngsi-ld:shop:musicshop:19346", "type": "musicshop", "CO2": {"type": "Property", "value": 1102.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 157.0, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 349.7933627564356, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76475052231135, 35.68295280799616]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19347", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1066.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 97.0, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 341.0954976227802, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74172700176868, 35.684945053182865]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19348", "type": "flowershop", "CO2": {"type": "Property", "value": 1044.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 91.0, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 336.01511596822826, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7534893134191, 35.693094605415595]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19349", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1014.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 77.0, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 328.86760089704575, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7351948112647, 35.675239444688565]}}}, {"id": "urn:ngsi-ld:shop:cinema:19350", "type": "cinema", "CO2": {"type": "Property", "value": 868.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 71.0, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 291.74665128472003, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72624161582317, 35.67654535240107]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19351", "type": "opticianstore", "CO2": {"type": "Property", "value": 853.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 288.4750113697199, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7538052065353, 35.692211628008636]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19353", "type": "computerstore", "CO2": {"type": "Property", "value": 766.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 101.0, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 239.15364951582472, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74374930602772, 35.67897814807893]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19354", "type": "electronicsstore", "CO2": {"type": "Property", "value": 713.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 102.0, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 226.0631258718293, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7765604728104, 35.68658905492094]}}}, {"id": "urn:ngsi-ld:shop:jewellery:19355", "type": "jewellery", "CO2": {"type": "Property", "value": 674.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 106.0, "month": 3.0, "dayweek": 2.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 216.59008570693743, "month": 3.0, "dayweek": 2.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74993912530934, 35.67165086755264]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19356", "type": "electronicsstore", "CO2": {"type": "Property", "value": 692.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 111.0, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 221.84537113553836, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7502757176042, 35.68165771610832]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19357", "type": "electronicsstore", "CO2": {"type": "Property", "value": 643.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 115.0, "month": 3.0, "dayweek": 2.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 209.78841419985832, "month": 3.0, "dayweek": 2.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74271091026893, 35.679953798493976]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19358", "type": "bookshop", "CO2": {"type": "Property", "value": 630.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 109.0, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 178.98380120861373, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73104087216325, 35.66899685424307]}}}, {"id": "urn:ngsi-ld:shop:jewellery:19359", "type": "jewellery", "CO2": {"type": "Property", "value": 590.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 113.0, "month": 3.0, "dayweek": 2.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 169.25236936664305, "month": 3.0, "dayweek": 2.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7408511202687, 35.691574473323094]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19360", "type": "restaurant", "CO2": {"type": "Property", "value": 566.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 97.0, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 164.25943959911558, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73522659434207, 35.676166765631606]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19361", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 555.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 77.0, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 161.41713115124855, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7701760022601, 35.67588611849192]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19362", "type": "flowershop", "CO2": {"type": "Property", "value": 525.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 78.0, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 154.26961608006604, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72438487015665, 35.68215753146087]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19363", "type": "bookshop", "CO2": {"type": "Property", "value": 512.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 78.0, "month": 3.0, "dayweek": 2.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 151.51475951922356, "month": 3.0, "dayweek": 2.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71588380210724, 35.67749157857699]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19364", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 508.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 80.0, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 123.03567162168838, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77554083156534, 35.67547411063636]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19365", "type": "computerstore", "CO2": {"type": "Property", "value": 509.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 81.0, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 123.89829853994934, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76655159929464, 35.670992028645884]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19366", "type": "sweetsshop", "CO2": {"type": "Property", "value": 506.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 85.0, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 123.72735874989496, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75542500370642, 35.68342311815138]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19367", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 506.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 83.0, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 124.33159399107711, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74949751814248, 35.675606474943535]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19368", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 495.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 82.0, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 122.09352078439224, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71248332904642, 35.68413692711826]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19369", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 481.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 3.0, "dayweek": 2.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 119.0802725464709, "month": 3.0, "dayweek": 2.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71373271700745, 35.685137422626234]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19370", "type": "clothesstore", "CO2": {"type": "Property", "value": 484.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 85.0, "month": 3.0, "dayweek": 2.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 92.40992638848746, "month": 3.0, "dayweek": 2.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71933198634542, 35.68052286039575]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19371", "type": "electronicsstore", "CO2": {"type": "Property", "value": 484.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 82.0, "month": 3.0, "dayweek": 2.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 93.01416162966962, "month": 3.0, "dayweek": 2.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71915057403675, 35.687484986467545]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19372", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 474.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 88.0, "month": 3.0, "dayweek": 2.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 91.03448010006349, "month": 3.0, "dayweek": 2.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7465583341413, 35.669279454190686]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19373", "type": "restaurant", "CO2": {"type": "Property", "value": 485.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 90.0, "month": 3.0, "dayweek": 2.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 94.48102378911267, "month": 3.0, "dayweek": 2.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7274936749784, 35.69357209972704]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19374", "type": "bookshop", "CO2": {"type": "Property", "value": 470.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 75.0, "month": 3.0, "dayweek": 2.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 91.20938387411252, "month": 3.0, "dayweek": 2.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77408544413896, 35.68462466131966]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19375", "type": "bookshop", "CO2": {"type": "Property", "value": 464.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 19.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.7, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 10.8, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 82.0, "month": 3.0, "dayweek": 2.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 90.26326905282173, "month": 3.0, "dayweek": 2.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75540579499764, 35.68096119805071]}}}, {"id": "urn:ngsi-ld:shop:cafe:19472", "type": "cafe", "CO2": {"type": "Property", "value": 1229.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 314.0, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 446.29277429549654, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77648026236824, 35.69118091461471]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19473", "type": "opticianstore", "CO2": {"type": "Property", "value": 1279.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 319.0, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 459.8165933906198, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73052777024873, 35.681930410442256]}}}, {"id": "urn:ngsi-ld:shop:musicshop:19474", "type": "musicshop", "CO2": {"type": "Property", "value": 1179.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 300.0, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 434.5816609239198, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7739718598905, 35.68126712694296]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19475", "type": "bookshop", "CO2": {"type": "Property", "value": 1098.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 288.0, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 414.2561703217174, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7719884053029, 35.6719082346278]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19476", "type": "shoesstore", "CO2": {"type": "Property", "value": 1025.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 276.0, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 395.9978131361456, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77279457004494, 35.67229311511641]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19477", "type": "computerstore", "CO2": {"type": "Property", "value": 1050.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 277.0, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 403.06184030429824, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7094589686196, 35.678692749122604]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19478", "type": "restaurant", "CO2": {"type": "Property", "value": 1015.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 265.0, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 366.57261041731965, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76212519436476, 35.68746330851691]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19479", "type": "restaurant", "CO2": {"type": "Property", "value": 964.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 296.0, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 353.9988701274819, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74367432754173, 35.679834210243754]}}}, {"id": "urn:ngsi-ld:shop:musicshop:19480", "type": "musicshop", "CO2": {"type": "Property", "value": 984.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 296.0, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 359.77093891024043, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74884640075845, 35.67344583689753]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19481", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 988.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 296.0, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 361.4087408597379, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7077946396795, 35.68460198764418]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19482", "type": "sweetsshop", "CO2": {"type": "Property", "value": 950.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 300.0, "month": 3.0, "dayweek": 3.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 352.1940923719248, "month": 3.0, "dayweek": 3.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70982284064254, 35.68915420190573]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19483", "type": "restaurant", "CO2": {"type": "Property", "value": 946.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 285.0, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 351.76476090479173, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70818011976883, 35.66971737572028]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19484", "type": "bookshop", "CO2": {"type": "Property", "value": 951.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 217.0, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 325.6111981009659, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77813180645668, 35.68532277246876]}}}, {"id": "urn:ngsi-ld:shop:cafe:19485", "type": "cafe", "CO2": {"type": "Property", "value": 881.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 194.0, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 308.12801594663057, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72821256761299, 35.6916597464152]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19486", "type": "restaurant", "CO2": {"type": "Property", "value": 728.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 190.0, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 269.19832459475305, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74613005622538, 35.68189487091591]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19487", "type": "sweetsshop", "CO2": {"type": "Property", "value": 706.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 195.0, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 264.11794294020115, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7202138807467, 35.6719982599488]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19488", "type": "clothesstore", "CO2": {"type": "Property", "value": 630.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 189.0, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 245.0844107233929, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7373910554594, 35.68401702962683]}}}, {"id": "urn:ngsi-ld:shop:cinema:19489", "type": "cinema", "CO2": {"type": "Property", "value": 594.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 174.0, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 236.3865455897375, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75140183089525, 35.679564175776214]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19490", "type": "sweetsshop", "CO2": {"type": "Property", "value": 623.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 122.0, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 216.4343830358034, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75129949074233, 35.685775698018055]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19491", "type": "shoesstore", "CO2": {"type": "Property", "value": 720.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 3.0, "dayweek": 3.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 242.10261095363123, "month": 3.0, "dayweek": 3.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7583395779675, 35.67131031986812]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19492", "type": "restaurant", "CO2": {"type": "Property", "value": 710.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 24.0, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 240.1229294240251, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73050903894176, 35.68018020628576]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19493", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 665.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 229.0995391966603, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76048642856617, 35.66996165919496]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19495", "type": "shoesstore", "CO2": {"type": "Property", "value": 507.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 3.0, "dayweek": 3.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 189.48212470057086, "month": 3.0, "dayweek": 3.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76967592157607, 35.69191644403491]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19496", "type": "flowershop", "CO2": {"type": "Property", "value": 582.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 181.4159792922626, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76062746792363, 35.6919592195466]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19497", "type": "beuatystore", "CO2": {"type": "Property", "value": 506.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 80.0, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 162.38244707545437, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71778694341558, 35.67204261193247]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19498", "type": "bookshop", "CO2": {"type": "Property", "value": 531.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 80.0, "month": 3.0, "dayweek": 3.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 169.44647424360699, "month": 3.0, "dayweek": 3.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.771163107007, 35.689067529127456]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19499", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 569.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 3.0, "dayweek": 3.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 179.8695932137843, "month": 3.0, "dayweek": 3.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7391055174337, 35.69459971285552]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19500", "type": "computerstore", "CO2": {"type": "Property", "value": 531.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 170.6549447259713, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71806870413738, 35.69034682540173]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19501", "type": "bookshop", "CO2": {"type": "Property", "value": 480.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 79.0, "month": 3.0, "dayweek": 3.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 158.08120443613356, "month": 3.0, "dayweek": 3.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76410268133293, 35.672960887819805]}}}, {"id": "urn:ngsi-ld:shop:musicshop:19502", "type": "musicshop", "CO2": {"type": "Property", "value": 460.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 72.0, "month": 3.0, "dayweek": 3.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 125.46784970533727, "month": 3.0, "dayweek": 3.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76719693403624, 35.68072323211803]}}}, {"id": "urn:ngsi-ld:shop:jewellery:19503", "type": "jewellery", "CO2": {"type": "Property", "value": 447.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 122.71299314449472, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72623907178775, 35.689291996547006]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19504", "type": "bookshop", "CO2": {"type": "Property", "value": 438.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 61.0, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 120.99170329196745, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77978135504625, 35.670973122808526]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19505", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 462.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 3.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 127.79733878304127, "month": 3.0, "dayweek": 3.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73713902141645, 35.67112818302004]}}}, {"id": "urn:ngsi-ld:shop:musicshop:19506", "type": "musicshop", "CO2": {"type": "Property", "value": 498.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 60.0, "month": 3.0, "dayweek": 3.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 137.70367439906096, "month": 3.0, "dayweek": 3.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74183157411656, 35.68146576371438]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19507", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 515.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 3.0, "dayweek": 3.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 142.70056815058308, "month": 3.0, "dayweek": 3.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74517773754255, 35.688564401085365]}}}, {"id": "urn:ngsi-ld:shop:cafe:19508", "type": "cafe", "CO2": {"type": "Property", "value": 499.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 44.0, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 111.72501536928424, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7178941269003, 35.68606962618497]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19509", "type": "restaurant", "CO2": {"type": "Property", "value": 482.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 107.33235685894427, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7639129493831, 35.689861497483406]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19510", "type": "restaurant", "CO2": {"type": "Property", "value": 465.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.5439335897864, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73888222900558, 35.683909660274146]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19511", "type": "teeshop", "CO2": {"type": "Property", "value": 462.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.37299379973209, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7384021770996, 35.68423758285398]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19512", "type": "beuatystore", "CO2": {"type": "Property", "value": 469.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 105.78597078046597, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71819773841864, 35.67501127123755]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19513", "type": "beuatystore", "CO2": {"type": "Property", "value": 473.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 107.4237727299634, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7689445039574, 35.67633023904573]}}}, {"id": "urn:ngsi-ld:shop:cafe:19514", "type": "cafe", "CO2": {"type": "Property", "value": 476.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 80.75342657197999, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76512085060423, 35.67568627805588]}}}, {"id": "urn:ngsi-ld:shop:cafe:19515", "type": "cafe", "CO2": {"type": "Property", "value": 477.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 3.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 81.616053490241, "month": 3.0, "dayweek": 3.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76237244820624, 35.689280914696376]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19516", "type": "restaurant", "CO2": {"type": "Property", "value": 479.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 3.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 82.7370720855807, "month": 3.0, "dayweek": 3.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73512540540318, 35.68319604302096]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19517", "type": "teeshop", "CO2": {"type": "Property", "value": 484.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 84.63326571215694, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72342228861487, 35.670836527870094]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19518", "type": "sweetsshop", "CO2": {"type": "Property", "value": 500.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 3.0, "dayweek": 3.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 89.37176778660026, "month": 3.0, "dayweek": 3.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75652324786884, 35.66959204951988]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19519", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 507.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.4, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.1, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 3.0, "dayweek": 3.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 91.78474476733416, "month": 3.0, "dayweek": 3.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74592471401672, 35.689235286418146]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19616", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1033.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 194.0, "month": 3.0, "dayweek": 4.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 315.4330872409699, "month": 3.0, "dayweek": 4.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76837676248977, 35.69474377359149]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19617", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1026.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 220.0, "month": 3.0, "dayweek": 4.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 314.2285807426003, "month": 3.0, "dayweek": 4.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74124798359222, 35.688316420002124]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19618", "type": "bookshop", "CO2": {"type": "Property", "value": 906.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 213.0, "month": 3.0, "dayweek": 4.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 283.82581473432384, "month": 3.0, "dayweek": 4.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72893999608524, 35.693014853354086]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:19619", "type": "opticianstore", "CO2": {"type": "Property", "value": 828.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 216.0, "month": 3.0, "dayweek": 4.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 264.27549916335795, "month": 3.0, "dayweek": 4.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73376403733917, 35.68653109014703]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19620", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 727.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 216.0, "month": 3.0, "dayweek": 4.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 238.7821750195792, "month": 3.0, "dayweek": 4.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7473843318621, 35.69105056523124]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19621", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 721.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 213.0, "month": 3.0, "dayweek": 4.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 237.8360601982884, "month": 3.0, "dayweek": 4.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7689962257529, 35.69456540552548]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19622", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 734.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 218.0, "month": 3.0, "dayweek": 4.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 213.7496308110932, "month": 3.0, "dayweek": 4.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73115426899602, 35.687695116059075]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19623", "type": "teeshop", "CO2": {"type": "Property", "value": 782.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 203.0, "month": 3.0, "dayweek": 4.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 226.75666655205873, "month": 3.0, "dayweek": 4.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7709429594691, 35.68122702571115]}}}, {"id": "urn:ngsi-ld:shop:cinema:19624", "type": "cinema", "CO2": {"type": "Property", "value": 723.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 204.0, "month": 3.0, "dayweek": 4.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 212.11579284559042, "month": 3.0, "dayweek": 4.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73813952044935, 35.66988667191108]}}}, {"id": "urn:ngsi-ld:shop:jewellery:19625", "type": "jewellery", "CO2": {"type": "Property", "value": 716.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 211.0, "month": 3.0, "dayweek": 4.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 210.91128634722082, "month": 3.0, "dayweek": 4.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73544728824652, 35.693684230000876]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19626", "type": "sweetsshop", "CO2": {"type": "Property", "value": 669.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 218.0, "month": 3.0, "dayweek": 4.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 199.37111276569834, "month": 3.0, "dayweek": 4.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70794080713412, 35.689432093570375]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19627", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 698.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 220.0, "month": 3.0, "dayweek": 4.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 207.46870664216635, "month": 3.0, "dayweek": 4.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7107598557447, 35.69170901973602]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19628", "type": "electronicsstore", "CO2": {"type": "Property", "value": 611.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 196.0, "month": 3.0, "dayweek": 4.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 157.543109547089, "month": 3.0, "dayweek": 4.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71659633572523, 35.6947798003002]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19629", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 712.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 186.0, "month": 3.0, "dayweek": 4.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 184.24490417323204, "month": 3.0, "dayweek": 4.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7161798563203, 35.68343353667236]}}}, {"id": "urn:ngsi-ld:shop:cinema:19630", "type": "cinema", "CO2": {"type": "Property", "value": 597.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 194.0, "month": 3.0, "dayweek": 4.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 155.13409655034974, "month": 3.0, "dayweek": 4.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7453200629123, 35.6750040895588]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19631", "type": "computerstore", "CO2": {"type": "Property", "value": 685.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 185.0, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 178.47679937446816, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72657900978308, 35.67893606061657]}}}, {"id": "urn:ngsi-ld:shop:restaurant:19632", "type": "restaurant", "CO2": {"type": "Property", "value": 718.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 166.0, "month": 3.0, "dayweek": 4.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 187.6079599592514, "month": 3.0, "dayweek": 4.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76950931652848, 35.67519477043537]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19633", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 620.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 170.0, "month": 3.0, "dayweek": 4.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 162.8898108467091, "month": 3.0, "dayweek": 4.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77606591283663, 35.68880496992866]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:19634", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 581.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 3.0, "dayweek": 4.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 125.36701425141518, "month": 3.0, "dayweek": 4.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77462096970245, 35.6888187956853]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:19635", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 563.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 76.0, "month": 3.0, "dayweek": 4.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 121.32019930517856, "month": 3.0, "dayweek": 4.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.756778650656, 35.67200220674271]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19636", "type": "bookshop", "CO2": {"type": "Property", "value": 593.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 74.0, "month": 3.0, "dayweek": 4.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 129.67618485872526, "month": 3.0, "dayweek": 4.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75051050634397, 35.688544605421754]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:19637", "type": "clothesstore", "CO2": {"type": "Property", "value": 560.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 66.0, "month": 3.0, "dayweek": 4.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 121.75349475630634, "month": 3.0, "dayweek": 4.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7684831510323, 35.6836687357931]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19638", "type": "bookshop", "CO2": {"type": "Property", "value": 523.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 3.0, "dayweek": 4.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 112.79723794557208, "month": 3.0, "dayweek": 4.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77579603948868, 35.669209945473916]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19639", "type": "beuatystore", "CO2": {"type": "Property", "value": 484.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 58.0, "month": 3.0, "dayweek": 4.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.32419778068021, "month": 3.0, "dayweek": 4.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76401078659487, 35.678187260913504]}}}, {"id": "urn:ngsi-ld:shop:cafe:19640", "type": "cafe", "CO2": {"type": "Property", "value": 493.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 44.0, "month": 3.0, "dayweek": 4.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.20420168516983, "month": 3.0, "dayweek": 4.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77189938757672, 35.684935422297144]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19641", "type": "bookshop", "CO2": {"type": "Property", "value": 503.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 4.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 81.39235369714021, "month": 3.0, "dayweek": 4.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7461623277106, 35.684402271870255]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19643", "type": "sweetsshop", "CO2": {"type": "Property", "value": 493.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 80.01690740871624, "month": 3.0, "dayweek": 4.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77001565577373, 35.67383228912006]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:19644", "type": "beuatystore", "CO2": {"type": "Property", "value": 445.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 68.21834215011498, "month": 3.0, "dayweek": 4.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77322889664552, 35.68196948111936]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19645", "type": "computerstore", "CO2": {"type": "Property", "value": 410.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 4.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 59.778868693538385, "month": 3.0, "dayweek": 4.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74067138717447, 35.67256951703954]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19646", "type": "sweetsshop", "CO2": {"type": "Property", "value": 439.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 3.0, "dayweek": 4.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 39.82670613960431, "month": 3.0, "dayweek": 4.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7707195581788, 35.6819723759095]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:19649", "type": "electronicsstore", "CO2": {"type": "Property", "value": 417.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 35.95479496741663, "month": 3.0, "dayweek": 4.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74264431286534, 35.69435020108685]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:19650", "type": "sweetsshop", "CO2": {"type": "Property", "value": 415.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.042246854441146, "month": 3.0, "dayweek": 4.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7382673569405, 35.67752423020237]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19652", "type": "computerstore", "CO2": {"type": "Property", "value": 410.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 3.0, "dayweek": 4.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 7.909002521009285, "month": 3.0, "dayweek": 4.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73971515882067, 35.68049126317008]}}}, {"id": "urn:ngsi-ld:shop:flowershop:19653", "type": "flowershop", "CO2": {"type": "Property", "value": 397.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 4.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 5.1541459601667725, "month": 3.0, "dayweek": 4.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74150941729306, 35.685542846299256]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19654", "type": "shoesstore", "CO2": {"type": "Property", "value": 417.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 44.0, "month": 3.0, "dayweek": 4.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 10.926214742925282, "month": 3.0, "dayweek": 4.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74314355833678, 35.687549347508835]}}}, {"id": "urn:ngsi-ld:shop:cinema:19655", "type": "cinema", "CO2": {"type": "Property", "value": 429.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 4.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 14.631150109053294, "month": 3.0, "dayweek": 4.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72906133373547, 35.67063563514661]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19656", "type": "teeshop", "CO2": {"type": "Property", "value": 427.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 53.0, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.322837237259932, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7364816024601, 35.69034172960575]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19657", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 437.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 58.0, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 17.906754008048154, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70591163043835, 35.6822613566608]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19658", "type": "shoesstore", "CO2": {"type": "Property", "value": 433.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 59.0, "month": 3.0, "dayweek": 4.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -10.572333889487027, "month": 3.0, "dayweek": 4.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72717320219286, 35.67842617832083]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:19659", "type": "shoesstore", "CO2": {"type": "Property", "value": 432.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 61.0, "month": 3.0, "dayweek": 4.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -10.22649032538368, "month": 3.0, "dayweek": 4.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75256643616657, 35.69492195671202]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:19660", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 421.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 61.0, "month": 3.0, "dayweek": 4.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -12.46456353206861, "month": 3.0, "dayweek": 4.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75050806559994, 35.69358899916606]}}}, {"id": "urn:ngsi-ld:shop:teeshop:19661", "type": "teeshop", "CO2": {"type": "Property", "value": 416.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 53.0, "month": 3.0, "dayweek": 4.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -13.152286676280596, "month": 3.0, "dayweek": 4.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7255615071576, 35.67069926746606]}}}, {"id": "urn:ngsi-ld:shop:computerstore:19662", "type": "computerstore", "CO2": {"type": "Property", "value": 421.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 3.0, "dayweek": 4.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -11.256093049704305, "month": 3.0, "dayweek": 4.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75947374253388, 35.68422882647203]}}}, {"id": "urn:ngsi-ld:shop:bookshop:19663", "type": "bookshop", "CO2": {"type": "Property", "value": 424.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.8, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 3.0, "dayweek": 4.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -9.87668277728568, "month": 3.0, "dayweek": 4.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73515586154627, 35.682942951676864]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20048", "type": "computerstore", "CO2": {"type": "Property", "value": 1140.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 277.0, "month": 3.0, "dayweek": 0.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 453.3532860033946, "month": 3.0, "dayweek": 0.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76795596003305, 35.69414761481678]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20049", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1178.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 286.0, "month": 3.0, "dayweek": 0.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 463.77640497357186, "month": 3.0, "dayweek": 0.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70724104606717, 35.676000027988]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20050", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1176.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 3.0, "dayweek": 0.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 463.86385686059634, "month": 3.0, "dayweek": 0.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74021781184572, 35.672244843472086]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20051", "type": "restaurant", "CO2": {"type": "Property", "value": 1194.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 274.0, "month": 3.0, "dayweek": 0.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 469.11914228919727, "month": 3.0, "dayweek": 0.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74487308800687, 35.67460089211618]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20052", "type": "musicshop", "CO2": {"type": "Property", "value": 1268.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 245.0, "month": 3.0, "dayweek": 0.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 488.8443616342122, "month": 3.0, "dayweek": 0.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72054284987473, 35.67778401426898]}}}, {"id": "urn:ngsi-ld:shop:teeshop:20053", "type": "teeshop", "CO2": {"type": "Property", "value": 1276.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 239.0, "month": 3.0, "dayweek": 0.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 491.51573029202484, "month": 3.0, "dayweek": 0.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75589462092228, 35.675976356088526]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20054", "type": "flowershop", "CO2": {"type": "Property", "value": 1246.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 219.0, "month": 3.0, "dayweek": 0.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 456.31845879044033, "month": 3.0, "dayweek": 0.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73939242621313, 35.67060279027511]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20137", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 643.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 307.0, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 319.25867640781644, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73550475021733, 35.67828446633632]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20138", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 772.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 312.0, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 353.1954379921665, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7116095302939, 35.67031414799167]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20139", "type": "musicshop", "CO2": {"type": "Property", "value": 712.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 333.0, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 338.29617260861926, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76302818320215, 35.69232784459943]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20140", "type": "sweetsshop", "CO2": {"type": "Property", "value": 789.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 318.0, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 358.79656698487065, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75474295109706, 35.69311925565685]}}}, {"id": "urn:ngsi-ld:shop:cafe:20141", "type": "cafe", "CO2": {"type": "Property", "value": 761.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 346.0, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 352.16583526784586, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77577609256565, 35.67613147252259]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20142", "type": "flowershop", "CO2": {"type": "Property", "value": 693.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 337.0, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 335.19943646766814, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71329440969853, 35.67317747097113]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20143", "type": "electronicsstore", "CO2": {"type": "Property", "value": 761.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 306.0, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 325.32454931980806, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70763795455895, 35.6759903160034]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20144", "type": "restaurant", "CO2": {"type": "Property", "value": 861.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 323.0, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 351.76795226887236, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73869646462705, 35.68981560912273]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20145", "type": "bookshop", "CO2": {"type": "Property", "value": 864.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 312.0, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 353.14736254129093, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74521748208102, 35.66982483145264]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:20146", "type": "shoesstore", "CO2": {"type": "Property", "value": 798.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 317.0, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 336.69774709527087, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7179209985669, 35.67134202657423]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20147", "type": "restaurant", "CO2": {"type": "Property", "value": 845.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 314.0, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 349.44639115915754, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77398296694318, 35.6703862349295]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20148", "type": "restaurant", "CO2": {"type": "Property", "value": 862.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 315.0, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 354.4432849106797, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72543194347037, 35.67825298619871]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20149", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 888.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 314.0, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 333.7159473255092, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7103637165524, 35.69316510601159]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20150", "type": "flowershop", "CO2": {"type": "Property", "value": 883.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 331.0, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 333.0282241812972, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70745219181862, 35.682193018340854]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20151", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 862.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 325.0, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 328.206234203824, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72997506491927, 35.68096950631654]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20152", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 703.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 312.0, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 287.72619278947366, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76899738188595, 35.68997460397796]}}}, {"id": "urn:ngsi-ld:shop:teeshop:20153", "type": "teeshop", "CO2": {"type": "Property", "value": 629.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 309.0, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 269.20944392682304, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74161529152795, 35.691357926120716]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20154", "type": "clothesstore", "CO2": {"type": "Property", "value": 559.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 261.0, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 251.72626177248773, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74643956631112, 35.69297566632644]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20155", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 526.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 190.0, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 215.75381523966675, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71572424118378, 35.681443482955615]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:20156", "type": "beuatystore", "CO2": {"type": "Property", "value": 506.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 155.0, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 211.19021693927246, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75116950190827, 35.67595968259128]}}}, {"id": "urn:ngsi-ld:shop:teeshop:20157", "type": "teeshop", "CO2": {"type": "Property", "value": 483.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 145.0, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 205.8514436076417, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76682264300882, 35.686701748733576]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20158", "type": "restaurant", "CO2": {"type": "Property", "value": 453.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 160.0, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 198.7039285364592, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73009433744798, 35.685103782574885]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20159", "type": "opticianstore", "CO2": {"type": "Property", "value": 456.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 17.6, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.9, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 16.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 9.2, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 154.0, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 200.0833388088778, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7489391786139, 35.692762214033294]}}}, {"id": "urn:ngsi-ld:shop:cinema:20160", "type": "cinema", "CO2": {"type": "Property", "value": 434.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 136.0, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 133.42764626443795, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7170880793437, 35.672965610714115]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20161", "type": "flowershop", "CO2": {"type": "Property", "value": 429.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 89.0, "month": 3.0, "dayweek": 2.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 104.690166689824, "month": 3.0, "dayweek": 2.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72306211051577, 35.682276218408624]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20162", "type": "bookshop", "CO2": {"type": "Property", "value": 422.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.4856601914544, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75146575396334, 35.68236058321933]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20163", "type": "restaurant", "CO2": {"type": "Property", "value": 420.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.57311207847886, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7727805438198, 35.673694272587674]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20164", "type": "restaurant", "CO2": {"type": "Property", "value": 420.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 20.0, "month": 3.0, "dayweek": 2.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 104.17734731966101, "month": 3.0, "dayweek": 2.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75492745483874, 35.67031793477337]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20165", "type": "restaurant", "CO2": {"type": "Property", "value": 409.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 101.93927411297614, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73063917118193, 35.675896912600486]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20166", "type": "computerstore", "CO2": {"type": "Property", "value": 434.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 2.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 109.00330128112881, "month": 3.0, "dayweek": 2.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73298747086318, 35.67861745781188]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:20167", "type": "shoesstore", "CO2": {"type": "Property", "value": 423.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.71547164404188, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77690952598084, 35.68883445227318]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20168", "type": "musicshop", "CO2": {"type": "Property", "value": 417.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 2.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 77.76935682275112, "month": 3.0, "dayweek": 2.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75990541670822, 35.68810619299977]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20169", "type": "clothesstore", "CO2": {"type": "Property", "value": 407.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 3.0, "dayweek": 2.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.789675293145, "month": 3.0, "dayweek": 2.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72735059874873, 35.67246946072707]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20170", "type": "electronicsstore", "CO2": {"type": "Property", "value": 408.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.65230221140595, "month": 3.0, "dayweek": 2.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75604368012642, 35.678977842935666]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20171", "type": "flowershop", "CO2": {"type": "Property", "value": 403.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.96457906719402, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71572738476354, 35.693790876840126]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20172", "type": "sweetsshop", "CO2": {"type": "Property", "value": 410.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 20.0, "month": 3.0, "dayweek": 2.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.37755604792792, "month": 3.0, "dayweek": 2.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7683682268, 35.69017348721846]}}}, {"id": "urn:ngsi-ld:shop:cafe:20173", "type": "cafe", "CO2": {"type": "Property", "value": 428.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 55.5830850461268, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71966785596445, 35.68366066361699]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20174", "type": "computerstore", "CO2": {"type": "Property", "value": 417.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 53.34501183944192, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72308641663957, 35.678129395934675]}}}, {"id": "urn:ngsi-ld:shop:cinema:20175", "type": "cinema", "CO2": {"type": "Property", "value": 409.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 51.88211366399344, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7057406577039, 35.67046590869172]}}}, {"id": "urn:ngsi-ld:shop:cinema:20176", "type": "cinema", "CO2": {"type": "Property", "value": 415.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 54.036698967648505, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77579351155865, 35.68121059995099]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20177", "type": "sweetsshop", "CO2": {"type": "Property", "value": 414.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 54.38254253175185, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73102530390477, 35.68592195144492]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20178", "type": "flowershop", "CO2": {"type": "Property", "value": 406.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 3.0, "dayweek": 2.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 52.91964435630345, "month": 3.0, "dayweek": 2.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7393531066505, 35.694484526359986]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20179", "type": "clothesstore", "CO2": {"type": "Property", "value": 402.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 3.0, "dayweek": 2.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 24.440556458768242, "month": 3.0, "dayweek": 2.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7649675018203, 35.6840506701406]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20180", "type": "sweetsshop", "CO2": {"type": "Property", "value": 412.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 3.0, "dayweek": 2.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 27.628708470738616, "month": 3.0, "dayweek": 2.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7794860824577, 35.67409690558135]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20181", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 405.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 2.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 26.424201972368962, "month": 3.0, "dayweek": 2.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74452308345093, 35.68175845570259]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20182", "type": "clothesstore", "CO2": {"type": "Property", "value": 405.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 2.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 27.028437213551115, "month": 3.0, "dayweek": 2.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71755844454265, 35.694569665118344]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20183", "type": "flowershop", "CO2": {"type": "Property", "value": 406.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 3.0, "dayweek": 2.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 27.8910641318121, "month": 3.0, "dayweek": 2.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70997680376695, 35.686964840200694]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20184", "type": "electronicsstore", "CO2": {"type": "Property", "value": 407.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 2.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 28.75369105007306, "month": 3.0, "dayweek": 2.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73399716558558, 35.69407357595914]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20281", "type": "musicshop", "CO2": {"type": "Property", "value": 1003.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 315.0, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 338.4160703781091, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71773306636013, 35.67799046852371]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20282", "type": "musicshop", "CO2": {"type": "Property", "value": 696.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 323.0, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 259.6940607560932, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71525865827815, 35.670378343835786]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20283", "type": "electronicsstore", "CO2": {"type": "Property", "value": 566.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 337.0, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 226.70737797702859, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7491034531869, 35.680070447442134]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20284", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 575.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 330.0, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 229.63713831192013, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72269092506053, 35.68574729010396]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20285", "type": "computerstore", "CO2": {"type": "Property", "value": 550.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 325.0, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 223.78158162613175, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77911566546396, 35.675233574232344]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20286", "type": "opticianstore", "CO2": {"type": "Property", "value": 546.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 325.0, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 223.35225015899863, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76536833824204, 35.69334020108101]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20287", "type": "flowershop", "CO2": {"type": "Property", "value": 564.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 331.0, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 200.5577791571975, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71651226109162, 35.67339764226338]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20288", "type": "sweetsshop", "CO2": {"type": "Property", "value": 656.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 362.0, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 224.9340486896312, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71553612533094, 35.670361978965325]}}}, {"id": "urn:ngsi-ld:shop:cafe:20289", "type": "cafe", "CO2": {"type": "Property", "value": 691.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 361.0, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 234.58199262857207, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74840831236307, 35.69478214873888]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20290", "type": "electronicsstore", "CO2": {"type": "Property", "value": 617.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 357.0, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 216.06524376592142, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71168325711702, 35.686666354229494]}}}, {"id": "urn:ngsi-ld:shop:cafe:20291", "type": "cafe", "CO2": {"type": "Property", "value": 724.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 363.0, "month": 3.0, "dayweek": 3.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 244.31738845453745, "month": 3.0, "dayweek": 3.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7137438460442, 35.6920564645877]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:20292", "type": "beuatystore", "CO2": {"type": "Property", "value": 608.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 360.0, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 214.94818915457634, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7393076942503, 35.670555730495]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20293", "type": "jewellery", "CO2": {"type": "Property", "value": 542.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 310.0, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 170.44881727815425, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7545160608135, 35.673386982460684]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20294", "type": "bookshop", "CO2": {"type": "Property", "value": 521.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 291.0, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 165.62682730068116, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72665164353307, 35.69321024950804]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20295", "type": "musicshop", "CO2": {"type": "Property", "value": 564.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 263.0, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 177.34190465625255, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7089696824033, 35.680866903996574]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20296", "type": "electronicsstore", "CO2": {"type": "Property", "value": 623.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 262.0, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 193.19124884508514, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7641763202568, 35.66962464984087]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20297", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 608.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 258.0, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 189.919608930085, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72602843607652, 35.68404209427983]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20298", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 589.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 241.0, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 185.61440230676953, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7347767601346, 35.67919836642541]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20299", "type": "opticianstore", "CO2": {"type": "Property", "value": 616.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 152.0, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 165.14545639867777, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72682163999676, 35.680226052233955]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20300", "type": "computerstore", "CO2": {"type": "Property", "value": 563.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 75.0, "month": 3.0, "dayweek": 3.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 152.05493275468245, "month": 3.0, "dayweek": 3.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73831044737432, 35.67862196706973]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20301", "type": "bookshop", "CO2": {"type": "Property", "value": 485.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 69.0, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 132.5046171837165, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71194206380082, 35.68370500390021]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20302", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 447.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 66.0, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 123.28996869590343, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75844540510806, 35.680622252970444]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20303", "type": "clothesstore", "CO2": {"type": "Property", "value": 455.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 59.0, "month": 3.0, "dayweek": 3.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 125.96133735371616, "month": 3.0, "dayweek": 3.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74609889184418, 35.680869158330786]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20304", "type": "jewellery", "CO2": {"type": "Property", "value": 421.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 3.0, "dayweek": 3.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 128.89200783411167, "month": 3.0, "dayweek": 3.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72525591446816, 35.67791533713848]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20305", "type": "clothesstore", "CO2": {"type": "Property", "value": 433.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 104.54718676983765, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7209950875079, 35.69160351203266]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20306", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 422.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 102.30911356315278, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7173630033406, 35.671473798245046]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20307", "type": "restaurant", "CO2": {"type": "Property", "value": 416.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 3.0, "dayweek": 3.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 101.36299874186196, "month": 3.0, "dayweek": 3.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72926572724907, 35.67144378072211]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20308", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 432.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 3.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 106.10150081630523, "month": 3.0, "dayweek": 3.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72933252939148, 35.67531296741099]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20309", "type": "restaurant", "CO2": {"type": "Property", "value": 423.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 104.38021096377801, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73373012674818, 35.68248605606754]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20310", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 403.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 99.81661266338372, "month": 3.0, "dayweek": 3.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74960507865086, 35.67081122884686]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20311", "type": "opticianstore", "CO2": {"type": "Property", "value": 406.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 24.0, "month": 3.0, "dayweek": 3.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 73.14626650540029, "month": 3.0, "dayweek": 3.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77461439296238, 35.67830614709156]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20312", "type": "flowershop", "CO2": {"type": "Property", "value": 403.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 20.0, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 72.97532671534597, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7771835621241, 35.6825003569621]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20313", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 404.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 73.8379536336069, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74585372285395, 35.68379902903812]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20314", "type": "electronicsstore", "CO2": {"type": "Property", "value": 401.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 3.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 73.66701384355258, "month": 3.0, "dayweek": 3.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74066242778792, 35.679865249189845]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20315", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 407.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 3.0, "dayweek": 3.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.82159914720768, "month": 3.0, "dayweek": 3.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77553940496006, 35.674142651657576]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20316", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 416.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.75135948209922, "month": 3.0, "dayweek": 3.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7758320671189, 35.68459997810467]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20317", "type": "clothesstore", "CO2": {"type": "Property", "value": 425.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 53.6313633865887, "month": 3.0, "dayweek": 3.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71383511420385, 35.682067670842066]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20318", "type": "clothesstore", "CO2": {"type": "Property", "value": 416.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 51.91007353406147, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7519514897876, 35.671656990063155]}}}, {"id": "urn:ngsi-ld:shop:cinema:20319", "type": "cinema", "CO2": {"type": "Property", "value": 419.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 53.28948380648001, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70807785740635, 35.67159508697911]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20320", "type": "musicshop", "CO2": {"type": "Property", "value": 414.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 52.60176066226808, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73551567850808, 35.67371845736721]}}}, {"id": "urn:ngsi-ld:shop:teeshop:20321", "type": "teeshop", "CO2": {"type": "Property", "value": 408.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 51.655645840977286, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7371498836539, 35.681438135701725]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20322", "type": "electronicsstore", "CO2": {"type": "Property", "value": 421.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 55.61897288418413, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72401992889453, 35.68698058331905]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:20323", "type": "shoesstore", "CO2": {"type": "Property", "value": 423.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 28.690235049121867, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77629039524075, 35.692606644151944]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20324", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 422.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 29.036078613225186, "month": 3.0, "dayweek": 3.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71234935017173, 35.692066205729674]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20325", "type": "restaurant", "CO2": {"type": "Property", "value": 435.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 3.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 32.99940565643195, "month": 3.0, "dayweek": 3.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73493576507204, 35.67451485853683]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20326", "type": "musicshop", "CO2": {"type": "Property", "value": 445.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.18755766840232, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7600704128644, 35.67862150028867]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20327", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 459.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 3.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 40.40927638868797, "month": 3.0, "dayweek": 3.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77158306037165, 35.693230487829865]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20328", "type": "restaurant", "CO2": {"type": "Property", "value": 463.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 28.0, "month": 3.0, "dayweek": 3.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 42.0470783381854, "month": 3.0, "dayweek": 3.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7382203386599, 35.69249778603753]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:20425", "type": "beuatystore", "CO2": {"type": "Property", "value": 1133.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 178.0, "month": 3.0, "dayweek": 4.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 383.82676229162064, "month": 3.0, "dayweek": 4.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76213597694877, 35.675140967490094]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20426", "type": "flowershop", "CO2": {"type": "Property", "value": 1079.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 182.0, "month": 3.0, "dayweek": 4.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 370.47784697054635, "month": 3.0, "dayweek": 4.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76586939864316, 35.67798000592773]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20427", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 933.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 190.0, "month": 3.0, "dayweek": 4.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 333.3568973582205, "month": 3.0, "dayweek": 4.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7584952954649, 35.67190270945345]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20428", "type": "musicshop", "CO2": {"type": "Property", "value": 757.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 193.0, "month": 3.0, "dayweek": 4.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 288.48419743353026, "month": 3.0, "dayweek": 4.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75242667449237, 35.68876606003527]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20429", "type": "jewellery", "CO2": {"type": "Property", "value": 690.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 194.0, "month": 3.0, "dayweek": 4.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 271.7761903104314, "month": 3.0, "dayweek": 4.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71511188479852, 35.67497433408534]}}}, {"id": "urn:ngsi-ld:shop:cafe:20430", "type": "cafe", "CO2": {"type": "Property", "value": 809.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 208.0, "month": 3.0, "dayweek": 4.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 303.1290351239933, "month": 3.0, "dayweek": 4.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73161832451387, 35.67723750535359]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20431", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 831.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 215.0, "month": 3.0, "dayweek": 4.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 281.3681308305074, "month": 3.0, "dayweek": 4.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71322855960133, 35.69079764532236]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:20432", "type": "shoesstore", "CO2": {"type": "Property", "value": 822.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 221.0, "month": 3.0, "dayweek": 4.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 279.64684097798016, "month": 3.0, "dayweek": 4.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72321082489518, 35.67878421113562]}}}, {"id": "urn:ngsi-ld:shop:cinema:20433", "type": "cinema", "CO2": {"type": "Property", "value": 809.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 225.0, "month": 3.0, "dayweek": 4.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 276.8919844171376, "month": 3.0, "dayweek": 4.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76029815532024, 35.673168379594586]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20434", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 829.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 234.0, "month": 3.0, "dayweek": 4.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 282.6640531998962, "month": 3.0, "dayweek": 4.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72024675292678, 35.6762108464092]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20435", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 757.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 226.0, "month": 3.0, "dayweek": 4.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 264.6640876914032, "month": 3.0, "dayweek": 4.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77407198665477, 35.67469942991694]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20436", "type": "bookshop", "CO2": {"type": "Property", "value": 787.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 230.0, "month": 3.0, "dayweek": 4.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 273.02007324495, "month": 3.0, "dayweek": 4.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71451212130233, 35.690976824728125]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20437", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 858.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 155.0, "month": 3.0, "dayweek": 4.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 263.92036112832636, "month": 3.0, "dayweek": 4.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72599112844415, 35.68952427866047]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20438", "type": "electronicsstore", "CO2": {"type": "Property", "value": 828.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 152.0, "month": 3.0, "dayweek": 4.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 256.77284605714385, "month": 3.0, "dayweek": 4.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77400570819373, 35.68225319468562]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20439", "type": "bookshop", "CO2": {"type": "Property", "value": 773.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 149.0, "month": 3.0, "dayweek": 4.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 243.16553905899082, "month": 3.0, "dayweek": 4.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73762479829807, 35.685766191275455]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20440", "type": "sweetsshop", "CO2": {"type": "Property", "value": 803.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 150.0, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 251.5215246125376, "month": 3.0, "dayweek": 4.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77340227468684, 35.6882434112761]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20441", "type": "electronicsstore", "CO2": {"type": "Property", "value": 858.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 136.0, "month": 3.0, "dayweek": 4.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 266.3373020930549, "month": 3.0, "dayweek": 4.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71848032881897, 35.69376883771881]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20442", "type": "flowershop", "CO2": {"type": "Property", "value": 951.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 137.0, "month": 3.0, "dayweek": 4.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 290.9719633025675, "month": 3.0, "dayweek": 4.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74323917314462, 35.675056053161605]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20443", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 939.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 141.0, "month": 3.0, "dayweek": 4.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 260.4257419884017, "month": 3.0, "dayweek": 4.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73066572206974, 35.670316950121176]}}}, {"id": "urn:ngsi-ld:shop:cinema:20444", "type": "cinema", "CO2": {"type": "Property", "value": 970.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 80.0, "month": 3.0, "dayweek": 4.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 269.0401192190273, "month": 3.0, "dayweek": 4.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76155630687592, 35.675410386490974]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20445", "type": "computerstore", "CO2": {"type": "Property", "value": 887.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 3.0, "dayweek": 4.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 248.19784526266724, "month": 3.0, "dayweek": 4.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70853300669165, 35.68892320269877]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20446", "type": "bookshop", "CO2": {"type": "Property", "value": 826.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 74.0, "month": 3.0, "dayweek": 4.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 233.04018820204132, "month": 3.0, "dayweek": 4.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76384126489953, 35.693162992501776]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20447", "type": "flowershop", "CO2": {"type": "Property", "value": 753.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 13.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 11.8, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 7.6, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 4.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 63.0, "month": 3.0, "dayweek": 4.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 214.7818310164695, "month": 3.0, "dayweek": 4.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72865139278107, 35.67862623698362]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20448", "type": "jewellery", "CO2": {"type": "Property", "value": 699.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 3.0, "dayweek": 4.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 170.42486058183948, "month": 3.0, "dayweek": 4.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73242703671636, 35.68979019129892]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20449", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 645.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 3.0, "dayweek": 4.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 129.02618883036337, "month": 3.0, "dayweek": 4.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74275080938165, 35.676027695056106]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20450", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 567.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 3.0, "dayweek": 4.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 109.47587325939746, "month": 3.0, "dayweek": 4.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76392599232784, 35.68691129839231]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20451", "type": "restaurant", "CO2": {"type": "Property", "value": 544.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 20.0, "month": 3.0, "dayweek": 4.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 104.13709992776666, "month": 3.0, "dayweek": 4.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7062066679857, 35.67643971707778]}}}, {"id": "urn:ngsi-ld:shop:cafe:20452", "type": "cafe", "CO2": {"type": "Property", "value": 551.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 3.0, "dayweek": 4.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 106.55007690850057, "month": 3.0, "dayweek": 4.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74536239066913, 35.68683771508561]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20453", "type": "restaurant", "CO2": {"type": "Property", "value": 551.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 20.0, "month": 3.0, "dayweek": 4.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 107.15431214968272, "month": 3.0, "dayweek": 4.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74645035696665, 35.686396734270595]}}}, {"id": "urn:ngsi-ld:shop:teeshop:20454", "type": "teeshop", "CO2": {"type": "Property", "value": 543.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 4.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 105.69141397423428, "month": 3.0, "dayweek": 4.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7206504981601, 35.6893920336422]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20456", "type": "jewellery", "CO2": {"type": "Property", "value": 488.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 3.0, "dayweek": 4.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 64.6385857868614, "month": 3.0, "dayweek": 4.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71444618075517, 35.68079175777775]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20457", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 460.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 24.0, "month": 3.0, "dayweek": 4.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 58.0078540698365, "month": 3.0, "dayweek": 4.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77242886306453, 35.67587865344864]}}}, {"id": "urn:ngsi-ld:shop:cafe:20458", "type": "cafe", "CO2": {"type": "Property", "value": 434.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 4.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 51.89390570696929, "month": 3.0, "dayweek": 4.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71978989920675, 35.67254217886124]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20459", "type": "opticianstore", "CO2": {"type": "Property", "value": 418.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 3.0, "dayweek": 4.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 48.36387411489031, "month": 3.0, "dayweek": 4.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7302482725449, 35.69467500128975]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20460", "type": "restaurant", "CO2": {"type": "Property", "value": 424.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 39.0, "month": 3.0, "dayweek": 4.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 50.518459418545405, "month": 3.0, "dayweek": 4.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7737149843473, 35.66954842562003]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20461", "type": "opticianstore", "CO2": {"type": "Property", "value": 425.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 4.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 23.331329906404306, "month": 3.0, "dayweek": 4.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73276154202355, 35.673287852317735]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20462", "type": "jewellery", "CO2": {"type": "Property", "value": 416.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 4.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 21.61004005387707, "month": 3.0, "dayweek": 4.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76835795780855, 35.67761702521497]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20463", "type": "computerstore", "CO2": {"type": "Property", "value": 418.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 4.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 22.731058649216806, "month": 3.0, "dayweek": 4.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7127728406346, 35.672146136813275]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20464", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 427.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 4.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 25.660818984108346, "month": 3.0, "dayweek": 4.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70550811160706, 35.69256479717798]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:20465", "type": "shoesstore", "CO2": {"type": "Property", "value": 406.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 4.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 20.83882900663528, "month": 3.0, "dayweek": 4.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77770872066685, 35.68703940921512]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20466", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 422.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 59.0, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 25.57733108107857, "month": 3.0, "dayweek": 4.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.738885427026, 35.694096198331565]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20467", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 465.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 65.0, "month": 3.0, "dayweek": 4.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 9.242652006247965, "month": 3.0, "dayweek": 4.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7125217657908, 35.67697359965822]}}}, {"id": "urn:ngsi-ld:shop:cafe:20468", "type": "cafe", "CO2": {"type": "Property", "value": 512.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 64.0, "month": 3.0, "dayweek": 4.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 21.991296070134695, "month": 3.0, "dayweek": 4.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7536342716163, 35.672067905025706]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20469", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 513.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 61.0, "month": 3.0, "dayweek": 4.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 22.853922988395624, "month": 3.0, "dayweek": 4.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7797038221386, 35.673984854699064]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:20470", "type": "beuatystore", "CO2": {"type": "Property", "value": 550.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 60.0, "month": 3.0, "dayweek": 4.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 33.01865028149413, "month": 3.0, "dayweek": 4.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75759044469666, 35.68261510589895]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20471", "type": "computerstore", "CO2": {"type": "Property", "value": 532.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 3.0, "dayweek": 4.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 28.97183533525751, "month": 3.0, "dayweek": 4.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77614036932985, 35.68001690281812]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20472", "type": "computerstore", "CO2": {"type": "Property", "value": 523.0, "month": 3.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 16.7, "month": 3.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 13.1, "month": 3.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.4, "month": 3.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 13.6, "month": 3.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 61.0, "month": 3.0, "dayweek": 4.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 27.250545482730274, "month": 3.0, "dayweek": 4.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70831830107494, 35.67967967988249]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20851", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1017.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 303.0, "month": 3.0, "dayweek": 0.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 328.4404502395946, "month": 3.0, "dayweek": 0.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74702663231952, 35.67654483175878]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20852", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1058.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 284.0, "month": 3.0, "dayweek": 0.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 339.63874424100845, "month": 3.0, "dayweek": 0.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71445709468546, 35.6934813994701]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20853", "type": "restaurant", "CO2": {"type": "Property", "value": 1159.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 291.0, "month": 3.0, "dayweek": 0.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 366.3405388671515, "month": 3.0, "dayweek": 0.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7220279459058, 35.68658497538484]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20854", "type": "clothesstore", "CO2": {"type": "Property", "value": 1175.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 296.0, "month": 3.0, "dayweek": 0.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 371.0790409415947, "month": 3.0, "dayweek": 0.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7195729640301, 35.686665680149495]}}}, {"id": "urn:ngsi-ld:shop:restaurant:20855", "type": "restaurant", "CO2": {"type": "Property", "value": 1196.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 288.0, "month": 3.0, "dayweek": 0.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 377.1095014014321, "month": 3.0, "dayweek": 0.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7066500888373, 35.67560283974391]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20856", "type": "jewellery", "CO2": {"type": "Property", "value": 1176.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 279.0, "month": 3.0, "dayweek": 0.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 372.5459031010379, "month": 3.0, "dayweek": 0.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72674152888203, 35.67877073357866]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20857", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1186.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 236.0, "month": 3.0, "dayweek": 0.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 347.68429868260625, "month": 3.0, "dayweek": 0.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71323734615967, 35.67083591796928]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20858", "type": "computerstore", "CO2": {"type": "Property", "value": 1200.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 218.0, "month": 3.0, "dayweek": 0.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 351.90601740289185, "month": 3.0, "dayweek": 0.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77275343109807, 35.688238425272814]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20859", "type": "musicshop", "CO2": {"type": "Property", "value": 1278.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 202.0, "month": 3.0, "dayweek": 0.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 372.664803456222, "month": 3.0, "dayweek": 0.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73086406945578, 35.68937559520582]}}}, {"id": "urn:ngsi-ld:shop:teeshop:20860", "type": "teeshop", "CO2": {"type": "Property", "value": 1293.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 205.0, "month": 3.0, "dayweek": 0.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 377.14491385358644, "month": 3.0, "dayweek": 0.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75281095847654, 35.69277418630877]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20861", "type": "bookshop", "CO2": {"type": "Property", "value": 1320.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 206.0, "month": 3.0, "dayweek": 0.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 384.7257243758968, "month": 3.0, "dayweek": 0.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76272856405296, 35.69106324968587]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20862", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1339.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 219.0, "month": 3.0, "dayweek": 0.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 390.2394014815766, "month": 3.0, "dayweek": 0.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70682442910186, 35.69199121353626]}}}, {"id": "urn:ngsi-ld:shop:teeshop:20863", "type": "teeshop", "CO2": {"type": "Property", "value": 1335.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 245.0, "month": 3.0, "dayweek": 0.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 361.76031358404134, "month": 3.0, "dayweek": 0.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7205023530053, 35.671477398298265]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:20864", "type": "shoesstore", "CO2": {"type": "Property", "value": 1306.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 315.0, "month": 3.0, "dayweek": 0.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 354.8711901899377, "month": 3.0, "dayweek": 0.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7371129754139, 35.694241130428686]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20865", "type": "computerstore", "CO2": {"type": "Property", "value": 1305.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 298.0, "month": 3.0, "dayweek": 0.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 355.2170337540409, "month": 3.0, "dayweek": 0.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77647750008728, 35.69030110469196]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20866", "type": "jewellery", "CO2": {"type": "Property", "value": 1256.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 274.0, "month": 3.0, "dayweek": 0.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 343.16007681836084, "month": 3.0, "dayweek": 0.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7078930786277, 35.67653352019207]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:20867", "type": "beuatystore", "CO2": {"type": "Property", "value": 1213.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 270.0, "month": 3.0, "dayweek": 0.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 332.6534699451537, "month": 3.0, "dayweek": 0.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.774147717125, 35.67344757054411]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20868", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1213.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 211.0, "month": 3.0, "dayweek": 0.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 333.2577051863359, "month": 3.0, "dayweek": 0.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7675999793261, 35.6881511432635]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20869", "type": "clothesstore", "CO2": {"type": "Property", "value": 1165.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 118.0, "month": 3.0, "dayweek": 0.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 293.40938349733256, "month": 3.0, "dayweek": 0.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77509870162027, 35.68483182897041]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20870", "type": "opticianstore", "CO2": {"type": "Property", "value": 1152.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 89.0, "month": 3.0, "dayweek": 0.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 290.65452693649, "month": 3.0, "dayweek": 0.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75402821922728, 35.6799446238856]}}}, {"id": "urn:ngsi-ld:shop:cinema:20871", "type": "cinema", "CO2": {"type": "Property", "value": 1132.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 81.0, "month": 3.0, "dayweek": 0.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 286.09092863609567, "month": 3.0, "dayweek": 0.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75046613996088, 35.68236525084373]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20872", "type": "flowershop", "CO2": {"type": "Property", "value": 1195.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 76.0, "month": 3.0, "dayweek": 0.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 302.97383953324356, "month": 3.0, "dayweek": 0.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77518438409302, 35.69345184892435]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20873", "type": "jewellery", "CO2": {"type": "Property", "value": 1211.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 75.0, "month": 3.0, "dayweek": 0.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 307.7123416076869, "month": 3.0, "dayweek": 0.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73969873409348, 35.68309137049201]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20874", "type": "clothesstore", "CO2": {"type": "Property", "value": 1180.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 79.0, "month": 3.0, "dayweek": 0.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 300.3064348594256, "month": 3.0, "dayweek": 0.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7794628873386, 35.682843592599156]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20875", "type": "jewellery", "CO2": {"type": "Property", "value": 1170.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 0.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 270.27699689941755, "month": 3.0, "dayweek": 0.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73165340796498, 35.69489588469091]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:20876", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1099.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 3.0, "dayweek": 0.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 252.53542306800338, "month": 3.0, "dayweek": 0.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7670747902063, 35.6925159920216]}}}, {"id": "urn:ngsi-ld:shop:cinema:20877", "type": "cinema", "CO2": {"type": "Property", "value": 1073.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 39.0, "month": 3.0, "dayweek": 0.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 246.42147470513615, "month": 3.0, "dayweek": 0.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7245773519844, 35.68683440997597]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20878", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 951.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 0.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 215.5019253427021, "month": 3.0, "dayweek": 0.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76350259399905, 35.67875981713479]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20879", "type": "electronicsstore", "CO2": {"type": "Property", "value": 800.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 15.9, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 11.5, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 42.0, "month": 3.0, "dayweek": 0.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 177.0890173449823, "month": 3.0, "dayweek": 0.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73077349637268, 35.69311392728216]}}}, {"id": "urn:ngsi-ld:shop:bookshop:20880", "type": "bookshop", "CO2": {"type": "Property", "value": 679.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 3.0, "dayweek": 0.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 148.30172924459475, "month": 3.0, "dayweek": 0.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7626234148127, 35.67307564931576]}}}, {"id": "urn:ngsi-ld:shop:cinema:20881", "type": "cinema", "CO2": {"type": "Property", "value": 627.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 0.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 107.41984084727615, "month": 3.0, "dayweek": 0.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76262837547202, 35.674550418509085]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20882", "type": "clothesstore", "CO2": {"type": "Property", "value": 574.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 0.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 94.3293172032808, "month": 3.0, "dayweek": 0.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72425676288566, 35.6784868423692]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20883", "type": "clothesstore", "CO2": {"type": "Property", "value": 573.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 3.0, "dayweek": 0.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 94.67516076738403, "month": 3.0, "dayweek": 0.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73361296864334, 35.69134171006005]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20884", "type": "musicshop", "CO2": {"type": "Property", "value": 549.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 3.0, "dayweek": 0.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 89.07799575867452, "month": 3.0, "dayweek": 0.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73825577205724, 35.69148450258954]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20885", "type": "musicshop", "CO2": {"type": "Property", "value": 551.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 0.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 90.19901435401428, "month": 3.0, "dayweek": 0.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77876859172, 35.69213733606605]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:20886", "type": "clothesstore", "CO2": {"type": "Property", "value": 564.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 0.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 94.16234139722113, "month": 3.0, "dayweek": 0.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75803317403785, 35.692603367410065]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20887", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 563.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 3.0, "dayweek": 0.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 66.45842853092242, "month": 3.0, "dayweek": 0.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7107386815476, 35.680373434481325]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:20888", "type": "shoesstore", "CO2": {"type": "Property", "value": 528.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 3.0, "dayweek": 0.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 58.018955074345826, "month": 3.0, "dayweek": 0.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76871796083944, 35.694175403787156]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20889", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 512.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 0.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 54.488923482266756, "month": 3.0, "dayweek": 0.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7070963850012, 35.6940053519011]}}}, {"id": "urn:ngsi-ld:shop:musicshop:20890", "type": "musicshop", "CO2": {"type": "Property", "value": 494.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 0.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 50.44210853603013, "month": 3.0, "dayweek": 0.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77206480139276, 35.67998264261779]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:20891", "type": "electronicsstore", "CO2": {"type": "Property", "value": 508.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 3.0, "dayweek": 0.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 54.663827256315784, "month": 3.0, "dayweek": 0.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70726760385756, 35.672370761585896]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20892", "type": "opticianstore", "CO2": {"type": "Property", "value": 486.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 3.0, "dayweek": 0.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 49.583445601763884, "month": 3.0, "dayweek": 0.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71829589403225, 35.6885486468143]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20893", "type": "jewellery", "CO2": {"type": "Property", "value": 470.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 3.0, "dayweek": 0.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 18.003657579282873, "month": 3.0, "dayweek": 0.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72555371033434, 35.672368439358635]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20894", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 451.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 3.0, "dayweek": 0.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 13.698450955967388, "month": 3.0, "dayweek": 0.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7761949408632, 35.67956735684847]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:20895", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 444.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 0.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 12.493944457597735, "month": 3.0, "dayweek": 0.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7661633149685, 35.69460341930338]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:20896", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 447.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 3.0, "dayweek": 0.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 13.87335473001636, "month": 3.0, "dayweek": 0.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76035317772073, 35.68987113975945]}}}, {"id": "urn:ngsi-ld:shop:flowershop:20897", "type": "flowershop", "CO2": {"type": "Property", "value": 427.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 31.0, "month": 3.0, "dayweek": 0.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 9.30975642962207, "month": 3.0, "dayweek": 0.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76349843400578, 35.67981487319175]}}}, {"id": "urn:ngsi-ld:shop:cinema:20898", "type": "cinema", "CO2": {"type": "Property", "value": 428.0, "month": 3.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 0.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 10.172383347883084, "month": 3.0, "dayweek": 0.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76743043115042, 35.6703908372391]}}}, {"id": "urn:ngsi-ld:shop:jewellery:20995", "type": "jewellery", "CO2": {"type": "Property", "value": 1029.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 252.0, "month": 3.0, "dayweek": 1.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 300.11162565359234, "month": 3.0, "dayweek": 1.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71346029903424, 35.68963050210582]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20996", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1049.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 270.0, "month": 3.0, "dayweek": 1.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 305.88369443635094, "month": 3.0, "dayweek": 1.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75964423247996, 35.681589483987835]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:20997", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1293.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 273.0, "month": 3.0, "dayweek": 1.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 369.5354988847654, "month": 3.0, "dayweek": 1.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74922329439224, 35.68279740267233]}}}, {"id": "urn:ngsi-ld:shop:computerstore:20998", "type": "computerstore", "CO2": {"type": "Property", "value": 1321.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 279.0, "month": 3.0, "dayweek": 1.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 377.3747010841545, "month": 3.0, "dayweek": 1.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7521886314105, 35.67060775138111]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:20999", "type": "opticianstore", "CO2": {"type": "Property", "value": 1320.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 274.0, "month": 3.0, "dayweek": 1.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 377.7205446482578, "month": 3.0, "dayweek": 1.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76311889186337, 35.69419089426834]}}}, {"id": "urn:ngsi-ld:shop:restaurant:21000", "type": "restaurant", "CO2": {"type": "Property", "value": 1338.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 276.0, "month": 3.0, "dayweek": 1.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 382.97583007685876, "month": 3.0, "dayweek": 1.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7760093449808, 35.69382904496112]}}}, {"id": "urn:ngsi-ld:shop:restaurant:21001", "type": "restaurant", "CO2": {"type": "Property", "value": 1329.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 270.0, "month": 3.0, "dayweek": 1.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 353.20478379392944, "month": 3.0, "dayweek": 1.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7564679660035, 35.67369425113428]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:21002", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1287.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 271.0, "month": 3.0, "dayweek": 1.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 342.9565685978011, "month": 3.0, "dayweek": 1.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74170648912923, 35.676298387311974]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21003", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1181.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 283.0, "month": 3.0, "dayweek": 1.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 316.17128606862815, "month": 3.0, "dayweek": 1.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71347345185342, 35.671673338336326]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21004", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1296.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 282.0, "month": 3.0, "dayweek": 1.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 346.49056417387476, "month": 3.0, "dayweek": 1.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76421956937736, 35.695038840030264]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21005", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1310.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 274.0, "month": 3.0, "dayweek": 1.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 350.7122828941604, "month": 3.0, "dayweek": 1.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72373747625076, 35.68199522525895]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21006", "type": "flowershop", "CO2": {"type": "Property", "value": 1293.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 264.0, "month": 3.0, "dayweek": 1.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 346.9238596250026, "month": 3.0, "dayweek": 1.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7120177483791, 35.67300959496672]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21007", "type": "clothesstore", "CO2": {"type": "Property", "value": 1296.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 161.0, "month": 3.0, "dayweek": 1.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 320.25351346701916, "month": 3.0, "dayweek": 1.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77652912430517, 35.68199651618649]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21008", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1257.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 121.0, "month": 3.0, "dayweek": 1.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 310.7804733021273, "month": 3.0, "dayweek": 1.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72546355813586, 35.68318263020383]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21009", "type": "flowershop", "CO2": {"type": "Property", "value": 1107.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 122.0, "month": 3.0, "dayweek": 1.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 272.62595698148624, "month": 3.0, "dayweek": 1.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76915022511457, 35.674811133294114]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:21010", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 900.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 127.0, "month": 3.0, "dayweek": 1.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 219.7431150673524, "month": 3.0, "dayweek": 1.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73088198127982, 35.68052688213825]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21011", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 857.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 120.0, "month": 3.0, "dayweek": 1.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 209.2365081941453, "month": 3.0, "dayweek": 1.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70893312237132, 35.67295528685218]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21012", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 838.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 120.0, "month": 3.0, "dayweek": 1.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 204.93130157082982, "month": 3.0, "dayweek": 1.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76154795880686, 35.674706720110436]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:21013", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 813.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 103.0, "month": 3.0, "dayweek": 1.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 171.0259884546394, "month": 3.0, "dayweek": 1.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74900529880284, 35.69053379990325]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:21014", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 777.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 68.0, "month": 3.0, "dayweek": 1.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 162.328123320984, "month": 3.0, "dayweek": 1.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7674000055747, 35.66975081648079]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21015", "type": "bookshop", "CO2": {"type": "Property", "value": 760.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 68.0, "month": 3.0, "dayweek": 1.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 158.53970005182617, "month": 3.0, "dayweek": 1.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71431734555875, 35.68961394028571]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:21016", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 717.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 59.0, "month": 3.0, "dayweek": 1.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 148.03309317861897, "month": 3.0, "dayweek": 1.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75456562582144, 35.67599931294828]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21017", "type": "electronicsstore", "CO2": {"type": "Property", "value": 689.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 18.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.2, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 3.0, "dayweek": 1.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 141.40236146159418, "month": 3.0, "dayweek": 1.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75170080378518, 35.68301288737518]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21018", "type": "beuatystore", "CO2": {"type": "Property", "value": 657.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 3.0, "dayweek": 1.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 129.4132157012183, "month": 3.0, "dayweek": 1.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76122219114302, 35.6901355701298]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21019", "type": "musicshop", "CO2": {"type": "Property", "value": 641.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 3.0, "dayweek": 1.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 97.83342767873731, "month": 3.0, "dayweek": 1.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7246105765038, 35.69070464386185]}}}, {"id": "urn:ngsi-ld:shop:computerstore:21020", "type": "computerstore", "CO2": {"type": "Property", "value": 640.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 3.0, "dayweek": 1.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 98.17927124284063, "month": 3.0, "dayweek": 1.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77196279635427, 35.68278627337049]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21021", "type": "clothesstore", "CO2": {"type": "Property", "value": 622.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 1.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 94.13245629660395, "month": 3.0, "dayweek": 1.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77580043696796, 35.671720814407806]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21022", "type": "flowershop", "CO2": {"type": "Property", "value": 620.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 94.21990818362846, "month": 3.0, "dayweek": 1.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7567973654375, 35.6845006694041]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21023", "type": "musicshop", "CO2": {"type": "Property", "value": 591.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 1.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 87.33078478952478, "month": 3.0, "dayweek": 1.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71732012073443, 35.67613275761332]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21024", "type": "beuatystore", "CO2": {"type": "Property", "value": 599.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 3.0, "dayweek": 1.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 90.00215344733752, "month": 3.0, "dayweek": 1.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7346670848443, 35.67384979228845]}}}, {"id": "urn:ngsi-ld:shop:computerstore:21025", "type": "computerstore", "CO2": {"type": "Property", "value": 599.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 19.0, "month": 3.0, "dayweek": 1.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 62.55663225811762, "month": 3.0, "dayweek": 1.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7793043053189, 35.67368282082233]}}}, {"id": "urn:ngsi-ld:shop:cafe:21026", "type": "cafe", "CO2": {"type": "Property", "value": 590.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 3.0, "dayweek": 1.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 60.83534240559038, "month": 3.0, "dayweek": 1.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7091025965304, 35.68547281888566]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21031", "type": "jewellery", "CO2": {"type": "Property", "value": 578.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 32.70606205615317, "month": 3.0, "dayweek": 1.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76386585742588, 35.66965772097158]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21032", "type": "opticianstore", "CO2": {"type": "Property", "value": 579.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 33.56868897441416, "month": 3.0, "dayweek": 1.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7501442628633, 35.6872734852348]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21033", "type": "sweetsshop", "CO2": {"type": "Property", "value": 570.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 1.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 31.847399121886866, "month": 3.0, "dayweek": 1.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70582028344978, 35.67615942673609]}}}, {"id": "urn:ngsi-ld:shop:restaurant:21034", "type": "restaurant", "CO2": {"type": "Property", "value": 572.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 24.0, "month": 3.0, "dayweek": 1.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 32.96841771722666, "month": 3.0, "dayweek": 1.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77184057358195, 35.67836873443448]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21035", "type": "electronicsstore", "CO2": {"type": "Property", "value": 575.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 1.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 34.34782798964525, "month": 3.0, "dayweek": 1.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76248140672158, 35.69476299876872]}}}, {"id": "urn:ngsi-ld:shop:cinema:21036", "type": "cinema", "CO2": {"type": "Property", "value": 571.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 3.0, "dayweek": 1.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 33.91849652251213, "month": 3.0, "dayweek": 1.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76963312190847, 35.690123531363746]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:21037", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 579.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 3.0, "dayweek": 1.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 8.540108749922808, "month": 3.0, "dayweek": 1.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73293533161947, 35.677262429481985]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21038", "type": "opticianstore", "CO2": {"type": "Property", "value": 567.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 39.0, "month": 3.0, "dayweek": 1.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 6.043643866159101, "month": 3.0, "dayweek": 1.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7550293814744, 35.67372012901975]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21039", "type": "sweetsshop", "CO2": {"type": "Property", "value": 573.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 41.0, "month": 3.0, "dayweek": 1.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 8.198229169814113, "month": 3.0, "dayweek": 1.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75980147838519, 35.677268254899545]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21040", "type": "clothesstore", "CO2": {"type": "Property", "value": 567.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 3.0, "dayweek": 1.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 7.2521143485233495, "month": 3.0, "dayweek": 1.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76653251280496, 35.69091213720701]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:21041", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 560.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 3.0, "dayweek": 1.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 6.047607850153753, "month": 3.0, "dayweek": 1.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71678770298706, 35.671386437868144]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21042", "type": "opticianstore", "CO2": {"type": "Property", "value": 536.0, "month": 3.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 3.0, "dayweek": 1.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 0.45044284144421454, "month": 3.0, "dayweek": 1.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77813188800747, 35.670761681894476]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21139", "type": "teeshop", "CO2": {"type": "Property", "value": 1086.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 281.0, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 338.1445521205611, "month": 3.0, "dayweek": 2.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76886908967126, 35.68319948561492]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21140", "type": "bookshop", "CO2": {"type": "Property", "value": 1114.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 318.0, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 345.98375431995026, "month": 3.0, "dayweek": 2.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72976809146553, 35.69205713322519]}}}, {"id": "urn:ngsi-ld:shop:cinema:21141", "type": "cinema", "CO2": {"type": "Property", "value": 1158.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 330.0, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 357.9572233526005, "month": 3.0, "dayweek": 2.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77325697593017, 35.67249352146613]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21142", "type": "musicshop", "CO2": {"type": "Property", "value": 1246.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 362.0, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 381.2999261767189, "month": 3.0, "dayweek": 2.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7564108059792, 35.68857445332691]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21143", "type": "shoesstore", "CO2": {"type": "Property", "value": 1293.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 359.0, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 394.04857024060567, "month": 3.0, "dayweek": 2.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7757961771942, 35.69037691547951]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21144", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1273.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 358.0, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 389.4849719402114, "month": 3.0, "dayweek": 2.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7259882138215, 35.68818334682095]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21145", "type": "beuatystore", "CO2": {"type": "Property", "value": 1266.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 327.0, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 360.2307090114397, "month": 3.0, "dayweek": 2.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.770912082998, 35.67819464893768]}}}, {"id": "urn:ngsi-ld:shop:cinema:21146", "type": "cinema", "CO2": {"type": "Property", "value": 1216.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 346.0, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 347.91536039868083, "month": 3.0, "dayweek": 2.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7472445176176, 35.68830841911646]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21147", "type": "teeshop", "CO2": {"type": "Property", "value": 1310.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 356.0, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 372.8084132852721, "month": 3.0, "dayweek": 2.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74311653837907, 35.68353510321103]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21148", "type": "bookshop", "CO2": {"type": "Property", "value": 1339.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 353.0, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 380.9060071617401, "month": 3.0, "dayweek": 2.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74720501750954, 35.67370936576486]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21149", "type": "shoesstore", "CO2": {"type": "Property", "value": 1325.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 334.0, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 377.89275892381875, "month": 3.0, "dayweek": 2.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73502957611694, 35.68627914769973]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21150", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1320.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 363.0, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 377.20503577960676, "month": 3.0, "dayweek": 2.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72839360573332, 35.679890242141354]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21151", "type": "jewellery", "CO2": {"type": "Property", "value": 1273.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 348.0, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 337.6151057676823, "month": 3.0, "dayweek": 2.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74166999568695, 35.67589242690324]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21152", "type": "bookshop", "CO2": {"type": "Property", "value": 1220.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 331.0, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 324.5245821236869, "month": 3.0, "dayweek": 2.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71565737413982, 35.68947546641192]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21153", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1241.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 333.0, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 330.55504258352425, "month": 3.0, "dayweek": 2.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76331468018034, 35.68261266283325]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21154", "type": "teeshop", "CO2": {"type": "Property", "value": 1240.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 329.0, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 330.9008861476276, "month": 3.0, "dayweek": 2.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76298188791446, 35.688148276511264]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21155", "type": "flowershop", "CO2": {"type": "Property", "value": 1245.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 334.0, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 332.79707977420384, "month": 3.0, "dayweek": 2.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70940490591403, 35.67777430071035]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21156", "type": "opticianstore", "CO2": {"type": "Property", "value": 1235.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 293.0, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 330.81739824459777, "month": 3.0, "dayweek": 2.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7762844487009, 35.68704841118761]}}}, {"id": "urn:ngsi-ld:shop:restaurant:21157", "type": "restaurant", "CO2": {"type": "Property", "value": 1222.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 187.0, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 300.01278525335323, "month": 3.0, "dayweek": 2.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72508561596425, 35.69060729725968]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21158", "type": "teeshop", "CO2": {"type": "Property", "value": 1170.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 114.0, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 287.18065328643667, "month": 3.0, "dayweek": 2.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71806673785545, 35.67104919029415]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21159", "type": "opticianstore", "CO2": {"type": "Property", "value": 1056.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 92.0, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 258.32823734063317, "month": 3.0, "dayweek": 2.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74582913790897, 35.67593111876533]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:21160", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 970.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 236.71078835303672, "month": 3.0, "dayweek": 2.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76686922422923, 35.690767071608]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21161", "type": "opticianstore", "CO2": {"type": "Property", "value": 906.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 16.2, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.6, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 7.5, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 85.0, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 220.77795626117432, "month": 3.0, "dayweek": 2.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7108730807734, 35.6827006301679]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21162", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 873.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 233.1074884554895, "month": 3.0, "dayweek": 2.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7163939264148, 35.67979313387852]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21163", "type": "beuatystore", "CO2": {"type": "Property", "value": 819.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 3.0, "dayweek": 2.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 191.70881670401326, "month": 3.0, "dayweek": 2.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7690993933581, 35.68693350686659]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21164", "type": "bookshop", "CO2": {"type": "Property", "value": 744.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 172.93367616428384, "month": 3.0, "dayweek": 2.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71061297813094, 35.676917685066144]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21165", "type": "jewellery", "CO2": {"type": "Property", "value": 702.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 162.68546096815544, "month": 3.0, "dayweek": 2.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76737161622802, 35.68894302343739]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21167", "type": "shoesstore", "CO2": {"type": "Property", "value": 628.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 144.77294734668698, "month": 3.0, "dayweek": 2.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7463064481777, 35.68497513729647]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21169", "type": "clothesstore", "CO2": {"type": "Property", "value": 596.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 109.66312773212695, "month": 3.0, "dayweek": 2.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76718861436206, 35.68304417783653]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21171", "type": "opticianstore", "CO2": {"type": "Property", "value": 614.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 115.52264840190996, "month": 3.0, "dayweek": 2.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7700005695151, 35.694745413944084]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21173", "type": "opticianstore", "CO2": {"type": "Property", "value": 590.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 110.52971863438259, "month": 3.0, "dayweek": 2.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72234725601785, 35.66895098394214]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21175", "type": "clothesstore", "CO2": {"type": "Property", "value": 588.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 83.1716493321872, "month": 3.0, "dayweek": 2.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71608673498596, 35.68240682848664]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21176", "type": "flowershop", "CO2": {"type": "Property", "value": 560.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.54091761516236, "month": 3.0, "dayweek": 2.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72212317327478, 35.687310290511114]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21177", "type": "clothesstore", "CO2": {"type": "Property", "value": 566.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.69550291881737, "month": 3.0, "dayweek": 2.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71020387608692, 35.68036466315417]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21178", "type": "electronicsstore", "CO2": {"type": "Property", "value": 555.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.4574297121325, "month": 3.0, "dayweek": 2.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76290774691753, 35.688280778029544]}}}, {"id": "urn:ngsi-ld:shop:cafe:21179", "type": "cafe", "CO2": {"type": "Property", "value": 528.0, "month": 3.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 70.08508967218648, "month": 3.0, "dayweek": 2.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70964406252824, 35.69342718434095]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:21283", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1172.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 258.0, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 368.33015975787896, "month": 3.0, "dayweek": 3.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77998484494773, 35.66986488599973]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21284", "type": "bookshop", "CO2": {"type": "Property", "value": 1161.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 366.09208655119414, "month": 3.0, "dayweek": 3.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7668666698931, 35.67587381819225]}}}, {"id": "urn:ngsi-ld:shop:computerstore:21285", "type": "computerstore", "CO2": {"type": "Property", "value": 1094.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 258.0, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 349.38407942809516, "month": 3.0, "dayweek": 3.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73368508963614, 35.6913002531899]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21286", "type": "clothesstore", "CO2": {"type": "Property", "value": 1026.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 263.0, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 332.4176806279175, "month": 3.0, "dayweek": 3.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76178698895814, 35.69034547680823]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21287", "type": "bookshop", "CO2": {"type": "Property", "value": 945.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 260.0, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 312.0921900257151, "month": 3.0, "dayweek": 3.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71626508543838, 35.69431519260594]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21288", "type": "electronicsstore", "CO2": {"type": "Property", "value": 929.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 245.0, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 308.56215843363617, "month": 3.0, "dayweek": 3.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71038764775957, 35.69330548736168]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21289", "type": "shoesstore", "CO2": {"type": "Property", "value": 917.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 265.0, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 278.0159371194704, "month": 3.0, "dayweek": 3.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7696701640037, 35.69001404450786]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21290", "type": "musicshop", "CO2": {"type": "Property", "value": 888.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 294.0, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 271.12681372536673, "month": 3.0, "dayweek": 3.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7110037458731, 35.68463616686855]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21291", "type": "shoesstore", "CO2": {"type": "Property", "value": 823.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 305.0, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 254.93558995642547, "month": 3.0, "dayweek": 3.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74069419028234, 35.66907936405586]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21292", "type": "clothesstore", "CO2": {"type": "Property", "value": 831.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 312.0, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 257.6069586142382, "month": 3.0, "dayweek": 3.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73519357745434, 35.69144367450603]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21293", "type": "shoesstore", "CO2": {"type": "Property", "value": 829.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 322.0, "month": 3.0, "dayweek": 3.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 257.69441050126267, "month": 3.0, "dayweek": 3.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7217598391071, 35.688107439879886]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21294", "type": "flowershop", "CO2": {"type": "Property", "value": 698.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 315.0, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 224.4493360451193, "month": 3.0, "dayweek": 3.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73936141272856, 35.691422336583436]}}}, {"id": "urn:ngsi-ld:shop:cinema:21295", "type": "cinema", "CO2": {"type": "Property", "value": 718.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 255.0, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 202.1716483974758, "month": 3.0, "dayweek": 3.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75045006433004, 35.68228879857524]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21296", "type": "beuatystore", "CO2": {"type": "Property", "value": 719.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 252.0, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 203.03427531573675, "month": 3.0, "dayweek": 3.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75532483280318, 35.695071610757445]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21297", "type": "beuatystore", "CO2": {"type": "Property", "value": 798.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 257.0, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 224.05145304614575, "month": 3.0, "dayweek": 3.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71821847897178, 35.68236841289694]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21298", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 742.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 254.0, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 210.1857543709139, "month": 3.0, "dayweek": 3.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71750767784107, 35.6775020111605]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:21299", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 790.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 251.0, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 223.19279011187942, "month": 3.0, "dayweek": 3.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74867872931924, 35.685066801169626]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21300", "type": "opticianstore", "CO2": {"type": "Property", "value": 782.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 241.0, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 221.72989193643102, "month": 3.0, "dayweek": 3.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75594128870875, 35.68960249131534]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21301", "type": "flowershop", "CO2": {"type": "Property", "value": 778.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 93.0, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 193.25080403889584, "month": 3.0, "dayweek": 3.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71219606609245, 35.6775036825991]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:21303", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 628.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 155.7005229594369, "month": 3.0, "dayweek": 3.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70543298788164, 35.68167499530434]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21304", "type": "musicshop", "CO2": {"type": "Property", "value": 625.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 155.52958316938262, "month": 3.0, "dayweek": 3.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7622602715485, 35.678811385979415]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21305", "type": "shoesstore", "CO2": {"type": "Property", "value": 601.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 20.8, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.6, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 53.0, "month": 3.0, "dayweek": 3.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 149.93241816067305, "month": 3.0, "dayweek": 3.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72185994365884, 35.69489495285225]}}}, {"id": "urn:ngsi-ld:shop:cinema:21306", "type": "cinema", "CO2": {"type": "Property", "value": 585.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 3.0, "dayweek": 3.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 155.29633334446612, "month": 3.0, "dayweek": 3.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7537311924513, 35.68851270022763]}}}, {"id": "urn:ngsi-ld:shop:cinema:21307", "type": "cinema", "CO2": {"type": "Property", "value": 589.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 91.0, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 128.88437886356155, "month": 3.0, "dayweek": 3.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76964693153272, 35.689981769530355]}}}, {"id": "urn:ngsi-ld:shop:cinema:21308", "type": "cinema", "CO2": {"type": "Property", "value": 500.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 101.0, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 106.49175484472865, "month": 3.0, "dayweek": 3.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76413654741359, 35.6858676201578]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21309", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 536.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 106.0, "month": 3.0, "dayweek": 3.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 116.39809046074832, "month": 3.0, "dayweek": 3.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7641108466138, 35.67465054964188]}}}, {"id": "urn:ngsi-ld:shop:cinema:21310", "type": "cinema", "CO2": {"type": "Property", "value": 540.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 99.0, "month": 3.0, "dayweek": 3.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 118.03589241024575, "month": 3.0, "dayweek": 3.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74557753778794, 35.6854443180584]}}}, {"id": "urn:ngsi-ld:shop:cafe:21311", "type": "cafe", "CO2": {"type": "Property", "value": 495.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 98.0, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 107.01250218288097, "month": 3.0, "dayweek": 3.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74756364215673, 35.692199602197945]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21312", "type": "sweetsshop", "CO2": {"type": "Property", "value": 491.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 97.0, "month": 3.0, "dayweek": 3.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 106.58317071574781, "month": 3.0, "dayweek": 3.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.718345951131, 35.678653120622556]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21313", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 522.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 3.0, "dayweek": 3.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 87.14779151597139, "month": 3.0, "dayweek": 3.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.762915199282, 35.67802883098211]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21314", "type": "opticianstore", "CO2": {"type": "Property", "value": 479.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.64118464276422, "month": 3.0, "dayweek": 3.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75402067483552, 35.67921929329156]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21315", "type": "shoesstore", "CO2": {"type": "Property", "value": 475.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.21185317563103, "month": 3.0, "dayweek": 3.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72721130607803, 35.68681149061567]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:21316", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 449.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 83.0, "month": 3.0, "dayweek": 3.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 70.09790481276386, "month": 3.0, "dayweek": 3.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72256447612557, 35.67562526025086]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21317", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 449.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 79.0, "month": 3.0, "dayweek": 3.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 70.70214005394601, "month": 3.0, "dayweek": 3.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77976410177868, 35.69318233575689]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21318", "type": "sweetsshop", "CO2": {"type": "Property", "value": 457.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 82.0, "month": 3.0, "dayweek": 3.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 73.37350871175872, "month": 3.0, "dayweek": 3.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77856840382182, 35.68269447937903]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21319", "type": "teeshop", "CO2": {"type": "Property", "value": 453.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 74.0, "month": 3.0, "dayweek": 3.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 44.89442081422354, "month": 3.0, "dayweek": 3.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77662471418645, 35.68724404811985]}}}, {"id": "urn:ngsi-ld:shop:restaurant:21320", "type": "restaurant", "CO2": {"type": "Property", "value": 452.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 74.0, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 45.240264378326856, "month": 3.0, "dayweek": 3.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73722014159773, 35.6917656240244]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21321", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 451.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 76.0, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 45.58610794243012, "month": 3.0, "dayweek": 3.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76865945116393, 35.67242107463561]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21322", "type": "shoesstore", "CO2": {"type": "Property", "value": 446.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 77.0, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 44.89838479821819, "month": 3.0, "dayweek": 3.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7281340139171, 35.671194242629106]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21323", "type": "electronicsstore", "CO2": {"type": "Property", "value": 438.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 78.0, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.43548662276979, "month": 3.0, "dayweek": 3.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75059592011604, 35.67879549503737]}}}, {"id": "urn:ngsi-ld:shop:computerstore:21324", "type": "computerstore", "CO2": {"type": "Property", "value": 423.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 71.0, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 40.16384670776961, "month": 3.0, "dayweek": 3.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76286883109088, 35.68959631792111]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21325", "type": "beuatystore", "CO2": {"type": "Property", "value": 420.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 70.0, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 11.943150487313233, "month": 3.0, "dayweek": 3.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74781284922156, 35.67365413598524]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21326", "type": "flowershop", "CO2": {"type": "Property", "value": 426.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 69.0, "month": 3.0, "dayweek": 3.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 14.0977357909683, "month": 3.0, "dayweek": 3.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70889656009115, 35.676204481328966]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21327", "type": "clothesstore", "CO2": {"type": "Property", "value": 417.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 65.0, "month": 3.0, "dayweek": 3.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 12.376445938441037, "month": 3.0, "dayweek": 3.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72594189188922, 35.67914879925371]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21328", "type": "electronicsstore", "CO2": {"type": "Property", "value": 433.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 67.0, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 17.114948012884298, "month": 3.0, "dayweek": 3.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75623347545758, 35.69273936396509]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21329", "type": "flowershop", "CO2": {"type": "Property", "value": 430.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 65.0, "month": 3.0, "dayweek": 3.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 16.944008222830007, "month": 3.0, "dayweek": 3.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7376551528651, 35.68966482347811]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21330", "type": "shoesstore", "CO2": {"type": "Property", "value": 442.0, "month": 3.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 3.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 3.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 3.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 3.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 3.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 58.0, "month": 3.0, "dayweek": 3.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 20.64894358895802, "month": 3.0, "dayweek": 3.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77831088011447, 35.685704611434154]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21427", "type": "bookshop", "CO2": {"type": "Property", "value": 1003.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 159.0, "month": 4.0, "dayweek": 4.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 330.6500655415708, "month": 4.0, "dayweek": 4.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74619333041713, 35.69293926253492]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21428", "type": "opticianstore", "CO2": {"type": "Property", "value": 993.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 176.0, "month": 4.0, "dayweek": 4.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 328.67038401196476, "month": 4.0, "dayweek": 4.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77457256168714, 35.69456688137177]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21429", "type": "clothesstore", "CO2": {"type": "Property", "value": 997.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 166.0, "month": 4.0, "dayweek": 4.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 330.3081859614622, "month": 4.0, "dayweek": 4.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71874305495342, 35.692227966683106]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:21430", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 918.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 180.0, "month": 4.0, "dayweek": 4.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 310.4994787134174, "month": 4.0, "dayweek": 4.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75962742027963, 35.69201779711247]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21431", "type": "musicshop", "CO2": {"type": "Property", "value": 809.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 199.0, "month": 4.0, "dayweek": 4.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 282.9390211530081, "month": 4.0, "dayweek": 4.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73808524792665, 35.68775370865959]}}}, {"id": "urn:ngsi-ld:shop:computerstore:21432", "type": "computerstore", "CO2": {"type": "Property", "value": 780.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 191.0, "month": 4.0, "dayweek": 4.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 276.0498977589045, "month": 4.0, "dayweek": 4.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72096853367728, 35.68357243744852]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21433", "type": "flowershop", "CO2": {"type": "Property", "value": 731.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 181.0, "month": 4.0, "dayweek": 4.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 235.9431843928223, "month": 4.0, "dayweek": 4.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77191435131775, 35.69343052153747]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21434", "type": "bookshop", "CO2": {"type": "Property", "value": 689.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 195.0, "month": 4.0, "dayweek": 4.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 225.69496919669396, "month": 4.0, "dayweek": 4.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7743019269295, 35.679819684187116]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21435", "type": "clothesstore", "CO2": {"type": "Property", "value": 851.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 196.0, "month": 4.0, "dayweek": 4.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 268.1586561246451, "month": 4.0, "dayweek": 4.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73451335232312, 35.68513345361954]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21436", "type": "clothesstore", "CO2": {"type": "Property", "value": 892.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 195.0, "month": 4.0, "dayweek": 4.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 279.35695012605896, "month": 4.0, "dayweek": 4.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7135983997439, 35.672134719541035]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21437", "type": "beuatystore", "CO2": {"type": "Property", "value": 927.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 209.0, "month": 4.0, "dayweek": 4.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 289.0048940649998, "month": 4.0, "dayweek": 4.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74374676877082, 35.67375718242251]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21438", "type": "electronicsstore", "CO2": {"type": "Property", "value": 932.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 191.0, "month": 4.0, "dayweek": 4.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 290.90108769157604, "month": 4.0, "dayweek": 4.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7532591964298, 35.69432621190787]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21439", "type": "clothesstore", "CO2": {"type": "Property", "value": 898.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 178.0, "month": 4.0, "dayweek": 4.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 254.67024948167622, "month": 4.0, "dayweek": 4.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.708147775976, 35.68449469446645]}}}, {"id": "urn:ngsi-ld:shop:cinema:21440", "type": "cinema", "CO2": {"type": "Property", "value": 812.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 122.0, "month": 4.0, "dayweek": 4.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 233.05280049407978, "month": 4.0, "dayweek": 4.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7734170315561, 35.678705503758316]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21441", "type": "teeshop", "CO2": {"type": "Property", "value": 841.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 113.0, "month": 4.0, "dayweek": 4.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 241.15039437054767, "month": 4.0, "dayweek": 4.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7578776628169, 35.690474862741866]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21442", "type": "teeshop", "CO2": {"type": "Property", "value": 948.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 114.0, "month": 4.0, "dayweek": 4.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 269.4025390591637, "month": 4.0, "dayweek": 4.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.744063089906, 35.67446260601839]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21443", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1013.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 136.0, "month": 4.0, "dayweek": 4.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 286.8022333104692, "month": 4.0, "dayweek": 4.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74330739930542, 35.69437551266607]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21444", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1092.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 128.0, "month": 4.0, "dayweek": 4.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 307.8194110408782, "month": 4.0, "dayweek": 4.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71859604064585, 35.68683267343961]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21445", "type": "jewellery", "CO2": {"type": "Property", "value": 1160.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 83.0, "month": 4.0, "dayweek": 4.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 297.9445238930181, "month": 4.0, "dayweek": 4.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70558735537765, 35.67794388998265]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21446", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1178.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 46.0, "month": 4.0, "dayweek": 4.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 303.1998093216191, "month": 4.0, "dayweek": 4.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77700179988187, 35.687565691629445]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21447", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1097.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 282.8743187194167, "month": 4.0, "dayweek": 4.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71227942994776, 35.68241738745389]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21448", "type": "shoesstore", "CO2": {"type": "Property", "value": 950.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 4.0, "dayweek": 4.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 245.49497743001214, "month": 4.0, "dayweek": 4.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72436017132605, 35.681992051657964]}}}, {"id": "urn:ngsi-ld:shop:cinema:21449", "type": "cinema", "CO2": {"type": "Property", "value": 809.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 17.7, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.5, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 5.2, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 4.0, "dayweek": 4.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 209.6659862030805, "month": 4.0, "dayweek": 4.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73545216854905, 35.67556907117857]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21450", "type": "clothesstore", "CO2": {"type": "Property", "value": 762.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 4.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 207.95395830146248, "month": 4.0, "dayweek": 4.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72317413066722, 35.67647888239658]}}}, {"id": "urn:ngsi-ld:shop:cafe:21451", "type": "cafe", "CO2": {"type": "Property", "value": 715.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 4.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 168.36402828953806, "month": 4.0, "dayweek": 4.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76300203643171, 35.673441205241616]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21464", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 452.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 4.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 52.162562492371876, "month": 4.0, "dayweek": 4.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76441426168233, 35.6946567220284]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21465", "type": "flowershop", "CO2": {"type": "Property", "value": 440.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 4.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 49.66609760860814, "month": 4.0, "dayweek": 4.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7787968566896, 35.68570350560701]}}}, {"id": "urn:ngsi-ld:shop:flowershop:21466", "type": "flowershop", "CO2": {"type": "Property", "value": 436.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 4.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 49.23676614147499, "month": 4.0, "dayweek": 4.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74999991971384, 35.690090416979935]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21467", "type": "opticianstore", "CO2": {"type": "Property", "value": 435.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 4.0, "dayweek": 4.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 49.58260970557831, "month": 4.0, "dayweek": 4.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7650443426807, 35.68424661710075]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21468", "type": "opticianstore", "CO2": {"type": "Property", "value": 430.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 4.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 48.89488656136638, "month": 4.0, "dayweek": 4.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73871615563448, 35.69170837989333]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21469", "type": "shoesstore", "CO2": {"type": "Property", "value": 414.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 4.0, "dayweek": 4.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 17.315098538885337, "month": 4.0, "dayweek": 4.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77041787830987, 35.68183413276298]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21470", "type": "bookshop", "CO2": {"type": "Property", "value": 404.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 4.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.335417009279269, "month": 4.0, "dayweek": 4.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71417303135703, 35.683332676731354]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21471", "type": "electronicsstore", "CO2": {"type": "Property", "value": 415.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 4.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 18.78196069832842, "month": 4.0, "dayweek": 4.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72120693895033, 35.687644013346926]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21472", "type": "electronicsstore", "CO2": {"type": "Property", "value": 399.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 4.0, "dayweek": 4.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.251929106249406, "month": 4.0, "dayweek": 4.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.739780253951, 35.67961460780141]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21473", "type": "jewellery", "CO2": {"type": "Property", "value": 408.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 1.09976755, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 16.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 4.0, "dayweek": 4.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 18.181689441140975, "month": 4.0, "dayweek": 4.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74909057670604, 35.692985323564734]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21859", "type": "shoesstore", "CO2": {"type": "Property", "value": 971.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 303.0, "month": 4.0, "dayweek": 0.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 324.5462283404542, "month": 4.0, "dayweek": 0.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72443249957047, 35.68160661281904]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21860", "type": "teeshop", "CO2": {"type": "Property", "value": 1011.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 336.0, "month": 4.0, "dayweek": 0.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 335.4861306647892, "month": 4.0, "dayweek": 0.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73997920659417, 35.68319960090811]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21861", "type": "musicshop", "CO2": {"type": "Property", "value": 1040.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 344.0, "month": 4.0, "dayweek": 0.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 343.5837245412571, "month": 4.0, "dayweek": 0.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76368884089854, 35.674185545286534]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21862", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1134.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 332.0, "month": 4.0, "dayweek": 0.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 368.47677742784845, "month": 4.0, "dayweek": 0.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72570517999972, 35.68757747818825]}}}, {"id": "urn:ngsi-ld:shop:cinema:21863", "type": "cinema", "CO2": {"type": "Property", "value": 1147.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 334.0, "month": 4.0, "dayweek": 0.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 372.4401044710553, "month": 4.0, "dayweek": 0.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76789388924954, 35.67245214821279]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21864", "type": "teeshop", "CO2": {"type": "Property", "value": 1160.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 334.0, "month": 4.0, "dayweek": 0.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 376.403431514262, "month": 4.0, "dayweek": 0.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7246521347688, 35.66906360416093]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21865", "type": "jewellery", "CO2": {"type": "Property", "value": 1084.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 334.0, "month": 4.0, "dayweek": 0.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 329.3201428670518, "month": 4.0, "dayweek": 0.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76134673917514, 35.66901852761797]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21866", "type": "jewellery", "CO2": {"type": "Property", "value": 1109.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 287.0, "month": 4.0, "dayweek": 0.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 336.3841700352045, "month": 4.0, "dayweek": 0.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76277164518518, 35.68274362421728]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21867", "type": "opticianstore", "CO2": {"type": "Property", "value": 1060.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 324.32721309952433, "month": 4.0, "dayweek": 0.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72459396798797, 35.67623982673919]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21868", "type": "sweetsshop", "CO2": {"type": "Property", "value": 577.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 152.48804882738193, "month": 4.0, "dayweek": 0.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72561027693678, 35.67926623717621]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21869", "type": "opticianstore", "CO2": {"type": "Property", "value": 549.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 117.80756067995502, "month": 4.0, "dayweek": 0.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74262549923492, 35.671183611742975]}}}, {"id": "urn:ngsi-ld:shop:restaurant:21870", "type": "restaurant", "CO2": {"type": "Property", "value": 528.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 112.98557070248192, "month": 4.0, "dayweek": 0.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.753044442633, 35.67113787564417]}}}, {"id": "urn:ngsi-ld:shop:computerstore:21871", "type": "computerstore", "CO2": {"type": "Property", "value": 498.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 105.83805563129938, "month": 4.0, "dayweek": 0.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77998261464518, 35.69346897202819]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21872", "type": "clothesstore", "CO2": {"type": "Property", "value": 479.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 101.53284900798391, "month": 4.0, "dayweek": 0.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76932315528, 35.676946833462644]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:21873", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 452.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 95.16050896803793, "month": 4.0, "dayweek": 0.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77784036940156, 35.68551881033547]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21874", "type": "sweetsshop", "CO2": {"type": "Property", "value": 442.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 93.18082743843186, "month": 4.0, "dayweek": 0.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71426178156287, 35.68094557578616]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21875", "type": "beuatystore", "CO2": {"type": "Property", "value": 437.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 64.44334786381788, "month": 4.0, "dayweek": 0.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75504086373132, 35.67097080755499]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21876", "type": "jewellery", "CO2": {"type": "Property", "value": 427.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 62.46366633421181, "month": 4.0, "dayweek": 0.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73883454593079, 35.69315372983409]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21877", "type": "sweetsshop", "CO2": {"type": "Property", "value": 414.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 59.70880977336921, "month": 4.0, "dayweek": 0.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73081298627702, 35.674999503407655]}}}, {"id": "urn:ngsi-ld:shop:bookshop:21878", "type": "bookshop", "CO2": {"type": "Property", "value": 413.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 60.05465333747256, "month": 4.0, "dayweek": 0.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74863050434004, 35.68832187601336]}}}, {"id": "urn:ngsi-ld:shop:restaurant:21879", "type": "restaurant", "CO2": {"type": "Property", "value": 412.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 60.400496901575906, "month": 4.0, "dayweek": 0.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7597616667771, 35.694744251032006]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21880", "type": "clothesstore", "CO2": {"type": "Property", "value": 417.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 62.29669052815214, "month": 4.0, "dayweek": 0.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7158326280803, 35.69376307007539]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21881", "type": "sweetsshop", "CO2": {"type": "Property", "value": 415.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 5.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 0.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 34.33438598477457, "month": 4.0, "dayweek": 0.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71795179188683, 35.6760538292892]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21882", "type": "jewellery", "CO2": {"type": "Property", "value": 421.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 4.0, "dayweek": 0.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 26.50715832954262, "month": 4.0, "dayweek": 0.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77784494781787, 35.67101376060967]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21883", "type": "jewellery", "CO2": {"type": "Property", "value": 444.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 4.0, "dayweek": 0.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 33.0544021435376, "month": 4.0, "dayweek": 0.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76491241474807, 35.67452599737849]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:21884", "type": "shoesstore", "CO2": {"type": "Property", "value": 474.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 4.0, "dayweek": 0.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.41038769708439, "month": 4.0, "dayweek": 0.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72554773846693, 35.689329598517716]}}}, {"id": "urn:ngsi-ld:shop:computerstore:21885", "type": "computerstore", "CO2": {"type": "Property", "value": 482.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 4.0, "dayweek": 0.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 44.081756354897095, "month": 4.0, "dayweek": 0.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77810662165692, 35.68408645511158]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:21886", "type": "sweetsshop", "CO2": {"type": "Property", "value": 509.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 4.0, "dayweek": 0.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 51.66256687720741, "month": 4.0, "dayweek": 0.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74730709027546, 35.66950762636212]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:21887", "type": "beuatystore", "CO2": {"type": "Property", "value": 499.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 0.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 21.633128917199315, "month": 4.0, "dayweek": 0.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71732312873425, 35.690161774412736]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21888", "type": "musicshop", "CO2": {"type": "Property", "value": 510.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 0.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 25.079672606248494, "month": 4.0, "dayweek": 0.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76683963364937, 35.692204886668165]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21890", "type": "jewellery", "CO2": {"type": "Property", "value": 505.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 0.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 24.99618470321863, "month": 4.0, "dayweek": 0.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74100920191873, 35.673357388953974]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21989", "type": "jewellery", "CO2": {"type": "Property", "value": 1062.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 240.0, "month": 4.0, "dayweek": 1.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 304.77466369982415, "month": 4.0, "dayweek": 1.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76660463849598, 35.6905727483653]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21990", "type": "jewellery", "CO2": {"type": "Property", "value": 1086.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 253.0, "month": 4.0, "dayweek": 1.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 311.5802991908979, "month": 4.0, "dayweek": 1.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76754214835339, 35.68163367250115]}}}, {"id": "urn:ngsi-ld:shop:jewellery:21991", "type": "jewellery", "CO2": {"type": "Property", "value": 1222.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 252.0, "month": 4.0, "dayweek": 1.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 347.32580251479976, "month": 4.0, "dayweek": 1.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7624445384156, 35.6864441550954]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:21992", "type": "opticianstore", "CO2": {"type": "Property", "value": 1325.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 258.0, "month": 4.0, "dayweek": 1.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 375.14861573628264, "month": 4.0, "dayweek": 1.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75710415157423, 35.67330440819663]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21993", "type": "clothesstore", "CO2": {"type": "Property", "value": 1339.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 246.0, "month": 4.0, "dayweek": 1.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 378.76609921538613, "month": 4.0, "dayweek": 1.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7105979613266, 35.68346751988727]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:21994", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1364.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 247.0, "month": 4.0, "dayweek": 1.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 385.83012638353887, "month": 4.0, "dayweek": 1.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76790164800644, 35.67525917076914]}}}, {"id": "urn:ngsi-ld:shop:teeshop:21995", "type": "teeshop", "CO2": {"type": "Property", "value": 1347.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 241.0, "month": 4.0, "dayweek": 1.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 353.991946683979, "month": 4.0, "dayweek": 1.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74718548208273, 35.685013698030396]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:21996", "type": "clothesstore", "CO2": {"type": "Property", "value": 1248.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 269.0, "month": 4.0, "dayweek": 1.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 329.01540589435774, "month": 4.0, "dayweek": 1.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73531192398144, 35.66912172841098]}}}, {"id": "urn:ngsi-ld:shop:musicshop:21997", "type": "musicshop", "CO2": {"type": "Property", "value": 1247.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 276.0, "month": 4.0, "dayweek": 1.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 329.3612494584611, "month": 4.0, "dayweek": 1.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72373958474728, 35.69144525779386]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:21998", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1338.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 266.0, "month": 4.0, "dayweek": 1.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 353.479127313816, "month": 4.0, "dayweek": 1.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7644189926386, 35.6805751396331]}}}, {"id": "urn:ngsi-ld:shop:computerstore:21999", "type": "computerstore", "CO2": {"type": "Property", "value": 1315.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 272.0, "month": 4.0, "dayweek": 1.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 348.14035398218516, "month": 4.0, "dayweek": 1.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77710400894125, 35.68779333190554]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22000", "type": "bookshop", "CO2": {"type": "Property", "value": 1309.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 257.0, "month": 4.0, "dayweek": 1.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 347.1942391608944, "month": 4.0, "dayweek": 1.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7722668558977, 35.68961136556402]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:22001", "type": "clothesstore", "CO2": {"type": "Property", "value": 1339.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 145.0, "month": 4.0, "dayweek": 1.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 327.50046828403924, "month": 4.0, "dayweek": 1.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7221218383314, 35.692195676797155]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:22002", "type": "beuatystore", "CO2": {"type": "Property", "value": 1272.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 138.0, "month": 4.0, "dayweek": 1.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 310.7924611609403, "month": 4.0, "dayweek": 1.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72019430892976, 35.67770189757227]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:22003", "type": "clothesstore", "CO2": {"type": "Property", "value": 1180.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 120.0, "month": 4.0, "dayweek": 1.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 287.6246621108709, "month": 4.0, "dayweek": 1.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.738365208975, 35.687371139242885]}}}, {"id": "urn:ngsi-ld:shop:computerstore:22004", "type": "computerstore", "CO2": {"type": "Property", "value": 910.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 120.0, "month": 4.0, "dayweek": 1.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 218.46314454077137, "month": 4.0, "dayweek": 1.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72995480649095, 35.6757886374225]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:22005", "type": "beuatystore", "CO2": {"type": "Property", "value": 807.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 116.0, "month": 4.0, "dayweek": 1.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 192.45303704283495, "month": 4.0, "dayweek": 1.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71246638883255, 35.682025430107714]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22006", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 702.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 112.0, "month": 4.0, "dayweek": 1.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 165.92614619074084, "month": 4.0, "dayweek": 1.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77025446834014, 35.694793129528264]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:22007", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 627.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 63.0, "month": 4.0, "dayweek": 1.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 119.10124922060936, "month": 4.0, "dayweek": 1.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71373061004604, 35.67483198873262]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22008", "type": "restaurant", "CO2": {"type": "Property", "value": 578.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 4.0, "dayweek": 1.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 107.04429228492927, "month": 4.0, "dayweek": 1.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72676946366266, 35.68875182311689]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22009", "type": "restaurant", "CO2": {"type": "Property", "value": 566.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 1.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 104.5478274011655, "month": 4.0, "dayweek": 1.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7619796606688, 35.68459011531258]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22010", "type": "opticianstore", "CO2": {"type": "Property", "value": 559.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 4.0, "dayweek": 1.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.34332090279591, "month": 4.0, "dayweek": 1.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73929293368298, 35.67070995783755]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22011", "type": "opticianstore", "CO2": {"type": "Property", "value": 557.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 4.0, "dayweek": 1.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 103.43077278982042, "month": 4.0, "dayweek": 1.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74417740226897, 35.68315422042777]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22012", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 531.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 4.0, "dayweek": 1.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 97.31682442695325, "month": 4.0, "dayweek": 1.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77613843227493, 35.67192666747764]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22013", "type": "teeshop", "CO2": {"type": "Property", "value": 524.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 33.0, "month": 4.0, "dayweek": 1.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 68.06256149818165, "month": 4.0, "dayweek": 1.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7074187185276, 35.69010987425029]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22014", "type": "bookshop", "CO2": {"type": "Property", "value": 506.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 4.0, "dayweek": 1.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 64.01574655194503, "month": 4.0, "dayweek": 1.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76105809463206, 35.669271798107474]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22015", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 505.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 64.36159011604829, "month": 4.0, "dayweek": 1.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73045695638814, 35.6769200134753]}}}, {"id": "urn:ngsi-ld:shop:cinema:22016", "type": "cinema", "CO2": {"type": "Property", "value": 504.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 64.70743368015164, "month": 4.0, "dayweek": 1.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70867123038056, 35.69400998896606]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22020", "type": "bookshop", "CO2": {"type": "Property", "value": 443.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 1.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 23.31272591267009, "month": 4.0, "dayweek": 1.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7133347310752, 35.67772288031858]}}}, {"id": "urn:ngsi-ld:shop:cinema:22021", "type": "cinema", "CO2": {"type": "Property", "value": 451.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 28.0, "month": 4.0, "dayweek": 1.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 25.98409457048274, "month": 4.0, "dayweek": 1.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70719581862667, 35.6912256767524]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22022", "type": "opticianstore", "CO2": {"type": "Property", "value": 475.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 1.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 32.78973006155661, "month": 4.0, "dayweek": 1.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74614795507452, 35.67867670376636]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22023", "type": "teeshop", "CO2": {"type": "Property", "value": 461.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 46.0, "month": 4.0, "dayweek": 1.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 29.776481823635265, "month": 4.0, "dayweek": 1.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70783272616882, 35.67244603566515]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:22024", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 463.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 44.0, "month": 4.0, "dayweek": 1.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 30.897500418975085, "month": 4.0, "dayweek": 1.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7711344375883, 35.67717886418528]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22025", "type": "bookshop", "CO2": {"type": "Property", "value": 469.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 14.8, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 4.5, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.8, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 4.0, "dayweek": 1.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 5.002329292228097, "month": 4.0, "dayweek": 1.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73873664623036, 35.6937147357853]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:22026", "type": "clothesstore", "CO2": {"type": "Property", "value": 465.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 4.0, "dayweek": 1.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 11.262379848539439, "month": 4.0, "dayweek": 1.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77319696229796, 35.67600400275151]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:22027", "type": "shoesstore", "CO2": {"type": "Property", "value": 475.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 4.0, "dayweek": 1.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 14.450531860509756, "month": 4.0, "dayweek": 1.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7705631791055, 35.683886610070275]}}}, {"id": "urn:ngsi-ld:shop:flowershop:22028", "type": "flowershop", "CO2": {"type": "Property", "value": 474.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 4.0, "dayweek": 1.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 14.796375424613075, "month": 4.0, "dayweek": 1.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75611251437678, 35.67068776625889]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22029", "type": "bookshop", "CO2": {"type": "Property", "value": 476.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 68.0, "month": 4.0, "dayweek": 1.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.917394019952894, "month": 4.0, "dayweek": 1.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70754999584105, 35.68685637317494]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22030", "type": "opticianstore", "CO2": {"type": "Property", "value": 473.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 89.0, "month": 4.0, "dayweek": 1.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.746454229898575, "month": 4.0, "dayweek": 1.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73316997944502, 35.6842434710086]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:22031", "type": "sweetsshop", "CO2": {"type": "Property", "value": 479.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 4.0, "dayweek": 1.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -10.148716896848413, "month": 4.0, "dayweek": 1.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76980885564217, 35.672898072067824]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:22032", "type": "electronicsstore", "CO2": {"type": "Property", "value": 478.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 102.0, "month": 4.0, "dayweek": 1.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -9.802873332745065, "month": 4.0, "dayweek": 1.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73161017360098, 35.67115557853328]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22033", "type": "musicshop", "CO2": {"type": "Property", "value": 502.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 116.0, "month": 4.0, "dayweek": 1.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -2.9972378416712786, "month": 4.0, "dayweek": 1.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73737048301626, 35.682906699997574]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:22034", "type": "beuatystore", "CO2": {"type": "Property", "value": 499.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 124.0, "month": 4.0, "dayweek": 1.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -3.1681776317255697, "month": 4.0, "dayweek": 1.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73582640953066, 35.67212515475697]}}}, {"id": "urn:ngsi-ld:shop:flowershop:22035", "type": "flowershop", "CO2": {"type": "Property", "value": 503.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 125.0, "month": 4.0, "dayweek": 1.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -1.53037568222814, "month": 4.0, "dayweek": 1.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73123870619978, 35.69219976766768]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22036", "type": "restaurant", "CO2": {"type": "Property", "value": 504.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 123.0, "month": 4.0, "dayweek": 1.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -0.667748763967154, "month": 4.0, "dayweek": 1.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77057774993852, 35.675235298707904]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22133", "type": "restaurant", "CO2": {"type": "Property", "value": 812.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 228.0, "month": 4.0, "dayweek": 2.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 274.49557466207506, "month": 4.0, "dayweek": 2.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75824902245142, 35.68838618936242]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22134", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 865.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 238.0, "month": 4.0, "dayweek": 2.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 288.79456878843473, "month": 4.0, "dayweek": 2.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74403075228736, 35.687924187458954]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22135", "type": "bookshop", "CO2": {"type": "Property", "value": 866.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 268.0, "month": 4.0, "dayweek": 2.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 289.65719570669563, "month": 4.0, "dayweek": 2.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7413789715435, 35.69506508799502]}}}, {"id": "urn:ngsi-ld:shop:flowershop:22136", "type": "flowershop", "CO2": {"type": "Property", "value": 884.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 257.0, "month": 4.0, "dayweek": 2.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 294.91248113529656, "month": 4.0, "dayweek": 2.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72631304862406, 35.67651484277397]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22137", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 885.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 255.0, "month": 4.0, "dayweek": 2.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 295.7751080535575, "month": 4.0, "dayweek": 2.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73671047483603, 35.69226205438062]}}}, {"id": "urn:ngsi-ld:shop:cafe:22138", "type": "cafe", "CO2": {"type": "Property", "value": 874.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 250.0, "month": 4.0, "dayweek": 2.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 293.53703484687264, "month": 4.0, "dayweek": 2.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72685401695276, 35.67631137572103]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22139", "type": "bookshop", "CO2": {"type": "Property", "value": 888.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 250.0, "month": 4.0, "dayweek": 2.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 269.70899713675624, "month": 4.0, "dayweek": 2.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7274105389185, 35.68921877397991]}}}, {"id": "urn:ngsi-ld:shop:cafe:22140", "type": "cafe", "CO2": {"type": "Property", "value": 853.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 250.0, "month": 4.0, "dayweek": 2.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 261.26952368017965, "month": 4.0, "dayweek": 2.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73352812628974, 35.67242019072182]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22141", "type": "teeshop", "CO2": {"type": "Property", "value": 883.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 256.0, "month": 4.0, "dayweek": 2.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 269.6255092337264, "month": 4.0, "dayweek": 2.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72690942872478, 35.69380074498937]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22142", "type": "restaurant", "CO2": {"type": "Property", "value": 946.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 252.0, "month": 4.0, "dayweek": 2.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 286.50842013087424, "month": 4.0, "dayweek": 2.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72511072109015, 35.684817338294856]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22143", "type": "musicshop", "CO2": {"type": "Property", "value": 967.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 277.0, "month": 4.0, "dayweek": 2.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 292.53888059071164, "month": 4.0, "dayweek": 2.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77320046203837, 35.68056911247923]}}}, {"id": "urn:ngsi-ld:shop:jewellery:22144", "type": "jewellery", "CO2": {"type": "Property", "value": 967.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 291.0, "month": 4.0, "dayweek": 2.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 293.1431158318938, "month": 4.0, "dayweek": 2.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71322928024856, 35.69477394499644]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:22145", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1008.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 302.0, "month": 4.0, "dayweek": 2.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 276.2916534029056, "month": 4.0, "dayweek": 2.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7595814241233, 35.672437035793614]}}}, {"id": "urn:ngsi-ld:shop:cinema:22146", "type": "cinema", "CO2": {"type": "Property", "value": 995.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 307.0, "month": 4.0, "dayweek": 2.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 273.53679684206304, "month": 4.0, "dayweek": 2.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74947067350269, 35.67117803293319]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22147", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1076.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 300.0, "month": 4.0, "dayweek": 2.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 295.07075792662965, "month": 4.0, "dayweek": 2.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72831773908396, 35.680246988310536]}}}, {"id": "urn:ngsi-ld:shop:cafe:22148", "type": "cafe", "CO2": {"type": "Property", "value": 1087.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 293.0, "month": 4.0, "dayweek": 2.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 298.51730161567883, "month": 4.0, "dayweek": 2.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7055142282366, 35.668911135990356]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22149", "type": "musicshop", "CO2": {"type": "Property", "value": 1115.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 280.0, "month": 4.0, "dayweek": 2.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 306.356503815068, "month": 4.0, "dayweek": 2.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73004339731875, 35.691728803467925]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:22150", "type": "shoesstore", "CO2": {"type": "Property", "value": 1105.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 259.0, "month": 4.0, "dayweek": 2.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 304.3768222854619, "month": 4.0, "dayweek": 2.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7624107743051, 35.677287751594804]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22151", "type": "restaurant", "CO2": {"type": "Property", "value": 1098.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 130.0, "month": 4.0, "dayweek": 2.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 275.12255935669026, "month": 4.0, "dayweek": 2.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74008754854643, 35.67265614248692]}}}, {"id": "urn:ngsi-ld:shop:computerstore:22152", "type": "computerstore", "CO2": {"type": "Property", "value": 1065.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 4.0, "dayweek": 2.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 267.19986925427133, "month": 4.0, "dayweek": 2.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72484991573455, 35.69134608368904]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:22153", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1012.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 72.0, "month": 4.0, "dayweek": 2.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 254.1093456102759, "month": 4.0, "dayweek": 2.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7657226453927, 35.689391980853735]}}}, {"id": "urn:ngsi-ld:shop:cinema:22154", "type": "cinema", "CO2": {"type": "Property", "value": 944.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 67.0, "month": 4.0, "dayweek": 2.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 237.14294681009824, "month": 4.0, "dayweek": 2.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70571698417737, 35.67974092251181]}}}, {"id": "urn:ngsi-ld:shop:cinema:22155", "type": "cinema", "CO2": {"type": "Property", "value": 846.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 4.0, "dayweek": 2.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 212.4247976975559, "month": 4.0, "dayweek": 2.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75701908448383, 35.68596196613225]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:22156", "type": "shoesstore", "CO2": {"type": "Property", "value": 768.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 4.0, "dayweek": 2.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 192.87448212659004, "month": 4.0, "dayweek": 2.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73779489894844, 35.689645442129766]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22157", "type": "musicshop", "CO2": {"type": "Property", "value": 739.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 10.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 8.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 3.2, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 15.0, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 4.0, "dayweek": 2.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 157.93560230208436, "month": 4.0, "dayweek": 2.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77223528885534, 35.688991683164694]}}}, {"id": "urn:ngsi-ld:shop:jewellery:22159", "type": "jewellery", "CO2": {"type": "Property", "value": 645.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 2.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 266.34164589753397, "month": 4.0, "dayweek": 2.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7782413187637, 35.669819162445634]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22160", "type": "restaurant", "CO2": {"type": "Property", "value": 604.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 4.0, "dayweek": 2.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 256.3518223784844, "month": 4.0, "dayweek": 2.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7308729813782, 35.67250034755785]}}}, {"id": "urn:ngsi-ld:shop:cinema:22161", "type": "cinema", "CO2": {"type": "Property", "value": 593.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 4.0, "dayweek": 2.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 254.11374917179955, "month": 4.0, "dayweek": 2.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73640626798516, 35.67529575045559]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:22162", "type": "sweetsshop", "CO2": {"type": "Property", "value": 555.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 4.0, "dayweek": 2.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 244.8991006839865, "month": 4.0, "dayweek": 2.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7692162357482, 35.67038158340412]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22163", "type": "teeshop", "CO2": {"type": "Property", "value": 582.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 4.0, "dayweek": 2.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 224.43015477589472, "month": 4.0, "dayweek": 2.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7324231516332, 35.670717002534296]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22164", "type": "opticianstore", "CO2": {"type": "Property", "value": 551.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 4.0, "dayweek": 2.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 217.02424802763346, "month": 4.0, "dayweek": 2.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77643860830972, 35.67764596476302]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22165", "type": "teeshop", "CO2": {"type": "Property", "value": 542.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 4.0, "dayweek": 2.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 215.3029581751062, "month": 4.0, "dayweek": 2.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.772340029587, 35.67996378655434]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22166", "type": "bookshop", "CO2": {"type": "Property", "value": 525.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 42.0, "month": 4.0, "dayweek": 2.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 211.51453490594838, "month": 4.0, "dayweek": 2.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71972300134573, 35.67350233884355]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22167", "type": "opticianstore", "CO2": {"type": "Property", "value": 526.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 41.0, "month": 4.0, "dayweek": 2.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 212.37716182420934, "month": 4.0, "dayweek": 2.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72976651189163, 35.686878151387376]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:22168", "type": "electronicsstore", "CO2": {"type": "Property", "value": 525.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 37.0, "month": 4.0, "dayweek": 2.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 212.72300538831269, "month": 4.0, "dayweek": 2.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7567933110875, 35.67227725181955]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22169", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 516.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 4.0, "dayweek": 2.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 182.95195910538337, "month": 4.0, "dayweek": 2.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75956352187944, 35.67674236468246]}}}, {"id": "urn:ngsi-ld:shop:cafe:22170", "type": "cafe", "CO2": {"type": "Property", "value": 505.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 4.0, "dayweek": 2.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 180.7138858986985, "month": 4.0, "dayweek": 2.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74679296198792, 35.68836822959698]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22171", "type": "musicshop", "CO2": {"type": "Property", "value": 512.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 4.0, "dayweek": 2.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 183.12686287943234, "month": 4.0, "dayweek": 2.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74895582616108, 35.6942420256022]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:22172", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 512.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 41.0, "month": 4.0, "dayweek": 2.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 183.7310981206145, "month": 4.0, "dayweek": 2.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7200862930721, 35.6898959290391]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22173", "type": "restaurant", "CO2": {"type": "Property", "value": 510.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 40.0, "month": 4.0, "dayweek": 2.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 183.81855000763898, "month": 4.0, "dayweek": 2.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7147260159128, 35.6847051255041]}}}, {"id": "urn:ngsi-ld:shop:cafe:22174", "type": "cafe", "CO2": {"type": "Property", "value": 488.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 40.0, "month": 4.0, "dayweek": 2.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 178.73816835308708, "month": 4.0, "dayweek": 2.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7748951349029, 35.67665148681892]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22175", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 483.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 41.0, "month": 4.0, "dayweek": 2.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 150.0006887784731, "month": 4.0, "dayweek": 2.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7291223260616, 35.67805998221465]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22176", "type": "opticianstore", "CO2": {"type": "Property", "value": 479.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 40.0, "month": 4.0, "dayweek": 2.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 149.5713573113399, "month": 4.0, "dayweek": 2.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74144710327386, 35.68980992913089]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22177", "type": "bookshop", "CO2": {"type": "Property", "value": 457.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 41.0, "month": 4.0, "dayweek": 2.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 144.49097565678795, "month": 4.0, "dayweek": 2.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72990537359374, 35.6748004938702]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22178", "type": "teeshop", "CO2": {"type": "Property", "value": 453.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 4.0, "dayweek": 2.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 144.06164418965488, "month": 4.0, "dayweek": 2.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71558826161439, 35.67232891707499]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22179", "type": "restaurant", "CO2": {"type": "Property", "value": 456.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 4.0, "dayweek": 2.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 145.4410544620735, "month": 4.0, "dayweek": 2.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7796837393976, 35.669848084704725]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22180", "type": "restaurant", "CO2": {"type": "Property", "value": 455.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 46.0, "month": 4.0, "dayweek": 2.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 145.7868980261768, "month": 4.0, "dayweek": 2.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71717659677768, 35.68582823999365]}}}, {"id": "urn:ngsi-ld:shop:computerstore:22277", "type": "computerstore", "CO2": {"type": "Property", "value": 1051.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 252.0, "month": 4.0, "dayweek": 3.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 455.4492773542129, "month": 4.0, "dayweek": 3.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72675194766592, 35.68248149441575]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:22278", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1047.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 275.0, "month": 4.0, "dayweek": 3.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 455.01994588707976, "month": 4.0, "dayweek": 3.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74191986301554, 35.68364435615527]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22279", "type": "musicshop", "CO2": {"type": "Property", "value": 1155.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 264.0, "month": 4.0, "dayweek": 3.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 483.5304822527745, "month": 4.0, "dayweek": 3.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7173998649541, 35.69018019063218]}}}, {"id": "urn:ngsi-ld:shop:cinema:22280", "type": "cinema", "CO2": {"type": "Property", "value": 1211.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 263.0, "month": 4.0, "dayweek": 3.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 498.6046514103706, "month": 4.0, "dayweek": 3.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71949192281514, 35.675312882231346]}}}, {"id": "urn:ngsi-ld:shop:cafe:22281", "type": "cafe", "CO2": {"type": "Property", "value": 1247.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 262.0, "month": 4.0, "dayweek": 3.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 508.51098702639035, "month": 4.0, "dayweek": 3.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74998057242314, 35.67836143862216]}}}, {"id": "urn:ngsi-ld:shop:flowershop:22282", "type": "flowershop", "CO2": {"type": "Property", "value": 1260.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 270.0, "month": 4.0, "dayweek": 3.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 512.4743140695971, "month": 4.0, "dayweek": 3.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72684779460315, 35.67821332187714]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22283", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1295.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 293.0, "month": 4.0, "dayweek": 3.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 494.072501578136, "month": 4.0, "dayweek": 3.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7608553733421, 35.688770453079144]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22284", "type": "teeshop", "CO2": {"type": "Property", "value": 1330.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 297.0, "month": 4.0, "dayweek": 3.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 503.7204455170769, "month": 4.0, "dayweek": 3.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75314905185465, 35.67076639520724]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:22285", "type": "clothesstore", "CO2": {"type": "Property", "value": 1316.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 285.0, "month": 4.0, "dayweek": 3.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 500.7071972791555, "month": 4.0, "dayweek": 3.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76700876192368, 35.69195800856867]}}}, {"id": "urn:ngsi-ld:shop:jewellery:22286", "type": "jewellery", "CO2": {"type": "Property", "value": 1315.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 277.0, "month": 4.0, "dayweek": 3.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 501.0530408432588, "month": 4.0, "dayweek": 3.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73941083302253, 35.686368065326945]}}}, {"id": "urn:ngsi-ld:shop:flowershop:22287", "type": "flowershop", "CO2": {"type": "Property", "value": 1291.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 308.0, "month": 4.0, "dayweek": 3.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 495.45587583454926, "month": 4.0, "dayweek": 3.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7315843552016, 35.67575176165437]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:22288", "type": "electronicsstore", "CO2": {"type": "Property", "value": 1235.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 277.0, "month": 4.0, "dayweek": 3.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 481.59017715931736, "month": 4.0, "dayweek": 3.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74664199547806, 35.67011763859536]}}}, {"id": "urn:ngsi-ld:shop:computerstore:22289", "type": "computerstore", "CO2": {"type": "Property", "value": 1200.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 269.0, "month": 4.0, "dayweek": 3.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 445.1009472723388, "month": 4.0, "dayweek": 3.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77848380069156, 35.676058163137206]}}}, {"id": "urn:ngsi-ld:shop:jewellery:22290", "type": "jewellery", "CO2": {"type": "Property", "value": 1225.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 261.0, "month": 4.0, "dayweek": 3.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 452.1649744404915, "month": 4.0, "dayweek": 3.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74913571541362, 35.67473542536692]}}}, {"id": "urn:ngsi-ld:shop:flowershop:22291", "type": "flowershop", "CO2": {"type": "Property", "value": 1236.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 258.0, "month": 4.0, "dayweek": 3.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 455.6115181295406, "month": 4.0, "dayweek": 3.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76740561217613, 35.68730502476096]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22292", "type": "opticianstore", "CO2": {"type": "Property", "value": 1221.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 254.0, "month": 4.0, "dayweek": 3.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 452.33987821454036, "month": 4.0, "dayweek": 3.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77190881158842, 35.68287664087864]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22293", "type": "opticianstore", "CO2": {"type": "Property", "value": 1250.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 248.0, "month": 4.0, "dayweek": 3.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 460.43747209100843, "month": 4.0, "dayweek": 3.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77255689656386, 35.69176383454766]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22294", "type": "teeshop", "CO2": {"type": "Property", "value": 1274.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 228.0, "month": 4.0, "dayweek": 3.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 467.2431075820822, "month": 4.0, "dayweek": 3.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75117455243478, 35.68785245668012]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22295", "type": "restaurant", "CO2": {"type": "Property", "value": 1277.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 135.0, "month": 4.0, "dayweek": 3.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 440.57276142409876, "month": 4.0, "dayweek": 3.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76073295300444, 35.68418205733439]}}}, {"id": "urn:ngsi-ld:shop:jewellery:22296", "type": "jewellery", "CO2": {"type": "Property", "value": 1268.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 74.0, "month": 4.0, "dayweek": 3.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 438.85147157157166, "month": 4.0, "dayweek": 3.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71674098543033, 35.67853456308666]}}}, {"id": "urn:ngsi-ld:shop:jewellery:22297", "type": "jewellery", "CO2": {"type": "Property", "value": 1224.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 4.0, "dayweek": 3.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 428.08647302128554, "month": 4.0, "dayweek": 3.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74743346746519, 35.67518373425839]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:22298", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1148.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 4.0, "dayweek": 3.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 409.0529408044773, "month": 4.0, "dayweek": 3.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72743647849353, 35.67528313869112]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22299", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1075.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 4.0, "dayweek": 3.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 390.79458361890556, "month": 4.0, "dayweek": 3.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7208066174846, 35.675688876450764]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22300", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 997.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 9.9, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 28.8, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 30.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 12.8, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 42.0, "month": 4.0, "dayweek": 3.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 371.2442680479396, "month": 4.0, "dayweek": 3.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75809722959025, 35.678150272897796]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22303", "type": "restaurant", "CO2": {"type": "Property", "value": 901.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 3.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 191.09658817342313, "month": 4.0, "dayweek": 3.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74282204847967, 35.669685665181674]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:22304", "type": "electronicsstore", "CO2": {"type": "Property", "value": 859.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 19.0, "month": 4.0, "dayweek": 3.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 180.8483729772948, "month": 4.0, "dayweek": 3.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77597186173764, 35.68789444396072]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:22305", "type": "sweetsshop", "CO2": {"type": "Property", "value": 827.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 3.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 173.18407455195467, "month": 4.0, "dayweek": 3.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73119943958895, 35.68678567493356]}}}, {"id": "urn:ngsi-ld:shop:cinema:22306", "type": "cinema", "CO2": {"type": "Property", "value": 791.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 3.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 164.48620941829927, "month": 4.0, "dayweek": 3.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74476570316685, 35.67383598431849]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:22307", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 735.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 3.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 122.57075431266539, "month": 4.0, "dayweek": 3.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77103764437925, 35.69481847245813]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22308", "type": "bookshop", "CO2": {"type": "Property", "value": 745.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 4.0, "dayweek": 3.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 125.75890632463576, "month": 4.0, "dayweek": 3.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72672684535277, 35.67264577028782]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22309", "type": "musicshop", "CO2": {"type": "Property", "value": 736.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 4.0, "dayweek": 3.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 124.03761647210844, "month": 4.0, "dayweek": 3.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76042309455983, 35.66893450292535]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22310", "type": "bookshop", "CO2": {"type": "Property", "value": 707.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 4.0, "dayweek": 3.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 117.14849307800479, "month": 4.0, "dayweek": 3.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72624924207483, 35.67535695721463]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22311", "type": "musicshop", "CO2": {"type": "Property", "value": 692.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 4.0, "dayweek": 3.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 113.87685316300464, "month": 4.0, "dayweek": 3.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70942036029462, 35.69016945587335]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:22312", "type": "shoesstore", "CO2": {"type": "Property", "value": 684.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 4.0, "dayweek": 3.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 112.41395498755624, "month": 4.0, "dayweek": 3.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76260597626404, 35.69020763010418]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22313", "type": "opticianstore", "CO2": {"type": "Property", "value": 657.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 3.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 77.99185851720816, "month": 4.0, "dayweek": 3.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7746185793208, 35.68795489706703]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22314", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 657.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 4.0, "dayweek": 3.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.59609375839031, "month": 4.0, "dayweek": 3.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7381422815407, 35.693365002625164]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:22315", "type": "beuatystore", "CO2": {"type": "Property", "value": 642.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 4.0, "dayweek": 3.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.3244538433901, "month": 4.0, "dayweek": 3.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76666126802846, 35.68825817150973]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:22316", "type": "beuatystore", "CO2": {"type": "Property", "value": 633.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 3.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 73.60316399086284, "month": 4.0, "dayweek": 3.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72232551207733, 35.687206798146335]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:22317", "type": "shoesstore", "CO2": {"type": "Property", "value": 611.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 3.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 68.52278233631094, "month": 4.0, "dayweek": 3.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76075591091035, 35.69025887160361]}}}, {"id": "urn:ngsi-ld:shop:cafe:22318", "type": "cafe", "CO2": {"type": "Property", "value": 606.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 4.0, "dayweek": 3.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 67.83505919209901, "month": 4.0, "dayweek": 3.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76518413273246, 35.669165222825455]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22319", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 616.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 3.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 42.97345477366727, "month": 4.0, "dayweek": 3.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7175476886505, 35.67252310737354]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22320", "type": "musicshop", "CO2": {"type": "Property", "value": 603.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 3.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 40.21859821282479, "month": 4.0, "dayweek": 3.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72559368944266, 35.693301657892185]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22321", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 577.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 3.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 34.10464984995755, "month": 4.0, "dayweek": 3.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72368422347378, 35.69241776645193]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:22322", "type": "electronicsstore", "CO2": {"type": "Property", "value": 575.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 4.0, "dayweek": 3.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 34.19210173698204, "month": 4.0, "dayweek": 3.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71280791884837, 35.67749673639868]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22323", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 580.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 14.0, "month": 4.0, "dayweek": 3.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.088295363558274, "month": 4.0, "dayweek": 3.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.749247369906, 35.67877577863684]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22324", "type": "teeshop", "CO2": {"type": "Property", "value": 571.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 4.0, "dayweek": 3.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 34.36700551103107, "month": 4.0, "dayweek": 3.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73596160449353, 35.68892790541449]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:22421", "type": "clothesstore", "CO2": {"type": "Property", "value": 901.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 165.0, "month": 4.0, "dayweek": 4.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 288.29351925766707, "month": 4.0, "dayweek": 4.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72635079404276, 35.6949982555475]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:22422", "type": "electronicsstore", "CO2": {"type": "Property", "value": 930.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 167.0, "month": 4.0, "dayweek": 4.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 296.391113134135, "month": 4.0, "dayweek": 4.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72318390185742, 35.69224583070896]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:22423", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1028.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 177.0, "month": 4.0, "dayweek": 4.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 322.3177327290416, "month": 4.0, "dayweek": 4.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70934141248068, 35.691979731266656]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22424", "type": "opticianstore", "CO2": {"type": "Property", "value": 1056.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 178.0, "month": 4.0, "dayweek": 4.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 330.1569349284307, "month": 4.0, "dayweek": 4.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77791875343365, 35.66921391561176]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:22425", "type": "shoesstore", "CO2": {"type": "Property", "value": 1087.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 183.0, "month": 4.0, "dayweek": 4.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 338.7713121590564, "month": 4.0, "dayweek": 4.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77602831405807, 35.6788109242018]}}}, {"id": "urn:ngsi-ld:shop:cafe:22426", "type": "cafe", "CO2": {"type": "Property", "value": 1101.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 181.0, "month": 4.0, "dayweek": 4.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 342.993030879342, "month": 4.0, "dayweek": 4.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73546853746433, 35.69404717229133]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22427", "type": "restaurant", "CO2": {"type": "Property", "value": 1120.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 192.0, "month": 4.0, "dayweek": 4.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 320.45695155461965, "month": 4.0, "dayweek": 4.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75421835710495, 35.68035979331898]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22428", "type": "restaurant", "CO2": {"type": "Property", "value": 1089.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 204.0, "month": 4.0, "dayweek": 4.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 312.4468095651762, "month": 4.0, "dayweek": 4.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7640590572985, 35.691689100502174]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:22429", "type": "shoesstore", "CO2": {"type": "Property", "value": 1174.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 203.0, "month": 4.0, "dayweek": 4.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 335.0143373580581, "month": 4.0, "dayweek": 4.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75824487898123, 35.670981086251295]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22430", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1181.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 193.0, "month": 4.0, "dayweek": 4.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 337.42731433879203, "month": 4.0, "dayweek": 4.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73352338236617, 35.67876997435051]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:22431", "type": "beuatystore", "CO2": {"type": "Property", "value": 1181.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 191.0, "month": 4.0, "dayweek": 4.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 338.0315495799741, "month": 4.0, "dayweek": 4.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76591176944794, 35.690223226441894]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:22432", "type": "clothesstore", "CO2": {"type": "Property", "value": 1182.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 197.0, "month": 4.0, "dayweek": 4.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 338.8941764982351, "month": 4.0, "dayweek": 4.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74856236631055, 35.682555141182355]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22433", "type": "musicshop", "CO2": {"type": "Property", "value": 1197.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 195.0, "month": 4.0, "dayweek": 4.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 343.37428689559965, "month": 4.0, "dayweek": 4.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73096091867922, 35.676670549102965]}}}, {"id": "urn:ngsi-ld:shop:cinema:22434", "type": "cinema", "CO2": {"type": "Property", "value": 1202.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 114.0, "month": 4.0, "dayweek": 4.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 317.22072409177383, "month": 4.0, "dayweek": 4.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74919810849036, 35.6693608153866]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22435", "type": "restaurant", "CO2": {"type": "Property", "value": 1095.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 4.0, "dayweek": 4.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 290.17704988552214, "month": 4.0, "dayweek": 4.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71455620546175, 35.67873824875188]}}}, {"id": "urn:ngsi-ld:shop:computerstore:22436", "type": "computerstore", "CO2": {"type": "Property", "value": 1003.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 4.0, "dayweek": 4.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 267.0092508354527, "month": 4.0, "dayweek": 4.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70706877949524, 35.67766938582029]}}}, {"id": "urn:ngsi-ld:shop:cafe:22437", "type": "cafe", "CO2": {"type": "Property", "value": 937.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 4.0, "dayweek": 4.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 250.55963538943266, "month": 4.0, "dayweek": 4.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72849865679265, 35.69101407912742]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22438", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 876.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 4.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 235.40197832880673, "month": 4.0, "dayweek": 4.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75582504800167, 35.670947466071766]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22439", "type": "teeshop", "CO2": {"type": "Property", "value": 865.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 4.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 233.16390512212186, "month": 4.0, "dayweek": 4.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73807643675494, 35.69248900841529]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22440", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 838.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 198.74180865177377, "month": 4.0, "dayweek": 4.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74771119502827, 35.69436899513393]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:22441", "type": "shoesstore", "CO2": {"type": "Property", "value": 819.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 194.43660202845834, "month": 4.0, "dayweek": 4.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70885233532206, 35.67322879781129]}}}, {"id": "urn:ngsi-ld:shop:flowershop:22442", "type": "flowershop", "CO2": {"type": "Property", "value": 786.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 4.0, "dayweek": 4.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 186.5139119260393, "month": 4.0, "dayweek": 4.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7332137985308, 35.67129510267246]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22443", "type": "restaurant", "CO2": {"type": "Property", "value": 752.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 39.0, "month": 4.0, "dayweek": 4.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 178.33283014654157, "month": 4.0, "dayweek": 4.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74585706676527, 35.675646514398736]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:22444", "type": "beuatystore", "CO2": {"type": "Property", "value": 727.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 4.0, "dayweek": 4.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 172.4772734607532, "month": 4.0, "dayweek": 4.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7520237794834, 35.680432427351796]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22445", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 692.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 31.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 8.3, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 4.0, "dayweek": 4.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 164.0378000041766, "month": 4.0, "dayweek": 4.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72796237711262, 35.670036180824994]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:22446", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 626.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 43.0, "month": 4.0, "dayweek": 4.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 138.10217049368524, "month": 4.0, "dayweek": 4.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70833973049795, 35.67470807829707]}}}, {"id": "urn:ngsi-ld:shop:cafe:22447", "type": "cafe", "CO2": {"type": "Property", "value": 614.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 53.0, "month": 4.0, "dayweek": 4.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 135.60570560992153, "month": 4.0, "dayweek": 4.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7726750946936, 35.673509067755475]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:22448", "type": "clothesstore", "CO2": {"type": "Property", "value": 577.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 59.0, "month": 4.0, "dayweek": 4.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 126.64944879918727, "month": 4.0, "dayweek": 4.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76695749253864, 35.69389624278069]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22449", "type": "bookshop", "CO2": {"type": "Property", "value": 544.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 59.0, "month": 4.0, "dayweek": 4.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 118.72675869676831, "month": 4.0, "dayweek": 4.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7488652540131, 35.676609578849515]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22450", "type": "bookshop", "CO2": {"type": "Property", "value": 510.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 59.0, "month": 4.0, "dayweek": 4.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 110.54567691727055, "month": 4.0, "dayweek": 4.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75994983685598, 35.68884837746285]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22451", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 490.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 4.0, "dayweek": 4.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 105.9820786168763, "month": 4.0, "dayweek": 4.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71589442670708, 35.67313580569216]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22452", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 481.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 4.0, "dayweek": 4.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.21103233394697, "month": 4.0, "dayweek": 4.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7220916956327, 35.69234961834841]}}}, {"id": "urn:ngsi-ld:shop:bookshop:22453", "type": "bookshop", "CO2": {"type": "Property", "value": 479.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 4.0, "dayweek": 4.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 76.29848422097152, "month": 4.0, "dayweek": 4.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7643973873794, 35.69254566796172]}}}, {"id": "urn:ngsi-ld:shop:cinema:22454", "type": "cinema", "CO2": {"type": "Property", "value": 473.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 4.0, "dayweek": 4.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.35236939968067, "month": 4.0, "dayweek": 4.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76926636751048, 35.693127941193126]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:22455", "type": "electronicsstore", "CO2": {"type": "Property", "value": 463.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 4.0, "dayweek": 4.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 73.3726878700746, "month": 4.0, "dayweek": 4.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75262038046827, 35.68761208346063]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22456", "type": "musicshop", "CO2": {"type": "Property", "value": 449.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 4.0, "dayweek": 4.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 70.35943963215325, "month": 4.0, "dayweek": 4.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71772366676382, 35.68813838833573]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:22457", "type": "clothesstore", "CO2": {"type": "Property", "value": 450.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 4.0, "dayweek": 4.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 71.22206655041424, "month": 4.0, "dayweek": 4.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71741848594283, 35.67124487325652]}}}, {"id": "urn:ngsi-ld:shop:flowershop:22458", "type": "flowershop", "CO2": {"type": "Property", "value": 434.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 4.0, "dayweek": 4.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 39.6422785279332, "month": 4.0, "dayweek": 4.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72976207179983, 35.68948176865609]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:22459", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 437.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 4.0, "dayweek": 4.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.021688800351825, "month": 4.0, "dayweek": 4.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73393563283224, 35.67681713320366]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22460", "type": "opticianstore", "CO2": {"type": "Property", "value": 444.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 53.0, "month": 4.0, "dayweek": 4.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.43466578108567, "month": 4.0, "dayweek": 4.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7388898964425, 35.674788999409266]}}}, {"id": "urn:ngsi-ld:shop:computerstore:22461", "type": "computerstore", "CO2": {"type": "Property", "value": 438.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 4.0, "dayweek": 4.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 42.48855095979488, "month": 4.0, "dayweek": 4.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7680187520849, 35.68534988812496]}}}, {"id": "urn:ngsi-ld:shop:restaurant:22462", "type": "restaurant", "CO2": {"type": "Property", "value": 432.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 4.0, "dayweek": 4.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.542436138504115, "month": 4.0, "dayweek": 4.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73382098034472, 35.69128585657919]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22463", "type": "teeshop", "CO2": {"type": "Property", "value": 433.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 49.0, "month": 4.0, "dayweek": 4.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 42.4050630567651, "month": 4.0, "dayweek": 4.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73904001090963, 35.69057879426863]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:22464", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 432.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 4.0, "dayweek": 4.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 14.701150190466365, "month": 4.0, "dayweek": 4.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7404187235548, 35.69132993995105]}}}, {"id": "urn:ngsi-ld:shop:teeshop:22465", "type": "teeshop", "CO2": {"type": "Property", "value": 424.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 4.0, "dayweek": 4.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 13.238252015017935, "month": 4.0, "dayweek": 4.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74754643103034, 35.68786256546221]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:22466", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 432.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 4.0, "dayweek": 4.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.909620672830613, "month": 4.0, "dayweek": 4.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7271732458912, 35.67478541244362]}}}, {"id": "urn:ngsi-ld:shop:musicshop:22467", "type": "musicshop", "CO2": {"type": "Property", "value": 433.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 48.0, "month": 4.0, "dayweek": 4.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 16.7722475910916, "month": 4.0, "dayweek": 4.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71570021745998, 35.675599830711676]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:22468", "type": "opticianstore", "CO2": {"type": "Property", "value": 441.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 4.0, "dayweek": 4.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 19.443616248904306, "month": 4.0, "dayweek": 4.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74829427261156, 35.67644961277182]}}}, {"id": "urn:ngsi-ld:shop:cafe:22469", "type": "cafe", "CO2": {"type": "Property", "value": 427.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 24.9, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.4, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 4.0, "dayweek": 4.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 16.43036801098296, "month": 4.0, "dayweek": 4.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72900797908167, 35.68159772588586]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:23019", "type": "beuatystore", "CO2": {"type": "Property", "value": 414.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.2, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 9.7, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 79.89895407387922, "month": 4.0, "dayweek": 1.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7295722580154, 35.670431896397616]}}}, {"id": "urn:ngsi-ld:shop:flowershop:23020", "type": "flowershop", "CO2": {"type": "Property", "value": 419.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.2, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 9.7, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 81.79514770045546, "month": 4.0, "dayweek": 1.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.758496982949, 35.683781035568224]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:23021", "type": "opticianstore", "CO2": {"type": "Property", "value": 416.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 20.2, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 11.9, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 9.7, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 81.62420791040114, "month": 4.0, "dayweek": 1.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73759364323584, 35.67753808633876]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:23022", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 416.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 54.50514163460085, "month": 4.0, "dayweek": 1.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7378645996717, 35.67337614883079]}}}, {"id": "urn:ngsi-ld:shop:musicshop:23023", "type": "musicshop", "CO2": {"type": "Property", "value": 409.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 53.30063513623125, "month": 4.0, "dayweek": 1.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75911137377085, 35.693567350619716]}}}, {"id": "urn:ngsi-ld:shop:cinema:23024", "type": "cinema", "CO2": {"type": "Property", "value": 415.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 55.45522043988626, "month": 4.0, "dayweek": 1.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7070488416076, 35.69478648759269]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:23025", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 408.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 54.250713941516665, "month": 4.0, "dayweek": 1.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.750244478064, 35.66969565124706]}}}, {"id": "urn:ngsi-ld:shop:computerstore:23026", "type": "computerstore", "CO2": {"type": "Property", "value": 407.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 54.59655750562001, "month": 4.0, "dayweek": 1.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73136499725254, 35.685145238744106]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:23027", "type": "shoesstore", "CO2": {"type": "Property", "value": 415.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 57.26792616343272, "month": 4.0, "dayweek": 1.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76145586847284, 35.670813718855776]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:23028", "type": "clothesstore", "CO2": {"type": "Property", "value": 416.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 30.08079665129165, "month": 4.0, "dayweek": 1.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7551590975005, 35.67479150605775]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:23029", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 418.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 31.20181524663144, "month": 4.0, "dayweek": 1.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72270040100855, 35.67048807332963]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:23030", "type": "clothesstore", "CO2": {"type": "Property", "value": 415.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 31.030875456577064, "month": 4.0, "dayweek": 1.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74322887629341, 35.67546639476301]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:23031", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 404.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 28.79280224989219, "month": 4.0, "dayweek": 1.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73112943110715, 35.689392442591576]}}}, {"id": "urn:ngsi-ld:shop:teeshop:23032", "type": "teeshop", "CO2": {"type": "Property", "value": 411.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 31.205779230626092, "month": 4.0, "dayweek": 1.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7079710478419, 35.690088034032]}}}, {"id": "urn:ngsi-ld:shop:computerstore:23033", "type": "computerstore", "CO2": {"type": "Property", "value": 416.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 33.101972857202355, "month": 4.0, "dayweek": 1.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7306356214286, 35.693522201273616]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:23034", "type": "opticianstore", "CO2": {"type": "Property", "value": 415.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 5.398059990903619, "month": 4.0, "dayweek": 1.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74355899881752, 35.66964139184411]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:23035", "type": "opticianstore", "CO2": {"type": "Property", "value": 412.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 5.227120200849328, "month": 4.0, "dayweek": 1.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72990277968873, 35.6843892558231]}}}, {"id": "urn:ngsi-ld:shop:computerstore:23036", "type": "computerstore", "CO2": {"type": "Property", "value": 412.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 5.831355442031423, "month": 4.0, "dayweek": 1.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74472418043902, 35.67631885627899]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:23037", "type": "opticianstore", "CO2": {"type": "Property", "value": 415.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 7.2107657144500195, "month": 4.0, "dayweek": 1.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7156389294465, 35.68783661580559]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:23038", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 413.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 7.298217601474562, "month": 4.0, "dayweek": 1.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75529271783915, 35.67546959803607]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:23039", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 411.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 7.3856694884990475, "month": 4.0, "dayweek": 1.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7457550566964, 35.68623860929089]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:23040", "type": "beuatystore", "CO2": {"type": "Property", "value": 410.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -20.31824337779966, "month": 4.0, "dayweek": 1.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7558845976373, 35.69242608575016]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:23041", "type": "beuatystore", "CO2": {"type": "Property", "value": 397.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -23.07309993864223, "month": 4.0, "dayweek": 1.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76849641501593, 35.68917374247027]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:23042", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 416.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -17.559422832962497, "month": 4.0, "dayweek": 1.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70605061409844, 35.67198038236586]}}}, {"id": "urn:ngsi-ld:shop:teeshop:23043", "type": "teeshop", "CO2": {"type": "Property", "value": 404.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -20.055887716726204, "month": 4.0, "dayweek": 1.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75623740177585, 35.69177024263785]}}}, {"id": "urn:ngsi-ld:shop:flowershop:23044", "type": "flowershop", "CO2": {"type": "Property", "value": 409.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -18.15969409014994, "month": 4.0, "dayweek": 1.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76689471883245, 35.692655934359536]}}}, {"id": "urn:ngsi-ld:shop:cinema:23045", "type": "cinema", "CO2": {"type": "Property", "value": 411.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 19.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 7.0, "month": 4.0, "dayweek": 1.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": -17.03867549481015, "month": 4.0, "dayweek": 1.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7200115724664, 35.6758295979642]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:24870", "type": "electronicsstore", "CO2": {"type": "Property", "value": 998.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 182.0, "month": 4.0, "dayweek": 0.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 355.0669345510226, "month": 4.0, "dayweek": 0.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73660950010932, 35.68578253843898]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:24871", "type": "sweetsshop", "CO2": {"type": "Property", "value": 966.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 160.0, "month": 4.0, "dayweek": 0.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 347.4026361256824, "month": 4.0, "dayweek": 0.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7237683346367, 35.675788709641324]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:24872", "type": "electronicsstore", "CO2": {"type": "Property", "value": 949.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 165.0, "month": 4.0, "dayweek": 0.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 343.6142128565246, "month": 4.0, "dayweek": 0.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76576354931916, 35.69276161067296]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:24873", "type": "opticianstore", "CO2": {"type": "Property", "value": 951.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 185.0, "month": 4.0, "dayweek": 0.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 344.7352314518644, "month": 4.0, "dayweek": 0.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75015856255783, 35.67888439557749]}}}, {"id": "urn:ngsi-ld:shop:teeshop:24874", "type": "teeshop", "CO2": {"type": "Property", "value": 981.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 155.0, "month": 4.0, "dayweek": 0.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 353.0912170054112, "month": 4.0, "dayweek": 0.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71677328977702, 35.685484459812294]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:24875", "type": "opticianstore", "CO2": {"type": "Property", "value": 989.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 134.0, "month": 4.0, "dayweek": 0.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 355.76258566322383, "month": 4.0, "dayweek": 0.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74143114574903, 35.691550007116376]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:24876", "type": "beuatystore", "CO2": {"type": "Property", "value": 989.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 131.0, "month": 4.0, "dayweek": 0.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 328.317064474004, "month": 4.0, "dayweek": 0.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73401612269603, 35.676575115962535]}}}, {"id": "urn:ngsi-ld:shop:bookshop:24877", "type": "bookshop", "CO2": {"type": "Property", "value": 949.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 144.0, "month": 4.0, "dayweek": 0.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 318.5856326320333, "month": 4.0, "dayweek": 0.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73070893185005, 35.67603911386749]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:24878", "type": "opticianstore", "CO2": {"type": "Property", "value": 929.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 169.0, "month": 4.0, "dayweek": 0.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 314.022034331639, "month": 4.0, "dayweek": 0.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74432976694482, 35.67968551706517]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:24879", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 958.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 173.0, "month": 4.0, "dayweek": 0.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 322.1196282081069, "month": 4.0, "dayweek": 0.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73377548782406, 35.68065400594979]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:24880", "type": "electronicsstore", "CO2": {"type": "Property", "value": 965.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 153.0, "month": 4.0, "dayweek": 0.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 324.5326051888409, "month": 4.0, "dayweek": 0.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71964405478, 35.676180761716864]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:24881", "type": "clothesstore", "CO2": {"type": "Property", "value": 887.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 147.0, "month": 4.0, "dayweek": 0.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 304.982289617875, "month": 4.0, "dayweek": 0.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77924897055766, 35.677792994211636]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:24882", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 943.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 145.0, "month": 4.0, "dayweek": 0.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 292.006702345069, "month": 4.0, "dayweek": 0.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74298917326792, 35.67119003808297]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:24883", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 871.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 140.0, "month": 4.0, "dayweek": 0.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 274.00673683657607, "month": 4.0, "dayweek": 0.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7794561307474, 35.6800625604993]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:24884", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 646.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 151.0, "month": 4.0, "dayweek": 0.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 216.47284473502344, "month": 4.0, "dayweek": 0.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76134141868812, 35.67811598577046]}}}, {"id": "urn:ngsi-ld:shop:teeshop:24885", "type": "teeshop", "CO2": {"type": "Property", "value": 530.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 167.0, "month": 4.0, "dayweek": 0.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 187.10364543506233, "month": 4.0, "dayweek": 0.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7548685914135, 35.68752269236948]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:24886", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 584.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 174.0, "month": 4.0, "dayweek": 0.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 201.6610312385008, "month": 4.0, "dayweek": 0.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75772782004094, 35.671098107652774]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:24887", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 489.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 166.0, "month": 4.0, "dayweek": 0.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 177.718057157195, "month": 4.0, "dayweek": 0.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7698368160718, 35.68010940141692]}}}, {"id": "urn:ngsi-ld:shop:jewellery:24888", "type": "jewellery", "CO2": {"type": "Property", "value": 499.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 111.0, "month": 4.0, "dayweek": 0.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 152.85645273876332, "month": 4.0, "dayweek": 0.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76911522933682, 35.678038302140344]}}}, {"id": "urn:ngsi-ld:shop:cinema:24889", "type": "cinema", "CO2": {"type": "Property", "value": 410.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 4.0, "dayweek": 0.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 130.46382871993035, "month": 4.0, "dayweek": 0.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75423945105868, 35.67089925404426]}}}, {"id": "urn:ngsi-ld:shop:musicshop:24890", "type": "musicshop", "CO2": {"type": "Property", "value": 393.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 98.0, "month": 4.0, "dayweek": 0.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 126.67540545077252, "month": 4.0, "dayweek": 0.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7620826628524, 35.68743516110405]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:24891", "type": "shoesstore", "CO2": {"type": "Property", "value": 392.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 4.0, "dayweek": 0.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 127.02124901487583, "month": 4.0, "dayweek": 0.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76210152025624, 35.6703075091832]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:24892", "type": "opticianstore", "CO2": {"type": "Property", "value": 393.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 4.0, "dayweek": 0.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 127.88387593313682, "month": 4.0, "dayweek": 0.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72778404446012, 35.67636109566859]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:24893", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 390.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 21.5, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 10.4, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.2, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 15.8, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 93.0, "month": 4.0, "dayweek": 0.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 127.71293614308253, "month": 4.0, "dayweek": 0.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74499408498684, 35.69169519802112]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:24894", "type": "opticianstore", "CO2": {"type": "Property", "value": 400.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 53.0, "month": 4.0, "dayweek": 0.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 93.86970177973711, "month": 4.0, "dayweek": 0.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73392685352212, 35.676029562694126]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:24895", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 388.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 0.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 91.3732368959734, "month": 4.0, "dayweek": 0.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7567341073479, 35.6830587959282]}}}, {"id": "urn:ngsi-ld:shop:computerstore:24896", "type": "computerstore", "CO2": {"type": "Property", "value": 395.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 4.0, "dayweek": 0.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 93.78621387670725, "month": 4.0, "dayweek": 0.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77122801510515, 35.687445812476135]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:24897", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 388.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 4.0, "dayweek": 0.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 92.58170737833765, "month": 4.0, "dayweek": 0.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75054627701851, 35.68456739780424]}}}, {"id": "urn:ngsi-ld:shop:cafe:24898", "type": "cafe", "CO2": {"type": "Property", "value": 386.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 70.0, "month": 4.0, "dayweek": 0.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 92.66915926536217, "month": 4.0, "dayweek": 0.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7746527245437, 35.69100770991246]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:24899", "type": "opticianstore", "CO2": {"type": "Property", "value": 384.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 80.0, "month": 4.0, "dayweek": 0.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 92.75661115238668, "month": 4.0, "dayweek": 0.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71838330475188, 35.681455515611496]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:24900", "type": "beuatystore", "CO2": {"type": "Property", "value": 384.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 81.0, "month": 4.0, "dayweek": 0.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 65.31108996316678, "month": 4.0, "dayweek": 0.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75372366494875, 35.671654394036445]}}}, {"id": "urn:ngsi-ld:shop:musicshop:24901", "type": "musicshop", "CO2": {"type": "Property", "value": 390.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 83.0, "month": 4.0, "dayweek": 0.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 67.46567526682188, "month": 4.0, "dayweek": 0.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7699771258038, 35.69489214285842]}}}, {"id": "urn:ngsi-ld:shop:bookshop:24902", "type": "bookshop", "CO2": {"type": "Property", "value": 379.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 92.0, "month": 4.0, "dayweek": 0.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 65.22760206013692, "month": 4.0, "dayweek": 0.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7517555541999, 35.678899753201804]}}}, {"id": "urn:ngsi-ld:shop:cafe:24903", "type": "cafe", "CO2": {"type": "Property", "value": 384.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 98.0, "month": 4.0, "dayweek": 0.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 67.12379568671318, "month": 4.0, "dayweek": 0.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71454639077197, 35.694033243267384]}}}, {"id": "urn:ngsi-ld:shop:flowershop:24904", "type": "flowershop", "CO2": {"type": "Property", "value": 381.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 104.0, "month": 4.0, "dayweek": 0.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 66.95285589665886, "month": 4.0, "dayweek": 0.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7664901633529, 35.67259635081146]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:24905", "type": "electronicsstore", "CO2": {"type": "Property", "value": 372.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 103.0, "month": 4.0, "dayweek": 0.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 65.23156604413163, "month": 4.0, "dayweek": 0.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71938460901782, 35.69410979184432]}}}, {"id": "urn:ngsi-ld:shop:flowershop:24906", "type": "flowershop", "CO2": {"type": "Property", "value": 387.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 102.0, "month": 4.0, "dayweek": 0.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.661920011094054, "month": 4.0, "dayweek": 0.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72745079155305, 35.6891135431317]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:24907", "type": "opticianstore", "CO2": {"type": "Property", "value": 383.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 98.0, "month": 4.0, "dayweek": 0.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.23258854396093, "month": 4.0, "dayweek": 0.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7714801246755, 35.682953110713]}}}, {"id": "urn:ngsi-ld:shop:jewellery:24908", "type": "jewellery", "CO2": {"type": "Property", "value": 390.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 94.0, "month": 4.0, "dayweek": 0.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.645565524694774, "month": 4.0, "dayweek": 0.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72348318243945, 35.67154513724051]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:24909", "type": "opticianstore", "CO2": {"type": "Property", "value": 379.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 104.0, "month": 4.0, "dayweek": 0.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 41.40749231800987, "month": 4.0, "dayweek": 0.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7617035327872, 35.67907323797203]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:24910", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 385.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 100.0, "month": 4.0, "dayweek": 0.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.56207762166494, "month": 4.0, "dayweek": 0.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7752141107368, 35.677232860455085]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:24911", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 392.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 105.0, "month": 4.0, "dayweek": 0.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 45.97505460239884, "month": 4.0, "dayweek": 0.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7768057779626, 35.691196112896435]}}}, {"id": "urn:ngsi-ld:shop:flowershop:24912", "type": "flowershop", "CO2": {"type": "Property", "value": 393.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 104.0, "month": 4.0, "dayweek": 0.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 18.787925090257772, "month": 4.0, "dayweek": 0.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76677175106678, 35.67355619420921]}}}, {"id": "urn:ngsi-ld:shop:musicshop:24913", "type": "musicshop", "CO2": {"type": "Property", "value": 383.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 4.0, "dayweek": 0.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 16.808243560651732, "month": 4.0, "dayweek": 0.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7176903120494, 35.683001124554465]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:24914", "type": "sweetsshop", "CO2": {"type": "Property", "value": 388.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 92.0, "month": 4.0, "dayweek": 0.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 18.70443718722791, "month": 4.0, "dayweek": 0.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7273282652346, 35.69300572117279]}}}, {"id": "urn:ngsi-ld:shop:cinema:24915", "type": "cinema", "CO2": {"type": "Property", "value": 387.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 4.0, "dayweek": 0.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 19.050280751331258, "month": 4.0, "dayweek": 0.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.713454905139, 35.685082749920085]}}}, {"id": "urn:ngsi-ld:shop:restaurant:24916", "type": "restaurant", "CO2": {"type": "Property", "value": 383.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 71.0, "month": 4.0, "dayweek": 0.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 18.620949284198133, "month": 4.0, "dayweek": 0.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70727232367673, 35.69082454278799]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:24917", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 383.0, "month": 4.0, "dayweek": 0.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 0.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 0.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 0.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 0.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 0.0}, "building_occupancy": {"type": "Property", "value": 73.0, "month": 4.0, "dayweek": 0.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 19.225184525380286, "month": 4.0, "dayweek": 0.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7389388242629, 35.67914529487851]}}}, {"id": "urn:ngsi-ld:shop:computerstore:25014", "type": "computerstore", "CO2": {"type": "Property", "value": 1133.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 192.0, "month": 4.0, "dayweek": 1.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 347.66478671583394, "month": 4.0, "dayweek": 1.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76102571926782, 35.69088919410205]}}}, {"id": "urn:ngsi-ld:shop:bookshop:25015", "type": "bookshop", "CO2": {"type": "Property", "value": 1149.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 212.0, "month": 4.0, "dayweek": 1.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 352.4032887902772, "month": 4.0, "dayweek": 1.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72817115368406, 35.6940508048073]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25016", "type": "clothesstore", "CO2": {"type": "Property", "value": 1104.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 207.0, "month": 4.0, "dayweek": 1.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 341.37989856291233, "month": 4.0, "dayweek": 1.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7292842198445, 35.68337235541098]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25017", "type": "teeshop", "CO2": {"type": "Property", "value": 1094.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 206.0, "month": 4.0, "dayweek": 1.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 339.4002170333063, "month": 4.0, "dayweek": 1.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7543710802932, 35.670484057142424]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25018", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1085.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 204.0, "month": 4.0, "dayweek": 1.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 337.67892718077906, "month": 4.0, "dayweek": 1.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7705331766989, 35.682618274093855]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25019", "type": "clothesstore", "CO2": {"type": "Property", "value": 1066.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 207.0, "month": 4.0, "dayweek": 1.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 333.3737205574636, "month": 4.0, "dayweek": 1.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75710644178983, 35.67723972537436]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25020", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1079.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 165.0, "month": 4.0, "dayweek": 1.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 309.28729117026836, "month": 4.0, "dayweek": 1.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77800276273805, 35.67898359332452]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25021", "type": "clothesstore", "CO2": {"type": "Property", "value": 1105.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 166.0, "month": 4.0, "dayweek": 1.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 316.6097100154999, "month": 4.0, "dayweek": 1.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74811779362082, 35.68203575296662]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25022", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1104.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 167.0, "month": 4.0, "dayweek": 1.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 316.95555357960313, "month": 4.0, "dayweek": 1.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77251832744173, 35.66896020475664]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25023", "type": "clothesstore", "CO2": {"type": "Property", "value": 1035.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 170.0, "month": 4.0, "dayweek": 1.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 299.73076310234666, "month": 4.0, "dayweek": 1.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71418302041522, 35.671331678808386]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25024", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1115.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 161.0, "month": 4.0, "dayweek": 1.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 321.0063325098345, "month": 4.0, "dayweek": 1.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74911210743332, 35.668935485742935]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25025", "type": "teeshop", "CO2": {"type": "Property", "value": 1145.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 154.0, "month": 4.0, "dayweek": 1.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 329.3623180633813, "month": 4.0, "dayweek": 1.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7471263549433, 35.68568881503624]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:25026", "type": "beuatystore", "CO2": {"type": "Property", "value": 1133.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 98.0, "month": 4.0, "dayweek": 1.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 298.81609674921555, "month": 4.0, "dayweek": 1.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73811099843525, 35.67623284972977]}}}, {"id": "urn:ngsi-ld:shop:cafe:25027", "type": "cafe", "CO2": {"type": "Property", "value": 1059.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 95.0, "month": 4.0, "dayweek": 1.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 280.29934788656493, "month": 4.0, "dayweek": 1.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73109978182768, 35.668981788701274]}}}, {"id": "urn:ngsi-ld:shop:flowershop:25028", "type": "flowershop", "CO2": {"type": "Property", "value": 941.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 106.0, "month": 4.0, "dayweek": 1.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 250.4133652324461, "month": 4.0, "dayweek": 1.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71814103811118, 35.67669014763278]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25029", "type": "clothesstore", "CO2": {"type": "Property", "value": 788.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 101.0, "month": 4.0, "dayweek": 1.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 211.48367388056863, "month": 4.0, "dayweek": 1.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70577673919374, 35.67311408024932]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25030", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 703.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 102.0, "month": 4.0, "dayweek": 1.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 190.12461657005105, "month": 4.0, "dayweek": 1.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73840818107078, 35.68217238386567]}}}, {"id": "urn:ngsi-ld:shop:jewellery:25031", "type": "jewellery", "CO2": {"type": "Property", "value": 661.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 4.0, "dayweek": 1.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 179.8764013739227, "month": 4.0, "dayweek": 1.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72812242074798, 35.66997853087403]}}}, {"id": "urn:ngsi-ld:shop:flowershop:25032", "type": "flowershop", "CO2": {"type": "Property", "value": 594.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 96.0, "month": 4.0, "dayweek": 1.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 135.11863782042175, "month": 4.0, "dayweek": 1.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71352151217042, 35.69408393570156]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25033", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 546.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 72.0, "month": 4.0, "dayweek": 1.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 123.3200725618205, "month": 4.0, "dayweek": 1.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74026880346858, 35.670221443123864]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25034", "type": "sweetsshop", "CO2": {"type": "Property", "value": 517.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 66.0, "month": 4.0, "dayweek": 1.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 116.43094916771679, "month": 4.0, "dayweek": 1.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7741468308458, 35.694771619549904]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25035", "type": "opticianstore", "CO2": {"type": "Property", "value": 512.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 4.0, "dayweek": 1.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 115.74322602350483, "month": 4.0, "dayweek": 1.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73472585081433, 35.69441438895469]}}}, {"id": "urn:ngsi-ld:shop:bookshop:25036", "type": "bookshop", "CO2": {"type": "Property", "value": 492.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 51.0, "month": 4.0, "dayweek": 1.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 111.17962772311057, "month": 4.0, "dayweek": 1.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7621540663607, 35.68432848882675]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25037", "type": "electronicsstore", "CO2": {"type": "Property", "value": 500.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 23.9, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 7.7, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 17.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 6.9, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 34.0, "month": 4.0, "dayweek": 1.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 113.85099638092328, "month": 4.0, "dayweek": 1.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77312843623164, 35.678181968886314]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25038", "type": "teeshop", "CO2": {"type": "Property", "value": 491.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 85.8377545496947, "month": 4.0, "dayweek": 1.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7318861250727, 35.69198533432725]}}}, {"id": "urn:ngsi-ld:shop:cinema:25039", "type": "cinema", "CO2": {"type": "Property", "value": 484.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 1.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 84.6332480513251, "month": 4.0, "dayweek": 1.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77227392015467, 35.682622566795395]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25040", "type": "clothesstore", "CO2": {"type": "Property", "value": 470.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 29.0, "month": 4.0, "dayweek": 1.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 81.6199998134037, "month": 4.0, "dayweek": 1.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73544157794134, 35.67318364381346]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25041", "type": "opticianstore", "CO2": {"type": "Property", "value": 461.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 1.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 79.89870996087646, "month": 4.0, "dayweek": 1.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.749461184227, 35.67976869662062]}}}, {"id": "urn:ngsi-ld:shop:bookshop:25042", "type": "bookshop", "CO2": {"type": "Property", "value": 453.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 4.0, "dayweek": 1.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.43581178542803, "month": 4.0, "dayweek": 1.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7316310027259, 35.6732703021742]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25043", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 456.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 1.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 79.81522205784665, "month": 4.0, "dayweek": 1.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71961089465168, 35.69349002296706]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25044", "type": "restaurant", "CO2": {"type": "Property", "value": 422.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 43.58438384794684, "month": 4.0, "dayweek": 1.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72550858458783, 35.67610932477575]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25045", "type": "teeshop", "CO2": {"type": "Property", "value": 399.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 4.0, "dayweek": 1.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 38.245610516316106, "month": 4.0, "dayweek": 1.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75969456161158, 35.67365600569694]}}}, {"id": "urn:ngsi-ld:shop:cinema:25046", "type": "cinema", "CO2": {"type": "Property", "value": 394.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 4.0, "dayweek": 1.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 37.55788737210409, "month": 4.0, "dayweek": 1.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71853432048044, 35.694064049200996]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25047", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 396.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 8.0, "month": 4.0, "dayweek": 1.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 38.67890596744388, "month": 4.0, "dayweek": 1.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7543747125296, 35.69321030113075]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25050", "type": "sweetsshop", "CO2": {"type": "Property", "value": 411.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 1.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 16.317730416770587, "month": 4.0, "dayweek": 1.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75113559695754, 35.681233420613836]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25051", "type": "teeshop", "CO2": {"type": "Property", "value": 402.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 9.0, "month": 4.0, "dayweek": 1.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 14.59644056424338, "month": 4.0, "dayweek": 1.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72023099733863, 35.676702736678145]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25052", "type": "opticianstore", "CO2": {"type": "Property", "value": 404.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 4.0, "dayweek": 1.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.717459159583086, "month": 4.0, "dayweek": 1.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73865707849342, 35.68320174849356]}}}, {"id": "urn:ngsi-ld:shop:musicshop:25053", "type": "musicshop", "CO2": {"type": "Property", "value": 402.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 15.804911046607629, "month": 4.0, "dayweek": 1.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75958713349425, 35.674060756779056]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25054", "type": "shoesstore", "CO2": {"type": "Property", "value": 407.0, "month": 4.0, "dayweek": 1.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 1.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 1.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 1.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 1.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 1.0}, "building_occupancy": {"type": "Property", "value": 21.0, "month": 4.0, "dayweek": 1.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 17.701104673183863, "month": 4.0, "dayweek": 1.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7600590669784, 35.68316079575363]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25158", "type": "electronicsstore", "CO2": {"type": "Property", "value": 930.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 181.0, "month": 4.0, "dayweek": 2.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 324.5985289290456, "month": 4.0, "dayweek": 2.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73805332965523, 35.67902949722204]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25159", "type": "opticianstore", "CO2": {"type": "Property", "value": 971.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 194.0, "month": 4.0, "dayweek": 2.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 335.7968229304594, "month": 4.0, "dayweek": 2.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7153982361784, 35.67965845996877]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25160", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 999.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 224.0, "month": 4.0, "dayweek": 2.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 343.6360251298485, "month": 4.0, "dayweek": 2.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76261949203317, 35.679982942381805]}}}, {"id": "urn:ngsi-ld:shop:cafe:25161", "type": "cafe", "CO2": {"type": "Property", "value": 1033.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 215.0, "month": 4.0, "dayweek": 2.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 353.0255773917106, "month": 4.0, "dayweek": 2.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73511930460418, 35.67751128987478]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25162", "type": "restaurant", "CO2": {"type": "Property", "value": 1011.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 199.0, "month": 4.0, "dayweek": 2.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 347.94519573715866, "month": 4.0, "dayweek": 2.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77760524917724, 35.69347569847004]}}}, {"id": "urn:ngsi-ld:shop:cafe:25163", "type": "cafe", "CO2": {"type": "Property", "value": 995.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 195.0, "month": 4.0, "dayweek": 2.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 344.4151641450797, "month": 4.0, "dayweek": 2.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71886148534546, 35.69483668191337]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25164", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 975.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 176.0, "month": 4.0, "dayweek": 2.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 311.80180941428335, "month": 4.0, "dayweek": 2.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73328223553654, 35.67524379117246]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25165", "type": "clothesstore", "CO2": {"type": "Property", "value": 990.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 174.0, "month": 4.0, "dayweek": 2.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 316.2819198116478, "month": 4.0, "dayweek": 2.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73139919678465, 35.67628811713782]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25166", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 1033.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 181.0, "month": 4.0, "dayweek": 2.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 327.99699716721926, "month": 4.0, "dayweek": 2.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71048930167234, 35.68740562840101]}}}, {"id": "urn:ngsi-ld:shop:jewellery:25167", "type": "jewellery", "CO2": {"type": "Property", "value": 1075.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 184.0, "month": 4.0, "dayweek": 2.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 339.45368284571185, "month": 4.0, "dayweek": 2.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75932026469093, 35.67936011973792]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25168", "type": "teeshop", "CO2": {"type": "Property", "value": 1059.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 171.0, "month": 4.0, "dayweek": 2.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 335.9236512536329, "month": 4.0, "dayweek": 2.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77141268846142, 35.68710810315717]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25169", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1068.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 173.0, "month": 4.0, "dayweek": 2.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 338.8534115885244, "month": 4.0, "dayweek": 2.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75989726672918, 35.66954464827864]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25170", "type": "sweetsshop", "CO2": {"type": "Property", "value": 1081.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 156.0, "month": 4.0, "dayweek": 2.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 314.7669822013292, "month": 4.0, "dayweek": 2.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75294385131278, 35.69502722108191]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25171", "type": "clothesstore", "CO2": {"type": "Property", "value": 1126.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 152.0, "month": 4.0, "dayweek": 2.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 326.9988429110583, "month": 4.0, "dayweek": 2.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77369471058046, 35.68869457419152]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25172", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 1112.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 156.0, "month": 4.0, "dayweek": 2.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 323.9855946731369, "month": 4.0, "dayweek": 2.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77485677236754, 35.67115342572415]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25173", "type": "shoesstore", "CO2": {"type": "Property", "value": 1096.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 152.0, "month": 4.0, "dayweek": 2.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 320.4555630810579, "month": 4.0, "dayweek": 2.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73606874317753, 35.67505391787176]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25174", "type": "teeshop", "CO2": {"type": "Property", "value": 1088.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 140.0, "month": 4.0, "dayweek": 2.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 318.9926649056095, "month": 4.0, "dayweek": 2.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7419705100244, 35.67368706671217]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25175", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 1078.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 137.0, "month": 4.0, "dayweek": 2.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 317.01298337600343, "month": 4.0, "dayweek": 2.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71743324412566, 35.67100792824521]}}}, {"id": "urn:ngsi-ld:shop:flowershop:25176", "type": "flowershop", "CO2": {"type": "Property", "value": 1061.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 89.0, "month": 4.0, "dayweek": 2.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 285.17480367644356, "month": 4.0, "dayweek": 2.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76293455108654, 35.68673026072018]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25177", "type": "clothesstore", "CO2": {"type": "Property", "value": 1036.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 90.0, "month": 4.0, "dayweek": 2.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 279.3192469906552, "month": 4.0, "dayweek": 2.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74001666688918, 35.67255638269777]}}}, {"id": "urn:ngsi-ld:shop:jewellery:25178", "type": "jewellery", "CO2": {"type": "Property", "value": 992.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 74.0, "month": 4.0, "dayweek": 2.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 268.5542484403692, "month": 4.0, "dayweek": 2.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7288833430978, 35.68816375623465]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25179", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 854.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 81.0, "month": 4.0, "dayweek": 2.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 233.50043224467402, "month": 4.0, "dayweek": 2.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77043894806062, 35.69398328604387]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25180", "type": "electronicsstore", "CO2": {"type": "Property", "value": 753.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 4.0, "dayweek": 2.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 208.00710810089527, "month": 4.0, "dayweek": 2.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7662778123634, 35.68116312921816]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25181", "type": "shoesstore", "CO2": {"type": "Property", "value": 717.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 24.0, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.3, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 6.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 4.0, "dayweek": 2.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 199.3092429672398, "month": 4.0, "dayweek": 2.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73996413934964, 35.68212380346761]}}}, {"id": "urn:ngsi-ld:shop:flowershop:25182", "type": "flowershop", "CO2": {"type": "Property", "value": 671.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 35.0, "month": 4.0, "dayweek": 2.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 152.66349047553746, "month": 4.0, "dayweek": 2.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71340720433622, 35.682835179473415]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25183", "type": "sweetsshop", "CO2": {"type": "Property", "value": 658.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 4.0, "dayweek": 2.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 149.90863391469495, "month": 4.0, "dayweek": 2.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74016482758068, 35.66993131860298]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25184", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 617.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 13.0, "month": 4.0, "dayweek": 2.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 139.91881039564538, "month": 4.0, "dayweek": 2.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71319196776173, 35.677116001959256]}}}, {"id": "urn:ngsi-ld:shop:bookshop:25185", "type": "bookshop", "CO2": {"type": "Property", "value": 581.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 4.0, "dayweek": 2.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 131.22094526198998, "month": 4.0, "dayweek": 2.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72480463537448, 35.674302485947486]}}}, {"id": "urn:ngsi-ld:shop:jewellery:25186", "type": "jewellery", "CO2": {"type": "Property", "value": 547.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 11.0, "month": 4.0, "dayweek": 2.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 123.03986348249222, "month": 4.0, "dayweek": 2.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74328147730893, 35.67287792738768]}}}, {"id": "urn:ngsi-ld:shop:musicshop:25187", "type": "musicshop", "CO2": {"type": "Property", "value": 528.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 4.0, "dayweek": 2.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 118.73465685917677, "month": 4.0, "dayweek": 2.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72540783528294, 35.679156193455945]}}}, {"id": "urn:ngsi-ld:shop:bookshop:25188", "type": "bookshop", "CO2": {"type": "Property", "value": 512.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 2.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 87.15486883669573, "month": 4.0, "dayweek": 2.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74132334960638, 35.67539458053885]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25189", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 522.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 39.0, "month": 4.0, "dayweek": 2.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 90.3430208486661, "month": 4.0, "dayweek": 2.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7268515505962, 35.68757775036788]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25190", "type": "sweetsshop", "CO2": {"type": "Property", "value": 517.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 52.0, "month": 4.0, "dayweek": 2.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 89.65529770445409, "month": 4.0, "dayweek": 2.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75184980542423, 35.67451865702258]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25191", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 512.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 65.0, "month": 4.0, "dayweek": 2.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 88.96757456024213, "month": 4.0, "dayweek": 2.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76083969961115, 35.67155376431663]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25192", "type": "opticianstore", "CO2": {"type": "Property", "value": 492.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 72.0, "month": 4.0, "dayweek": 2.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 84.40397625984787, "month": 4.0, "dayweek": 2.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73779624843564, 35.682622330492734]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25193", "type": "electronicsstore", "CO2": {"type": "Property", "value": 489.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 83.0, "month": 4.0, "dayweek": 2.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 84.23303646979355, "month": 4.0, "dayweek": 2.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77641022077646, 35.675902789783656]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25194", "type": "teeshop", "CO2": {"type": "Property", "value": 483.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 4.0, "dayweek": 2.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 55.2371652181007, "month": 4.0, "dayweek": 2.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73579742477023, 35.69271073944677]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25195", "type": "electronicsstore", "CO2": {"type": "Property", "value": 492.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 4.0, "dayweek": 2.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 58.16692555299227, "month": 4.0, "dayweek": 2.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71094808841232, 35.68065918232916]}}}, {"id": "urn:ngsi-ld:shop:cafe:25196", "type": "cafe", "CO2": {"type": "Property", "value": 498.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 4.0, "dayweek": 2.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 60.32151085664728, "month": 4.0, "dayweek": 2.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76141626424686, 35.6796782231321]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25197", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 497.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 4.0, "dayweek": 2.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 60.66735442075063, "month": 4.0, "dayweek": 2.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7197685231793, 35.676198732104154]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25198", "type": "sweetsshop", "CO2": {"type": "Property", "value": 501.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 87.0, "month": 4.0, "dayweek": 2.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 62.305156370248056, "month": 4.0, "dayweek": 2.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7587032662117, 35.68334505718004]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25199", "type": "restaurant", "CO2": {"type": "Property", "value": 493.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 88.0, "month": 4.0, "dayweek": 2.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 60.842258194799626, "month": 4.0, "dayweek": 2.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7756153209378, 35.689790286664696]}}}, {"id": "urn:ngsi-ld:shop:cafe:25200", "type": "cafe", "CO2": {"type": "Property", "value": 487.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 90.0, "month": 4.0, "dayweek": 2.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 31.846386943106808, "month": 4.0, "dayweek": 2.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7456897808601, 35.6916613754955]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25201", "type": "shoesstore", "CO2": {"type": "Property", "value": 489.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 91.0, "month": 4.0, "dayweek": 2.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 32.9674055384466, "month": 4.0, "dayweek": 2.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76511203368716, 35.68077724425964]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:25202", "type": "beuatystore", "CO2": {"type": "Property", "value": 472.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 91.0, "month": 4.0, "dayweek": 2.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 29.178982269288724, "month": 4.0, "dayweek": 2.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74238676315724, 35.69211519824032]}}}, {"id": "urn:ngsi-ld:shop:flowershop:25203", "type": "flowershop", "CO2": {"type": "Property", "value": 476.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 90.0, "month": 4.0, "dayweek": 2.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 30.816784218786182, "month": 4.0, "dayweek": 2.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76743112358002, 35.67688028688613]}}}, {"id": "urn:ngsi-ld:shop:flowershop:25204", "type": "flowershop", "CO2": {"type": "Property", "value": 496.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 81.0, "month": 4.0, "dayweek": 2.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.58885300154475, "month": 4.0, "dayweek": 2.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7186697158541, 35.68992047575258]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:25205", "type": "beuatystore", "CO2": {"type": "Property", "value": 492.0, "month": 4.0, "dayweek": 2.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 2.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 2.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 2.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 2.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 2.0}, "building_occupancy": {"type": "Property", "value": 82.0, "month": 4.0, "dayweek": 2.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 36.159521534411624, "month": 4.0, "dayweek": 2.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71902688083478, 35.68849417367541]}}}, {"id": "urn:ngsi-ld:shop:jewellery:25302", "type": "jewellery", "CO2": {"type": "Property", "value": 633.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 198.0, "month": 4.0, "dayweek": 3.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 228.2536877915841, "month": 4.0, "dayweek": 3.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75148875456063, 35.67729496374534]}}}, {"id": "urn:ngsi-ld:shop:flowershop:25303", "type": "flowershop", "CO2": {"type": "Property", "value": 641.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 191.0, "month": 4.0, "dayweek": 3.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 230.92505644939683, "month": 4.0, "dayweek": 3.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74851540609396, 35.67056050992667]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25304", "type": "teeshop", "CO2": {"type": "Property", "value": 640.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 192.0, "month": 4.0, "dayweek": 3.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 231.2709000135001, "month": 4.0, "dayweek": 3.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70631686446643, 35.66954645513878]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25305", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 641.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 197.0, "month": 4.0, "dayweek": 3.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 232.13352693176108, "month": 4.0, "dayweek": 3.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75984808674343, 35.6791042748357]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25306", "type": "sweetsshop", "CO2": {"type": "Property", "value": 647.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 160.0, "month": 4.0, "dayweek": 3.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 234.28811223541615, "month": 4.0, "dayweek": 3.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7603280782873, 35.66973499611886]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25307", "type": "electronicsstore", "CO2": {"type": "Property", "value": 647.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 158.0, "month": 4.0, "dayweek": 3.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 234.8923474765983, "month": 4.0, "dayweek": 3.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76573405534398, 35.68663509117613]}}}, {"id": "urn:ngsi-ld:shop:cinema:25308", "type": "cinema", "CO2": {"type": "Property", "value": 660.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 161.0, "month": 4.0, "dayweek": 3.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 210.80591808940306, "month": 4.0, "dayweek": 3.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7121430864607, 35.676292191019414]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25309", "type": "electronicsstore", "CO2": {"type": "Property", "value": 689.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 163.0, "month": 4.0, "dayweek": 3.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 218.90351196587108, "month": 4.0, "dayweek": 3.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73804796626845, 35.67153752115921]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25310", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 660.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 158.0, "month": 4.0, "dayweek": 3.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 212.0143885717673, "month": 4.0, "dayweek": 3.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73039437376028, 35.694559091958205]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25311", "type": "shoesstore", "CO2": {"type": "Property", "value": 667.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 157.0, "month": 4.0, "dayweek": 3.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 214.42736555250121, "month": 4.0, "dayweek": 3.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75807683636938, 35.67556732853186]}}}, {"id": "urn:ngsi-ld:shop:flowershop:25312", "type": "flowershop", "CO2": {"type": "Property", "value": 670.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 157.0, "month": 4.0, "dayweek": 3.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 215.80677582491984, "month": 4.0, "dayweek": 3.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74234293789613, 35.680483843552295]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25313", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 668.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 159.0, "month": 4.0, "dayweek": 3.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 215.89422771194438, "month": 4.0, "dayweek": 3.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77979160208915, 35.67985289962849]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25314", "type": "shoesstore", "CO2": {"type": "Property", "value": 683.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 144.0, "month": 4.0, "dayweek": 3.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 192.32458167890678, "month": 4.0, "dayweek": 3.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73057374189213, 35.68691612318309]}}}, {"id": "urn:ngsi-ld:shop:cafe:25315", "type": "cafe", "CO2": {"type": "Property", "value": 686.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 131.0, "month": 4.0, "dayweek": 3.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 193.7039919513254, "month": 4.0, "dayweek": 3.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73790142585645, 35.68164704850838]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25316", "type": "clothesstore", "CO2": {"type": "Property", "value": 697.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 112.0, "month": 4.0, "dayweek": 3.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 197.15053564037453, "month": 4.0, "dayweek": 3.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71292449300662, 35.69426566153735]}}}, {"id": "urn:ngsi-ld:shop:musicshop:25317", "type": "musicshop", "CO2": {"type": "Property", "value": 705.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 107.0, "month": 4.0, "dayweek": 3.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 199.82190429818723, "month": 4.0, "dayweek": 3.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75684371880212, 35.67795867783649]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25318", "type": "clothesstore", "CO2": {"type": "Property", "value": 697.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 106.0, "month": 4.0, "dayweek": 3.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 198.35900612273883, "month": 4.0, "dayweek": 3.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74269901114118, 35.687889410592966]}}}, {"id": "urn:ngsi-ld:shop:cinema:25319", "type": "cinema", "CO2": {"type": "Property", "value": 690.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 79.0, "month": 4.0, "dayweek": 3.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 197.15449962436918, "month": 4.0, "dayweek": 3.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7331314385776, 35.67412879591554]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25320", "type": "electronicsstore", "CO2": {"type": "Property", "value": 689.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 64.0, "month": 4.0, "dayweek": 3.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 169.45058675807053, "month": 4.0, "dayweek": 3.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75309344046764, 35.69108567465002]}}}, {"id": "urn:ngsi-ld:shop:computerstore:25321", "type": "computerstore", "CO2": {"type": "Property", "value": 720.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 4.0, "dayweek": 3.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 178.0649639886961, "month": 4.0, "dayweek": 3.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77663991505082, 35.67044838490093]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25322", "type": "shoesstore", "CO2": {"type": "Property", "value": 701.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 22.0, "month": 4.0, "dayweek": 3.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 173.75975736538055, "month": 4.0, "dayweek": 3.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73563162000536, 35.69354839347248]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25323", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 704.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 10.0, "month": 4.0, "dayweek": 3.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 175.13916763779918, "month": 4.0, "dayweek": 3.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7720851005139, 35.685377225388784]}}}, {"id": "urn:ngsi-ld:shop:bookshop:25325", "type": "bookshop", "CO2": {"type": "Property", "value": 709.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 22.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 10.8, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 0.0, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 5.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 8.6, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 4.0, "dayweek": 3.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 177.63959650555762, "month": 4.0, "dayweek": 3.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77140547970933, 35.68421909543224]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25326", "type": "clothesstore", "CO2": {"type": "Property", "value": 677.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 60.0, "month": 4.0, "dayweek": 3.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 135.64217689333384, "month": 4.0, "dayweek": 3.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75795703658125, 35.6820775681661]}}}, {"id": "urn:ngsi-ld:shop:bookshop:25327", "type": "bookshop", "CO2": {"type": "Property", "value": 454.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 76.0, "month": 4.0, "dayweek": 3.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 78.62506814593894, "month": 4.0, "dayweek": 3.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7659412999405, 35.69294230964919]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25328", "type": "sweetsshop", "CO2": {"type": "Property", "value": 440.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 84.0, "month": 4.0, "dayweek": 3.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 75.61181990801754, "month": 4.0, "dayweek": 3.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7288653449793, 35.69283882690448]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25329", "type": "opticianstore", "CO2": {"type": "Property", "value": 464.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 4.0, "dayweek": 3.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 82.41745539909138, "month": 4.0, "dayweek": 3.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71257744515148, 35.689346243074894]}}}, {"id": "urn:ngsi-ld:shop:jewellery:25330", "type": "jewellery", "CO2": {"type": "Property", "value": 459.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 4.0, "dayweek": 3.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 81.72973225487942, "month": 4.0, "dayweek": 3.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72956332711718, 35.68612050877982]}}}, {"id": "urn:ngsi-ld:shop:computerstore:25331", "type": "computerstore", "CO2": {"type": "Property", "value": 501.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 88.0, "month": 4.0, "dayweek": 3.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 93.18641793337207, "month": 4.0, "dayweek": 3.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75846272170145, 35.68434755259611]}}}, {"id": "urn:ngsi-ld:shop:musicshop:25332", "type": "musicshop", "CO2": {"type": "Property", "value": 668.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 86.0, "month": 4.0, "dayweek": 3.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 108.89230681631527, "month": 4.0, "dayweek": 3.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71732397763986, 35.67866021943995]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25333", "type": "shoesstore", "CO2": {"type": "Property", "value": 779.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 85.0, "month": 4.0, "dayweek": 3.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 138.17801821324656, "month": 4.0, "dayweek": 3.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77350097484756, 35.67090548479944]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25334", "type": "teeshop", "CO2": {"type": "Property", "value": 806.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 79.0, "month": 4.0, "dayweek": 3.0, "time": "15:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 145.75882873555685, "month": 4.0, "dayweek": 3.0, "time": "15:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75875635564296, 35.68473187968432]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25335", "type": "opticianstore", "CO2": {"type": "Property", "value": 841.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 79.0, "month": 4.0, "dayweek": 3.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 155.4067726744977, "month": 4.0, "dayweek": 3.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73493161550056, 35.685303264224046]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25336", "type": "clothesstore", "CO2": {"type": "Property", "value": 827.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 65.0, "month": 4.0, "dayweek": 3.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 152.39352443657634, "month": 4.0, "dayweek": 3.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75679839251586, 35.68495061928592]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25337", "type": "shoesstore", "CO2": {"type": "Property", "value": 811.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 4.0, "dayweek": 3.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 148.8634928444974, "month": 4.0, "dayweek": 3.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7431608819408, 35.67831471980292]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25338", "type": "restaurant", "CO2": {"type": "Property", "value": 856.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 62.0, "month": 4.0, "dayweek": 3.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 133.04559712382445, "month": 4.0, "dayweek": 3.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74284181725034, 35.67427489334324]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25339", "type": "restaurant", "CO2": {"type": "Property", "value": 898.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 4.0, "dayweek": 3.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 144.5022828023171, "month": 4.0, "dayweek": 3.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75194163841795, 35.688863360428705]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25340", "type": "sweetsshop", "CO2": {"type": "Property", "value": 897.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 4.0, "dayweek": 3.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 144.84812636642033, "month": 4.0, "dayweek": 3.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7564001925026, 35.68922106137023]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25341", "type": "shoesstore", "CO2": {"type": "Property", "value": 865.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 50.0, "month": 4.0, "dayweek": 3.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 137.18382794108027, "month": 4.0, "dayweek": 3.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76602588364173, 35.68717693513009]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25342", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 843.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 57.0, "month": 4.0, "dayweek": 3.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 132.1034462865283, "month": 4.0, "dayweek": 3.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75884966623417, 35.67056082289485]}}}, {"id": "urn:ngsi-ld:shop:computerstore:25343", "type": "computerstore", "CO2": {"type": "Property", "value": 823.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 4.0, "dayweek": 3.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 127.53984798613409, "month": 4.0, "dayweek": 3.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76954815893478, 35.69092239573846]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25344", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 893.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 47.0, "month": 4.0, "dayweek": 3.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 118.18174419243162, "month": 4.0, "dayweek": 3.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72348074183336, 35.6723706914728]}}}, {"id": "urn:ngsi-ld:shop:sweetsshop:25345", "type": "sweetsshop", "CO2": {"type": "Property", "value": 897.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 4.0, "dayweek": 3.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 119.81954614192905, "month": 4.0, "dayweek": 3.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71286666432118, 35.68208345356236]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25346", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 904.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 63.0, "month": 4.0, "dayweek": 3.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 122.2325231226629, "month": 4.0, "dayweek": 3.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7373318616998, 35.67343086087607]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25347", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 874.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 56.0, "month": 4.0, "dayweek": 3.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 115.08500805148044, "month": 4.0, "dayweek": 3.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7233829862817, 35.67115152991796]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25348", "type": "shoesstore", "CO2": {"type": "Property", "value": 879.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 55.0, "month": 4.0, "dayweek": 3.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 116.98120167805668, "month": 4.0, "dayweek": 3.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74995342907667, 35.673727433231754]}}}, {"id": "urn:ngsi-ld:shop:computerstore:25349", "type": "computerstore", "CO2": {"type": "Property", "value": 830.0, "month": 4.0, "dayweek": 3.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 3.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 3.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 3.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 3.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 3.0}, "building_occupancy": {"type": "Property", "value": 54.0, "month": 4.0, "dayweek": 3.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 104.9242447423766, "month": 4.0, "dayweek": 3.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77543746431718, 35.68211760543403]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:25446", "type": "beuatystore", "CO2": {"type": "Property", "value": 767.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 142.0, "month": 4.0, "dayweek": 4.0, "time": "10:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 257.302829397036, "month": 4.0, "dayweek": 4.0, "time": "10:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7529100432737, 35.68008454179366]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25447", "type": "electronicsstore", "CO2": {"type": "Property", "value": 702.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 147.0, "month": 4.0, "dayweek": 4.0, "time": "10:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 241.11160562809474, "month": 4.0, "dayweek": 4.0, "time": "10:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73590887451087, 35.68028985290553]}}}, {"id": "urn:ngsi-ld:shop:jewellery:25448", "type": "jewellery", "CO2": {"type": "Property", "value": 672.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 142.0, "month": 4.0, "dayweek": 4.0, "time": "10:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 233.9640905569122, "month": 4.0, "dayweek": 4.0, "time": "10:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70871317968013, 35.67187536772977]}}}, {"id": "urn:ngsi-ld:shop:cafe:25449", "type": "cafe", "CO2": {"type": "Property", "value": 662.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 142.0, "month": 4.0, "dayweek": 4.0, "time": "10:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 231.98440902730613, "month": 4.0, "dayweek": 4.0, "time": "10:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71908730713895, 35.67658791619782]}}}, {"id": "urn:ngsi-ld:shop:jewellery:25450", "type": "jewellery", "CO2": {"type": "Property", "value": 656.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 141.0, "month": 4.0, "dayweek": 4.0, "time": "10:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 231.03829420601537, "month": 4.0, "dayweek": 4.0, "time": "10:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75461640531398, 35.67779575049692]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25451", "type": "opticianstore", "CO2": {"type": "Property", "value": 642.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 145.0, "month": 4.0, "dayweek": 4.0, "time": "10:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 228.02504596809402, "month": 4.0, "dayweek": 4.0, "time": "10:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76136746963147, 35.674335843608574]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25452", "type": "clothesstore", "CO2": {"type": "Property", "value": 644.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 174.0, "month": 4.0, "dayweek": 4.0, "time": "11:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 201.09630813303176, "month": 4.0, "dayweek": 4.0, "time": "11:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71650520941282, 35.68511810187679]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25453", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 648.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 191.0, "month": 4.0, "dayweek": 4.0, "time": "11:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 202.73411008252918, "month": 4.0, "dayweek": 4.0, "time": "11:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7527136481026, 35.673200174073536]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25454", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 653.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 202.0, "month": 4.0, "dayweek": 4.0, "time": "11:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 204.6303037091054, "month": 4.0, "dayweek": 4.0, "time": "11:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77109636668067, 35.68856015834971]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25455", "type": "opticianstore", "CO2": {"type": "Property", "value": 665.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 181.0, "month": 4.0, "dayweek": 4.0, "time": "11:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 208.3352390752334, "month": 4.0, "dayweek": 4.0, "time": "11:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76973497814166, 35.67014690205835]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25456", "type": "opticianstore", "CO2": {"type": "Property", "value": 664.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 173.0, "month": 4.0, "dayweek": 4.0, "time": "11:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 208.68108263933675, "month": 4.0, "dayweek": 4.0, "time": "11:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77211759661554, 35.67484960556932]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25457", "type": "teeshop", "CO2": {"type": "Property", "value": 649.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 179.0, "month": 4.0, "dayweek": 4.0, "time": "11:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 205.40944272433657, "month": 4.0, "dayweek": 4.0, "time": "11:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71156723184743, 35.68376135509501]}}}, {"id": "urn:ngsi-ld:shop:musicshop:25458", "type": "musicshop", "CO2": {"type": "Property", "value": 688.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 180.0, "month": 4.0, "dayweek": 4.0, "time": "12:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 188.04119694119072, "month": 4.0, "dayweek": 4.0, "time": "12:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74226873087915, 35.67519155454633]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25459", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 725.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 143.0, "month": 4.0, "dayweek": 4.0, "time": "12:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 198.20592423428923, "month": 4.0, "dayweek": 4.0, "time": "12:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74885263206448, 35.670426686393775]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25460", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 745.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 142.0, "month": 4.0, "dayweek": 4.0, "time": "12:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 203.9779930170478, "month": 4.0, "dayweek": 4.0, "time": "12:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76472629832818, 35.677585351838495]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25461", "type": "opticianstore", "CO2": {"type": "Property", "value": 765.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 126.0, "month": 4.0, "dayweek": 4.0, "time": "12:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 209.75006179980633, "month": 4.0, "dayweek": 4.0, "time": "12:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71275204691725, 35.679985096554844]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25462", "type": "opticianstore", "CO2": {"type": "Property", "value": 796.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 127.0, "month": 4.0, "dayweek": 4.0, "time": "12:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 218.36443903043195, "month": 4.0, "dayweek": 4.0, "time": "12:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72837928467487, 35.67618880839785]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:25463", "type": "beuatystore", "CO2": {"type": "Property", "value": 651.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 119.0, "month": 4.0, "dayweek": 4.0, "time": "12:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 181.501881095185, "month": 4.0, "dayweek": 4.0, "time": "12:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7243790966412, 35.68355481369989]}}}, {"id": "urn:ngsi-ld:shop:computerstore:25464", "type": "computerstore", "CO2": {"type": "Property", "value": 521.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 118.0, "month": 4.0, "dayweek": 4.0, "time": "13:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 120.46544188571838, "month": 4.0, "dayweek": 4.0, "time": "13:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72438075385904, 35.68541502476482]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25465", "type": "restaurant", "CO2": {"type": "Property", "value": 474.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 124.0, "month": 4.0, "dayweek": 4.0, "time": "13:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 108.92526830419592, "month": 4.0, "dayweek": 4.0, "time": "13:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7056964499024, 35.67957786004967]}}}, {"id": "urn:ngsi-ld:shop:opticianstore:25466", "type": "opticianstore", "CO2": {"type": "Property", "value": 433.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 102.0, "month": 4.0, "dayweek": 4.0, "time": "13:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 98.93544478514639, "month": 4.0, "dayweek": 4.0, "time": "13:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76828540493344, 35.68267503012065]}}}, {"id": "urn:ngsi-ld:shop:beuatystore:25467", "type": "beuatystore", "CO2": {"type": "Property", "value": 420.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 61.0, "month": 4.0, "dayweek": 4.0, "time": "13:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 96.18058822430385, "month": 4.0, "dayweek": 4.0, "time": "13:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71915818096178, 35.67743286681092]}}}, {"id": "urn:ngsi-ld:shop:cinema:25468", "type": "cinema", "CO2": {"type": "Property", "value": 402.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 45.0, "month": 4.0, "dayweek": 4.0, "time": "13:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 92.13377327806722, "month": 4.0, "dayweek": 4.0, "time": "13:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75505090858752, 35.67463554007194]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25469", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 402.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 18.1, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.1, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 2.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 26.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 4.7, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 41.0, "month": 4.0, "dayweek": 4.0, "time": "13:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 92.73800851924938, "month": 4.0, "dayweek": 4.0, "time": "13:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7082376137602, 35.690278934170614]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25470", "type": "clothesstore", "CO2": {"type": "Property", "value": 400.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 36.0, "month": 4.0, "dayweek": 4.0, "time": "14:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 154.07513210574123, "month": 4.0, "dayweek": 4.0, "time": "14:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77568193392557, 35.68403047913085]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25471", "type": "teeshop", "CO2": {"type": "Property", "value": 401.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 4.0, "dayweek": 4.0, "time": "14:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 154.9377590240022, "month": 4.0, "dayweek": 4.0, "time": "14:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73793562280787, 35.67896427170125]}}}, {"id": "urn:ngsi-ld:shop:musicshop:25472", "type": "musicshop", "CO2": {"type": "Property", "value": 401.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 4.0, "dayweek": 4.0, "time": "14:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 155.5419942651843, "month": 4.0, "dayweek": 4.0, "time": "14:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7503027626882, 35.670181238534596]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25473", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 402.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 18.0, "month": 4.0, "dayweek": 4.0, "time": "14:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 156.4046211834453, "month": 4.0, "dayweek": 4.0, "time": "14:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70836888636714, 35.68603486992195]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25474", "type": "teeshop", "CO2": {"type": "Property", "value": 392.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 23.0, "month": 4.0, "dayweek": 4.0, "time": "14:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 154.42493965383923, "month": 4.0, "dayweek": 4.0, "time": "14:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70571962302773, 35.676304777738316]}}}, {"id": "urn:ngsi-ld:shop:cafe:25475", "type": "cafe", "CO2": {"type": "Property", "value": 401.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 19.0, "month": 4.0, "dayweek": 4.0, "time": "14:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 157.35469998873074, "month": 4.0, "dayweek": 4.0, "time": "14:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74636175670042, 35.671787396326145]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25476", "type": "electronicsstore", "CO2": {"type": "Property", "value": 455.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 20.0, "month": 4.0, "dayweek": 4.0, "time": "15:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 143.86232936176722, "month": 4.0, "dayweek": 4.0, "time": "15:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.75280240506206, 35.685838114773624]}}}, {"id": "urn:ngsi-ld:shop:cinema:25477", "type": "cinema", "CO2": {"type": "Property", "value": 451.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 12.0, "month": 4.0, "dayweek": 4.0, "time": "15:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 143.43299789463404, "month": 4.0, "dayweek": 4.0, "time": "15:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.76901100515872, 35.6842191392219]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25479", "type": "teeshop", "CO2": {"type": "Property", "value": 455.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 16.0, "month": 4.0, "dayweek": 4.0, "time": "15:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 145.67503508531362, "month": 4.0, "dayweek": 4.0, "time": "15:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77414138167381, 35.684148301570815]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25480", "type": "restaurant", "CO2": {"type": "Property", "value": 441.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 25.0, "month": 4.0, "dayweek": 4.0, "time": "15:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 142.66178684739228, "month": 4.0, "dayweek": 4.0, "time": "15:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74828978688583, 35.68143600739048]}}}, {"id": "urn:ngsi-ld:shop:eventticketsstore:25481", "type": "eventticketsstore", "CO2": {"type": "Property", "value": 430.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 27.0, "month": 4.0, "dayweek": 4.0, "time": "15:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 140.4237136407074, "month": 4.0, "dayweek": 4.0, "time": "15:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.70817098186532, 35.69420949846207]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25482", "type": "restaurant", "CO2": {"type": "Property", "value": 440.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 38.0, "month": 4.0, "dayweek": 4.0, "time": "16:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 115.56210922227567, "month": 4.0, "dayweek": 4.0, "time": "16:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7694989467065, 35.6850728882331]}}}, {"id": "urn:ngsi-ld:shop:electronicsstore:25483", "type": "electronicsstore", "CO2": {"type": "Property", "value": 484.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 60.0, "month": 4.0, "dayweek": 4.0, "time": "16:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 127.53557825492598, "month": 4.0, "dayweek": 4.0, "time": "16:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72414060828785, 35.692439531559906]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25484", "type": "shoesstore", "CO2": {"type": "Property", "value": 494.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 64.0, "month": 4.0, "dayweek": 4.0, "time": "16:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 130.7237302668963, "month": 4.0, "dayweek": 4.0, "time": "16:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74758118697918, 35.67262774583414]}}}, {"id": "urn:ngsi-ld:shop:shoesstore:25485", "type": "shoesstore", "CO2": {"type": "Property", "value": 512.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 69.0, "month": 4.0, "dayweek": 4.0, "time": "16:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 135.97901569549722, "month": 4.0, "dayweek": 4.0, "time": "16:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.74025816144726, 35.669946748386344]}}}, {"id": "urn:ngsi-ld:shop:restaurant:25486", "type": "restaurant", "CO2": {"type": "Property", "value": 515.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 93.0, "month": 4.0, "dayweek": 4.0, "time": "16:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 137.35842596791585, "month": 4.0, "dayweek": 4.0, "time": "16:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71404684195144, 35.676084790322406]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25487", "type": "clothesstore", "CO2": {"type": "Property", "value": 462.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 99.0, "month": 4.0, "dayweek": 4.0, "time": "16:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 124.26790232392048, "month": 4.0, "dayweek": 4.0, "time": "16:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72789686669665, 35.689143847940244]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25488", "type": "clothesstore", "CO2": {"type": "Property", "value": 422.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 191.0, "month": 4.0, "dayweek": 4.0, "time": "17:0"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 86.4867140515477, "month": 4.0, "dayweek": 4.0, "time": "17:0"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72614028370646, 35.69018427557508]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25489", "type": "teeshop", "CO2": {"type": "Property", "value": 445.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 193.0, "month": 4.0, "dayweek": 4.0, "time": "17:10"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 93.03395786554276, "month": 4.0, "dayweek": 4.0, "time": "17:10"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.7692901668481, 35.692638272010484]}}}, {"id": "urn:ngsi-ld:shop:kitchensupplystore:25490", "type": "kitchensupplystore", "CO2": {"type": "Property", "value": 423.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 163.0, "month": 4.0, "dayweek": 4.0, "time": "17:20"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 87.9535762109908, "month": 4.0, "dayweek": 4.0, "time": "17:20"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.77231788672603, 35.6702662256776]}}}, {"id": "urn:ngsi-ld:shop:smartphonesstore:25491", "type": "smartphonesstore", "CO2": {"type": "Property", "value": 448.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 164.0, "month": 4.0, "dayweek": 4.0, "time": "17:30"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 95.01760337914348, "month": 4.0, "dayweek": 4.0, "time": "17:30"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.71604965862153, 35.676283864541915]}}}, {"id": "urn:ngsi-ld:shop:clothesstore:25492", "type": "clothesstore", "CO2": {"type": "Property", "value": 443.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 137.0, "month": 4.0, "dayweek": 4.0, "time": "17:40"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 94.3298802349315, "month": 4.0, "dayweek": 4.0, "time": "17:40"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.72287516849167, 35.69216238874529]}}}, {"id": "urn:ngsi-ld:shop:teeshop:25493", "type": "teeshop", "CO2": {"type": "Property", "value": 454.0, "month": 4.0, "dayweek": 4.0}, "day_max_temp": {"type": "Property", "value": 15.5, "month": 4.0, "dayweek": 4.0}, "day_min_temp": {"type": "Property", "value": 12.2, "month": 4.0, "dayweek": 4.0}, "precipitation": {"type": "Property", "value": 20.6, "month": 4.0, "dayweek": 4.0}, "wind_direction": {"type": "Property", "value": 32.0, "month": 4.0, "dayweek": 4.0}, "wind_speed": {"type": "Property", "value": 6.1, "month": 4.0, "dayweek": 4.0}, "building_occupancy": {"type": "Property", "value": 140.0, "month": 4.0, "dayweek": 4.0, "time": "17:50"}, "predicted_building_occupancy_linreg": {"type": "Property", "value": 97.77642392398073, "month": 4.0, "dayweek": 4.0, "time": "17:50"}, "location": {"type": "GeoProperty", "value": {"type": "Point", "coordinates": [139.73062880961544, 35.67884765583058]}}}]
\ No newline at end of file
diff --git a/designer/public/img/customerjourney_cdpSegmentIdentification.png b/designer/public/img/customerjourney_cdpSegmentIdentification.png
new file mode 100644
index 00000000..5321dd8b
Binary files /dev/null and b/designer/public/img/customerjourney_cdpSegmentIdentification.png differ
diff --git a/designer/public/img/customerjourney_customersatisfactionindex.png b/designer/public/img/customerjourney_customersatisfactionindex.png
new file mode 100644
index 00000000..b3400725
Binary files /dev/null and b/designer/public/img/customerjourney_customersatisfactionindex.png differ
diff --git a/designer/public/img/customerjourney_transactionsSimulation.png b/designer/public/img/customerjourney_transactionsSimulation.png
new file mode 100644
index 00000000..1302f8a5
Binary files /dev/null and b/designer/public/img/customerjourney_transactionsSimulation.png differ
diff --git a/designer/public/img/customerjourney_wishedStoreSelection.png b/designer/public/img/customerjourney_wishedStoreSelection.png
new file mode 100644
index 00000000..fe9b9cae
Binary files /dev/null and b/designer/public/img/customerjourney_wishedStoreSelection.png differ
diff --git a/designer/public/img/customerjourneydigitaltwin.png b/designer/public/img/customerjourneydigitaltwin.png
new file mode 100644
index 00000000..3d43c754
Binary files /dev/null and b/designer/public/img/customerjourneydigitaltwin.png differ
diff --git a/designer/public/img/customerjourneyscenario.png b/designer/public/img/customerjourneyscenario.png
new file mode 100644
index 00000000..4ed848e7
Binary files /dev/null and b/designer/public/img/customerjourneyscenario.png differ
diff --git a/designer/public/index.html b/designer/public/index.html
index eacc2f53..8c05e933 100644
--- a/designer/public/index.html
+++ b/designer/public/index.html
@@ -31,8 +31,11 @@
-
-
+
+
+
+
+
diff --git a/designer/public/js/customerjourney.js b/designer/public/js/customerjourney.js
new file mode 100644
index 00000000..3141a135
--- /dev/null
+++ b/designer/public/js/customerjourney.js
@@ -0,0 +1,834 @@
+$(function() {
+
+ // initialization
+ var handlers = {}
+
+ var wishedStoreList = null;
+
+ var maxCapability = 443
+
+ var occupancyPercentage = 30
+
+ var geoscope = {
+ scopeType: "local",
+ scopeValue: "local"
+ };
+
+
+ var curMap = null;
+
+ addMenuItem('CustomerJourneyScenario', 'Customer Journey Scenario', showCustomerJourneyScenario);
+ addMenuItem('CustomerJourneyDigitalTwin', 'Digital Twin for Customer Journey', showCustomerJourneyDigitalTwin);
+ addMenuItem('WishedStore', 'Wished Store', showWishedStore);
+ addMenuItem('SelectedStores', 'Selected Stores', showSelectedStore);
+ addMenuItem('TransactionsSimulator', 'Suggested Store Simulator', transactionsSimulator);
+
+ // //connect to the socket.io server via the NGSI proxy module
+ // var ngsiproxy = new NGSIProxy();
+ // ngsiproxy.setNotifyHandler(handleNotify);
+
+ // client to interact with IoT Broker
+ // var ldclient = new NGSILDclient(config.LdbrokerURL);
+ var client = new NGSI10Client(config.brokerURL);
+ var ldclient = new NGSILDclient(config.LdbrokerURL);
+
+ // subscribeResult();
+
+ if(!config.doNotInitApplications){
+ console.log('doNotInitApplications: ' + config.doNotInitApplications);
+ // initParkingSite();
+ }
+
+ showCustomerJourneyScenario();
+
+ $(window).on('hashchange', function() {
+ var hash = window.location.hash;
+ selectMenuItem(location.hash.substring(1));
+ });
+
+ function addMenuItem(id, name, func) {
+ handlers[id] = func;
+ $('#menu').append('' + name + ' ');
+ }
+
+ function selectMenuItem(name) {
+ $('#menu li').removeClass('active');
+ var element = $('#' + name);
+ element.addClass('active');
+
+ var handler = handlers[name];
+ handler();
+ }
+
+
+ function showCustomerJourneyScenario() {
+ $('#info').html('Customer journey application scenario');
+
+ var html = '';
+ html += '';
+
+ $('#content').html(html);
+ }
+
+ function showCustomerJourneyDigitalTwin() {
+ $('#info').html('Digital Twin for customer journey');
+
+ var html = '';
+ html += '';
+ html += 'Populate System '
+
+ $('#content').html(html);
+
+ $('#populate').click(populateSystem);
+ }
+
+ function showWishedStore() {
+ // console.log("showWishedStore")
+ $('#info').html('Wished store from Customer Data Platform (CDP)');
+
+ var shopTypes = [
+ "musicshop",
+ "shoesstore",
+ "cafe",
+ "restaurant",
+ "cinema",
+ "eventticketsstore",
+ "sweetsshop",
+ "clothesstore",
+ "beuatystore",
+ "teeshop",
+ "smartphonesstore",
+ "computerstore",
+ "electronicsstore",
+ "jewellery",
+ "flowershop",
+ "opticianstore",
+ "bookshop",
+ "kitchensupplystore"
+ ]
+
+ var html = ''
+
+ html += '';
+
+ html += 'CDP Wished Store ';
+
+ html += ' ';
+
+ html += '';
+
+ html += '
CDP Segment Identification
'
+ html += '
'
+ html += 'x musicshop '
+ html += 'x cafe '
+ html += '
'
+
+
+
+ html += '
'
+
+ html += '▷ Manually configure CDP Segment Identification
'
+
+ html += ' '
+ html += ''
+ html += '- choose shop type - '
+ for (const shopType of shopTypes) {
+ html += ''+shopType+' '
+ }
+ html += '
'
+
+ html += ' ';
+
+ html += 'Geolocation of the customer: ';
+ html += '
';
+
+ html += ' ';
+
+ html += 'Get Wished Store List '
+
+ html += ' ';
+ html += 'List of wished stores: ';
+ html += '
';
+
+
+ html += ' ';
+
+ $('#content').html(html);
+
+ // associate functions to clickable buttons
+ $('#getWishedStore').click(updateWishedStoreList);
+ $('#CDPWishedStore').click(cdpWishedStore);
+ $('#shopTypeSelection').change(shopTypeSelected);
+ $('#cdpManual').click(cdpManualSelection);
+
+ $('[id=rowButton]').click(function(e){
+ $(this).closest('tr').remove()
+ })
+
+ // show up the map
+ showMap();
+
+ }
+
+ function shopTypeSelected() {
+ var shopType = document.getElementById("shopTypeSelection").value;
+ if (shopType != "empty"){
+ $('#wishedStoreTypesTable').append('x '+shopType+' ');
+ $('[id=rowButton]').click(function(e){
+ $(this).closest('tr').remove()
+ })
+ }
+
+ }
+
+ function cdpWishedStore() {
+ var x = document.getElementById("wishedStoreTypesTable");
+ x.style.display = "block";
+ }
+
+ function cdpManualSelection() {
+ var x = document.getElementById("shopTypeSelect");
+ if (x.style.display == "none") {
+ x.style.display = "block";
+ $('#cdpManual').html("▼ Manually configure CDP Segment Identification");
+ } else {
+ x.style.display = "none";
+ $('#cdpManual').html("▷ Manually configure CDP Segment Identification");
+
+ }
+ }
+
+ function populateSystem() {
+
+ fetch('/data/shops_data.json')
+ .then(response => response.json())
+ .then( shopsdata =>
+ ldclient.updateContext(shopsdata).then(function(data) {
+ console.log(data);
+ }).catch(function(error) {
+ console.log('failed to create a parking site entity');
+ })
+ )
+ }
+
+
+
+ function showSelectedStore() {
+ // console.log("showWishedStore")
+ $('#info').html('Suggested store with and without context');
+
+ var html = ''
+
+ html += '';
+
+ html += ' '
+
+ html += 'Customer Satisfaction Index Comparison ';
+
+ html += '';
+
+ html += ' '
+
+ html += 'Baseline Time in the Shop (minutes): ';
+
+ html += ' '
+
+ html += 'Suggested Store without Digital Twin ';
+
+ // html += '
';
+
+ html += ''
+ //html += 'Shop Id Shop Type Occupancy '
+ html += ''
+ // html += 'Shop ID '
+ // html += 'Shop Type '
+ // html += 'Occupancy '
+ html += 'Approach '
+ html += 'Suggested Stores '
+ html += 'Shops Count '
+ html += 'Average Waiting Time '
+ html += ' '
+ html += ''
+
+ html += ''
+ html += 'Without Context Intelligence '
+ html += ''
+ html += '
'
+ html += '
'
+ html += '
'
+
+ html += '
'
+
+
+ html += ' ';
+
+ html += 'Suggested Store based on Digital Twin ';
+
+ html += ' ';
+
+ html += '
';
+
+ html += ' ';
+
+ html += ''
+ //html += 'Shop Id Shop Type Occupancy '
+ html += ''
+ // html += 'Shop ID '
+ // html += 'Shop Type '
+ // html += 'Occupancy '
+ html += 'Approach '
+ html += 'Suggested Stores '
+ html += 'Shops Count '
+ html += 'Average Waiting Time '
+ html += ' '
+ html += ''
+
+ // html += ''
+ // html += 'Without Context Intelligence '
+ // html += ''
+ // html += '
'
+ // html += '
'
+ // html += '
'
+
+ html += ''
+ html += 'Based on People Counting '
+ html += ''
+ html += '
'
+ html += '
'
+ html += '
'
+
+ html += ''
+ html += 'Based on Predicted Occupancy '
+ html += ''
+ html += '
'
+ html += '
'
+ html += '
'
+
+ html += '
'
+
+ html += ' ';
+
+ $('#content').html(html);
+
+ // associate functions to clickable buttons
+ $('#suggStoreNoContext').click(createWishedStoreTable_noContext);
+ $('#suggStorePeopleCount').click(createWishedStoreTable_peopleCount);
+ $('#suggStorePredictedLinReg').click(createWishedStoreTable_predictedLinReg);
+
+
+ displaySlider();
+ }
+
+
+
+
+ function transactionsSimulator() {
+
+ $('#info').html('Simulate scenario for total transactions');
+
+ var html = '
';
+ html += '';
+ html += 'Number of Customers: ';
+ html += 'Time Budget: ';
+ html += 'Baseline time per shop: ';
+ html += 'Simulate Transactions '
+ html += '
';
+ html += '
'
+ html += '
'
+
+ $('#content').html(html);
+
+ // showChart('#chart svg',cumulativeTestData())
+
+ //simulateTransactions(1000,60,15,-1,"building_occupancy")
+
+ $('#startSimulation').click(runSimulations);
+
+ }
+
+ function runSimulations(){
+
+ var number_customers_under_study = parseFloat($('#customers').val());
+ var time_budget = parseFloat($('#time_budget').val());
+ var baseline_time_per_shop = parseFloat($('#baseline_time_per_shop').val());
+
+
+ var simulationsResults_noContext = {"key": "noContext", "values":[]}
+ var simulationsResults_peopleCount = {"key": "peopleCount", "values":[]}
+ var simulationsResults_predictionLinReg = {"key": "predictionLinReg", "values":[]}
+
+ var simulationsResults_shops_noContext = {"key": "noContext", "values":[]}
+ var simulationsResults_shops_peopleCount = {"key": "peopleCount", "values":[]}
+ var simulationsResults_shops_predictionLinReg = {"key": "predictionLinReg", "values":[]}
+
+ // Simulate only once for noContext
+ // var noContextSimulationResult = simulateTransactions(number_customers_under_study,
+ // time_budget,
+ // baseline_time_per_shop,
+ // -1,
+ // "building_occupancy")
+
+ var temp = null
+ for (let percentage = 5; percentage < 101; percentage++) {
+
+ // Add the already simulated one for noContext
+ // simulationsResults_noContext.values.push([percentage,noContextSimulationResult])
+
+ // Simulate for peopleCount
+
+ temp = simulateTransactions(number_customers_under_study,
+ time_budget,
+ baseline_time_per_shop,
+ -1,
+ "building_occupancy")
+ simulationsResults_noContext.values.push(
+ [percentage,
+ temp.successful_transactions])
+ simulationsResults_shops_noContext.values.push(
+ [percentage,
+ temp.selected_shops])
+
+ var maxOccupancy = percentage * maxCapability / 100
+
+ // Simulate for peopleCount
+
+ temp = simulateTransactions(number_customers_under_study,
+ time_budget,
+ baseline_time_per_shop,
+ maxOccupancy,
+ "building_occupancy")
+ simulationsResults_peopleCount.values.push(
+ [percentage,
+ temp.successful_transactions])
+ simulationsResults_shops_peopleCount.values.push(
+ [percentage,
+ temp.selected_shops])
+
+ // Simulate for predictionLinReg
+ temp = simulateTransactions(number_customers_under_study,
+ time_budget,
+ baseline_time_per_shop,
+ maxOccupancy,
+ "predicted_building_occupancy_linreg")
+ simulationsResults_predictionLinReg.values.push(
+ [percentage,
+ temp.successful_transactions])
+ simulationsResults_shops_predictionLinReg.values.push(
+ [percentage,
+ temp.selected_shops])
+ }
+
+ var simulationsResults_transactions = [simulationsResults_noContext, simulationsResults_peopleCount, simulationsResults_predictionLinReg]
+ console.log(simulationsResults_transactions)
+ showChart('#transactionsChart svg',simulationsResults_transactions, "Occupancy Percentage", "Transactions")
+
+ var simulationsResults_shops = [simulationsResults_shops_noContext, simulationsResults_shops_peopleCount, simulationsResults_shops_predictionLinReg]
+ console.log(simulationsResults_shops)
+ showChart('#shopsChart svg',simulationsResults_shops, "Occupancy Percentage", "Selected Shops")
+
+ }
+
+ function simulateTransactions(number_customers_under_study, time_budget, baseline_time_per_shop, maxOccupancy, attributeNameToCheck){
+
+ // attributeNameToCheck = "building_occupancy"
+
+ const crowdValues = []
+
+ for (const element of wishedStoreList) {
+
+ //console.log(element.attributes)
+ if (maxOccupancy < 0 || element.attributes[attributeNameToCheck].value < maxOccupancy){
+ //console.log("taking "+ element.entityId.id);
+ crowdValues.push(element.attributes.building_occupancy.value)
+ } else {
+ //console.log("not taking" + element.entityId.id)
+ }
+ }
+
+ console.log("number of selected shops "+ crowdValues.length)
+
+ var successful_transactions = 0
+
+ console.log("number of number_customers_under_study "+ number_customers_under_study)
+
+ for (let i = 0; i < number_customers_under_study; i++) {
+ var timer = 0.0
+ while (timer < time_budget){
+ const random = Math.floor(Math.random() * crowdValues.length);
+ // console.log("random "+ random)
+ crowd = crowdValues[random];
+ // console.log("crowd "+crowd)
+ shop_time = getWaitingTime(crowd, baseline_time_per_shop) + baseline_time_per_shop
+ // console.log("shop_time "+shop_time+ " "+typeof shop_time)
+ timer += shop_time
+ // console.log("timer "+timer + " "+typeof timer)
+ if (timer < time_budget){
+ successful_transactions += 1
+ }
+ }
+ }
+
+
+ return {"successful_transactions" : successful_transactions, "selected_shops" : crowdValues.length}
+
+ }
+
+ function showChart(divID, dataset, xLabel, yLabel){
+ var chart = nv.models.lineChart()
+ .useInteractiveGuideline(true)
+ .x(function(d) { return d[0] })
+ .y(function(d) { return d[1] })
+ .color(d3.scale.category10().range())
+ .duration(300)
+ .clipVoronoi(false);
+
+ chart.dispatch.on('renderEnd', function() {
+ console.log('render complete: cumulative line with guide line');
+ });
+
+ chart.xAxis.tickFormat(function(d) {
+ return d+"%"
+ });
+
+ chart.xAxis.axisLabel(xLabel)
+ // console.log(chart.yAxis.range())
+ chart.yAxis.axisLabel(yLabel)
+
+ // chart.yAxis.tickFormat(d3.format(',.1%'));
+
+ d3.select(divID)
+ .datum(dataset)
+ .call(chart);
+
+ //TODO: Figure out a good way to do this automatically
+ nv.utils.windowResize(chart.update);
+
+ // chart.dispatch.on('stateChange', function(e) { nv.log('New State:', JSON.stringify(e)); });
+ // chart.state.dispatch.on('change', function(state){
+ // nv.log('state', JSON.stringify(state));
+ // });
+ }
+
+ function updateWishedStoreList() {
+
+
+
+ var queryReq = {}
+ queryReq.entities = []
+ // queryReq.entities = [{
+ // "type": "kitchensupplystore",
+ // "isPattern": true
+ // },
+ // {
+ // "type": "bookshop",
+ // "isPattern": true
+ // }];
+
+ var storeTableRows = document.getElementById("wishedStoreTypesTable").rows
+ for (let i=0; i < storeTableRows.length; i++){
+ storeType = storeTableRows[i].cells[1].innerHTML
+ console.log(storeType)
+ queryReq.entities.push({
+ "type": storeType,
+ "isPattern": true
+ })
+ }
+
+ queryReq.restriction = {"scopes": [geoscope]}
+
+ client.queryContext(queryReq).then(function(response) {
+ console.log(response);
+ wishedStoreList = response
+ displayWishedStore(wishedStoreList);
+ }).catch(function(error) {
+ console.log(error);
+ console.log('failed to query context');
+ });
+ }
+
+ function occupancyPercentageSlidingBar(){
+ var html = '';
+ html += '
'
+ html += '
Limit of occupancy: %
';
+ html += '
'
+
+ return html
+ }
+
+ function showMap() {
+ var osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
+ var osm = L.tileLayer(osmUrl, { zoom: 11 });
+ var map = new L.Map('map', { zoomControl: true, layers: [osm], center: new L.LatLng(35.6817, 139.7566), zoom: 11 });
+
+ //disable zoom in/out
+ map.dragging.disable();
+ map.touchZoom.disable();
+ map.doubleClickZoom.disable();
+ map.scrollWheelZoom.disable();
+ map.boxZoom.disable();
+ map.keyboard.disable();
+
+ var drawnItems = new L.FeatureGroup();
+ map.addLayer(drawnItems);
+
+
+ var drawControl = new L.Control.Draw({
+ draw: {
+ position: 'topleft',
+ polyline: false,
+ polygon: true,
+ rectangle: true,
+ circle: {
+ shapeOptions: {
+ color: '#E3225C',
+ weight: 2,
+ clickable: false
+ }
+ },
+ marker: false
+ },
+ edit: {
+ featureGroup: drawnItems
+ }
+ });
+ map.addControl(drawControl);
+
+ map.on('draw:created', function(e) {
+ var type = e.layerType;
+ var layer = e.layer;
+
+ if (type === 'rectangle') {
+ var geometry = layer.toGeoJSON()['geometry'];
+ console.log(geometry);
+
+ geoscope.scopeType = 'polygon';
+ geoscope.scopeValue = {
+ vertices: []
+ };
+
+ points = geometry.coordinates[0];
+ for (i in points) {
+ geoscope.scopeValue.vertices.push({ longitude: points[i][0], latitude: points[i][1] });
+ }
+
+ console.log(geoscope);
+ }
+ if (type === 'circle') {
+ var geometry = layer.toGeoJSON()['geometry'];
+ console.log(geometry);
+ var radius = layer.getRadius();
+
+ geoscope.scopeType = 'circle';
+ geoscope.scopeValue = {
+ centerLatitude: geometry.coordinates[1],
+ centerLongitude: geometry.coordinates[0],
+ radius: radius
+ }
+
+ console.log(geoscope);
+ }
+ if (type === 'polygon') {
+ var geometry = layer.toGeoJSON()['geometry'];
+ console.log(geometry);
+
+ geoscope.scopeType = 'polygon';
+ geoscope.scopeValue = {
+ vertices: []
+ };
+
+ points = geometry.coordinates[0];
+ for (i in points) {
+ geoscope.scopeValue.vertices.push({ longitude: points[i][0], latitude: points[i][1] });
+ }
+
+ console.log(geoscope);
+ }
+
+ drawnItems.addLayer(layer);
+ });
+
+ // remember the created map
+ curMap = map;
+
+ // display the current search scope
+ displaySearchScope();
+ }
+
+ function displaySearchScope() {
+ console.log(geoscope);
+ if (geoscope != null) {
+ switch (geoscope.scopeType) {
+ case 'circle':
+ L.circle([geoscope.scopeValue.centerLatitude, geoscope.scopeValue.centerLongitude], geoscope.scopeValue.radius).addTo(curMap);
+ break;
+ case 'polygon':
+ var points = [];
+ for (var i = 0; i < geoscope.scopeValue.vertices.length; i++) {
+ points.push(new L.LatLng(geoscope.scopeValue.vertices[i].latitude, geoscope.scopeValue.vertices[i].longitude))
+ }
+ L.polygon(points).addTo(curMap);
+ break;
+ }
+ }
+ }
+
+ function createWishedStoreTable_noContext(){
+ data = createWishedStoreTable(wishedStoreList,
+ "building_occupancy",
+ -1,
+ [],
+ [])
+ html = data.table
+ $('#suggStoreNoContextTable').html(html);
+ console.log(data.averageOccupancy)
+ var baselineTime = parseFloat($('#baselineTime').val());
+ console.log(getWaitingTime(data.averageOccupancy, baselineTime))
+ waitingTime = Math.round((getWaitingTime(data.averageOccupancy, baselineTime) + Number.EPSILON) * 100) / 100
+ $('#shopsCountNoContext').html(data.shopsCount);
+ $('#avgTimeNoContext').html(waitingTime);
+ //Add borders to the cells
+ $('td').css("border", "1px solid black");
+ $('td').css("text-align", "center");
+ $('th').css("border", "1px solid black");
+ }
+
+ function createWishedStoreTable_peopleCount(){
+ data = createWishedStoreTable(wishedStoreList,
+ "building_occupancy",
+ maxCapability*(occupancyPercentage/100),
+ ['building_occupancy'],
+ ['Occupancy'])
+ html = data.table
+ $('#suggStorePeopleCountTable').html(html);
+ console.log(data.averageOccupancy)
+ var baselineTime = parseFloat($('#baselineTime').val());
+ console.log(getWaitingTime(data.averageOccupancy, baselineTime))
+ waitingTime = Math.round((getWaitingTime(data.averageOccupancy, baselineTime) + Number.EPSILON) * 100) / 100
+ $('#shopsCountPeopleCount').html(data.shopsCount);
+ $('#avgTimePeopleCount').html(waitingTime);
+ //Add borders to the cells
+ $('td').css("border", "1px solid black");
+ $('td').css("text-align:", "center");
+ $('th').css("border", "1px solid black");
+ }
+
+ function createWishedStoreTable_predictedLinReg(){
+ data = createWishedStoreTable(wishedStoreList,
+ "predicted_building_occupancy_linreg",
+ maxCapability*(occupancyPercentage/100),
+ ['predicted_building_occupancy_linreg', 'CO2','building_occupancy'],
+ ['Prediction','CO2', 'Occupancy'])
+ html = data.table
+ $('#suggStorePredictedLinRegTable').html(html);
+ console.log(data.averageOccupancy)
+ var baselineTime = parseFloat($('#baselineTime').val());
+ console.log(getWaitingTime(data.averageOccupancy, baselineTime))
+ waitingTime = Math.round((getWaitingTime(data.averageOccupancy, baselineTime) + Number.EPSILON) * 100) / 100
+ $('#shopsCountPredictedLinReg').html(data.shopsCount);
+ $('#avgTimePredictedLinReg').html(waitingTime);
+ //Add borders to the cells
+ $('td').css("border", "1px solid black");
+ $('td').css("text-align:", "center");
+ $('th').css("border", "1px solid black");
+ }
+
+ function getWaitingTime(customers, baselineTime){
+ return (customers/(maxCapability)) * baselineTime
+ }
+
+ function createWishedStoreTable(wishedStoreList, attributeNameToCheck, maxOccupancy, properties, headers) {
+
+
+ var html = '';
+ html += ''
+ //html += 'Shop Id Shop Type Occupancy '
+ html += ''
+ // html += 'Shop ID '
+ // html += 'Shop Type '
+ // html += 'Occupancy '
+ html += 'Shop ID '
+ html += 'Shop Type '
+ for (const header of headers){
+ html += ''+header+' '
+ }
+ html += ' '
+ html += ''
+
+ var count = 0
+ var accum = 0
+ for (const element of wishedStoreList) {
+ // console.log(element.attributes)
+ if (maxOccupancy < 0 || element.attributes[attributeNameToCheck].value < maxOccupancy){
+ html += ''+element.entityId.id+' '+element.entityId.type+' '
+ for (const property of properties){
+ html += ''+element.attributes[property].value+' '
+ }
+ html += ' '
+ // html += ''+element.entityId.id+' '+element.entityId.type+' '+element.attributes.building_occupancy.value+' '
+ console.log("taking "+ element.entityId.id);
+ count += 1
+ accum += element.attributes.building_occupancy.value
+ } else {
+ console.log("not taking" + element.entityId.id)
+ }
+ }
+
+ html += '
'
+
+ return {"table" :html,
+ "shopsCount": count,
+ "averageOccupancy": accum/count}
+
+ }
+
+ function displayWishedStore(wishedStoreList) {
+
+
+ var html = '';
+ html += ''
+ //html += 'Shop Id Shop Type Occupancy '
+ html += ''
+ // html += 'Shop ID '
+ // html += 'Shop Type '
+ // html += 'Occupancy '
+ html += 'Shop ID '
+ html += 'Shop Type '
+ html += 'Occupancy '
+ html += ' '
+ html += ''
+
+ for (const element of wishedStoreList) {
+ html += ''+element.entityId.id+' '+element.entityId.type+' '+element.attributes.building_occupancy.value+' '
+ console.log(element.entityId.id);
+ }
+
+ html += '
'
+
+ $('#wishedStore').html(html);
+
+
+ $('td').css("border", "1px solid black");
+ $('td').css("text-align", "center");
+ $('th').css("border", "1px solid black");
+ }
+
+
+ function displaySlider() {
+
+
+ var html = occupancyPercentageSlidingBar();
+
+ $('#occupancyPercentageSlider').html(html);
+
+ var slider = document.getElementById("occupancyRange");
+ var output = document.getElementById("occupancylimit");
+ output.innerHTML = slider.value; // Display the default slider value
+
+ // Update the current slider value (each time you drag the slider handle)
+ slider.oninput = function() {
+ output.innerHTML = this.value;
+ occupancyPercentage = this.value;
+ }
+ }
+
+});
diff --git a/designer/public/js/function.js b/designer/public/js/function.js
index 735e6b20..ea465fc8 100644
--- a/designer/public/js/function.js
+++ b/designer/public/js/function.js
@@ -31,7 +31,7 @@ $(function() {
addMenuItem('FogFunction', 'Fog Function', showFogFunctions);
//addMenuItem('TaskInstance', 'Task Instance', showTaskInstances);
- //initFogFunctionExamples();
+ initFogFunctionExamples();
showFogFunctions();
queryOperatorList();
diff --git a/designer/public/js/initialization.js b/designer/public/js/initialization.js
index d058f01e..a4d1ea22 100644
--- a/designer/public/js/initialization.js
+++ b/designer/public/js/initialization.js
@@ -2,47 +2,58 @@ function defaultOperatorList(){
var operatorList = [{
name: "nodejs",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "python",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "iotagent",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "counter",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "anomaly",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "facefinder",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "connectedcar",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "recommender",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "privatesite",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "publicsite",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}, {
name: "dummy",
description: "",
- parameters: []
+ parameters: [],
+ dockerimages: []
}];
return operatorList;
diff --git a/designer/public/js/ldsmartparking.js b/designer/public/js/ldsmartparking.js
index a59f039a..690e6a7b 100644
--- a/designer/public/js/ldsmartparking.js
+++ b/designer/public/js/ldsmartparking.js
@@ -76,7 +76,10 @@ $(function() {
var client = new NGSI10Client(config.brokerURL);
subscribeResult();
- initParkingSite();
+ if(!config.doNotInitApplications){
+ console.log('doNotInitApplications: ' + doNotInitApplications);
+ initParkingSite();
+ }
showProcessingFlows();
diff --git a/designer/public/js/operator.js b/designer/public/js/operator.js
index 3ca3259d..1e95b8c1 100644
--- a/designer/public/js/operator.js
+++ b/designer/public/js/operator.js
@@ -4,11 +4,11 @@ $(function() {
var handlers = {};
addMenuItem('Operator', 'Operator', showOperator);
+
+ initOperatorList();
+ initDockerImageList();
showOperator();
-
- //initOperatorList();
- //initDockerImageList();
$(window).on('hashchange', function() {
var hash = window.location.hash;
@@ -51,6 +51,7 @@ $(function() {
}
function initOperatorList(){
+ console.log("let's initialize the operator list")
fetch('/operator').then(res => res.json()).then(opList => {
if (Object.keys(opList).length === 0) {
var operators = defaultOperatorList();
@@ -73,6 +74,27 @@ $(function() {
})
}
+ function initDockerImageList(){
+ console.log("Initialize docker images list")
+ fetch('/dockerimage').then(res => res.json()).then(imageList => {
+ if (Object.keys(imageList).length === 0) {
+ var images = defaultDockerImageList();
+ fetch("/dockerimage", {
+ method: "POST",
+ headers: {
+ Accept: "application/json",
+ "Content-Type": "application/json"
+ },
+ body: JSON.stringify(images)
+ })
+ .then(response => {
+ console.log("send the initial list of docker images: ", response.status)
+ })
+ .catch(err => console.log(err));
+ }
+ })
+ }
+
function queryOperatorList() {
fetch('/operator').then(res => res.json()).then(operators => {
Object.values(operators).forEach(operator => {
@@ -109,7 +131,11 @@ $(function() {
html += '' + operator.description + ' ';
html += '';
- html += operator.dockerimages.length;
+ if(operator.hasOwnProperty('dockerimages')){
+ html += operator.dockerimages.length;
+ } else {
+ html += 0;
+ }
html += ' ';
if ('parameters' in operator) {
@@ -498,25 +524,7 @@ $(function() {
//// });
// }
-// function initDockerImageList(){
-// fetch('/dockerimage').then(res => res.json()).then(imageList => {
-// if (Object.keys(imageList).length === 0) {
-// var images = defaultDockerImageList();
-// fetch("/dockerimage", {
-// method: "POST",
-// headers: {
-// Accept: "application/json",
-// "Content-Type": "application/json"
-// },
-// body: JSON.stringify(images)
-// })
-// .then(response => {
-// console.log("send the initial list of docker images: ", response.status)
-// })
-// .catch(err => console.log(err));
-// }
-// })
-// }
+
// function dockerImageRegistration() {
// $('#info').html('New docker image registration');
diff --git a/designer/public/js/topology.js b/designer/public/js/topology.js
index eb782d0d..6732e447 100644
--- a/designer/public/js/topology.js
+++ b/designer/public/js/topology.js
@@ -32,7 +32,7 @@ $(function() {
addMenuItem('Topology', 'Service Topology', showTopologies);
addMenuItem('Intent', 'Service Intent', showIntents);
- //initTopologyExamples();
+ initTopologyExamples();
showTopologies();
queryOperatorList();
diff --git a/discovery/build_k8s b/discovery/build_k8s
new file mode 100644
index 00000000..41af573a
--- /dev/null
+++ b/discovery/build_k8s
@@ -0,0 +1 @@
+docker image tag fogflow/discovery:latest fogflow/discovery:k8s
diff --git a/discovery/fastDiscovery.go b/discovery/fastDiscovery.go
index 67b89e73..9bb8b8ea 100644
--- a/discovery/fastDiscovery.go
+++ b/discovery/fastDiscovery.go
@@ -45,6 +45,20 @@ type FastDiscovery struct {
//cache
notifyCache []*CacheItem
cache_lock sync.RWMutex
+
+ // Configure store on disk
+ delayStoreOnFile int
+ storeOnDisk bool
+
+ // lock to control the update subscriptions in database
+ subscriptionsDbLock sync.RWMutex
+ storeSubscriptionsOnFileScheduled bool
+
+ // lock to control the update brokers in database
+ brokersDbLock sync.RWMutex
+ storeBrokersOnFileScheduled bool
+
+ dbFiles map[string]string
}
func (fd *FastDiscovery) Init(config *Config) {
@@ -55,7 +69,23 @@ func (fd *FastDiscovery) Init(config *Config) {
fd.cfg = config
fd.SecurityCfg = &config.HTTPS
- fd.repository.Init()
+ fd.storeSubscriptionsOnFileScheduled = false
+ fd.storeBrokersOnFileScheduled = false
+ fd.storeOnDisk = config.Discovery.StoreOnDisk
+ //INFO.Println("config.Discovery.DelayStoreRegistrationsOnFile ", config.Discovery.DelayStoreStoreOnFile)
+ fd.delayStoreOnFile = config.Discovery.DelayStoreOnFile
+
+ fd.dbFiles = make(map[string]string)
+ fd.dbFiles["brokers"] = "discoveryDB/brokers.json"
+ fd.dbFiles["subscriptions"] = "discoveryDB/subscriptions.json"
+ fd.dbFiles["registrations"] = "discoveryDB/registrations.json"
+
+ if fd.storeOnDisk {
+ fd.readSubscriptionsFromDisk()
+ fd.readBrokersFromDisk()
+ }
+
+ fd.repository.Init(config)
}
func (fd *FastDiscovery) Stop() {
@@ -153,6 +183,10 @@ func (fd *FastDiscovery) deleteRegistration(eid string) {
fd.broker_list_lock.Lock()
delete(fd.BrokerList, brokerID)
fd.broker_list_lock.Unlock()
+
+ if fd.storeOnDisk {
+ go fd.updateBrokersOnDisk()
+ }
}
fd.repository.deleteEntity(eid)
@@ -231,6 +265,10 @@ func (fd *FastDiscovery) SubscribeContextAvailability(w rest.ResponseWriter, r *
fd.subscriptions_lock.Unlock()
+ if fd.storeOnDisk {
+ go fd.updateSubscriptionsOnDisk()
+ }
+
// send out the response
subscribeCtxAvailabilityResp := SubscribeContextAvailabilityResponse{}
subscribeCtxAvailabilityResp.SubscriptionId = subID
@@ -262,6 +300,10 @@ func (fd *FastDiscovery) UpdateLDContextAvailability(w rest.ResponseWriter, r *r
}
fd.subscriptions_lock.Unlock()
+ if fd.storeOnDisk {
+ go fd.updateSubscriptionsOnDisk()
+ }
+
// send out the response
subscribeCtxAvailabilityResp := SubscribeContextAvailabilityResponse{}
subscribeCtxAvailabilityResp.SubscriptionId = subID
@@ -423,6 +465,10 @@ func (fd *FastDiscovery) UnsubscribeContextAvailability(w rest.ResponseWriter, r
delete(fd.subscriptions, subID)
fd.subscriptions_lock.Unlock()
+ if fd.storeOnDisk {
+ go fd.updateSubscriptionsOnDisk()
+ }
+
// send out the response
unsubscribeCtxAvailabilityResp := UnsubscribeContextAvailabilityResponse{}
unsubscribeCtxAvailabilityResp.SubscriptionId = unsubscribeCtxAvailabilityReq.SubscriptionId
@@ -516,7 +562,12 @@ func (fd *FastDiscovery) onBrokerHeartbeat(w rest.ResponseWriter, r *rest.Reques
} else {
brokerProfile.Last_Heartbeat_Update = time.Now()
fd.BrokerList[brokerProfile.BID] = &brokerProfile
+
+ if fd.storeOnDisk {
+ go fd.updateBrokersOnDisk()
+ }
}
+
}
func (fd *FastDiscovery) checkBrokerList() {
@@ -527,6 +578,139 @@ func (fd *FastDiscovery) checkBrokerList() {
if brokerProfile.IsLive(fd.cfg.Broker.HeartbeatInterval*6) == false {
delete(fd.BrokerList, brokerID)
INFO.Println("REMOVE broker " + brokerID + " from the list")
+ if fd.storeOnDisk {
+ go fd.updateBrokersOnDisk()
+ }
}
}
}
+
+func (fd *FastDiscovery) updateSubscriptionsOnDisk() {
+
+ // This initial code is to avoid to write on file for every new subscriptions if
+ // they are arriving too close with each other in terms of time
+ // So here we check if the dblock was already taken without trying to take it
+ // if it is already taken then just return because the new subscription will be written
+ // by the already scheduled write to file
+ // If the lock is not taken, then take it and wait for 3 seconds.
+ // Then for the next 3 seconds other pursuer of storing on file will see that
+ // somebody has the lock
+
+ if fd.storeSubscriptionsOnFileScheduled {
+ INFO.Println("A store on file for registrations is already scheduled")
+ return
+ }
+
+ fd.subscriptionsDbLock.Lock()
+
+ fd.storeSubscriptionsOnFileScheduled = true
+
+ time.Sleep(time.Duration(fd.delayStoreOnFile) * time.Second)
+
+ fd.subscriptions_lock.RLock()
+
+ INFO.Println("Writing subscriptions into file")
+
+ defer fd.subscriptions_lock.RUnlock()
+ defer fd.subscriptionsDbLock.Unlock()
+
+ //...................................
+ //Writing struct type to a JSON file
+ //...................................
+ content, err := json.Marshal(fd.subscriptions)
+ if err != nil {
+ ERROR.Println(err)
+ }
+ // err = ioutil.WriteFile("subscriptions.json", content, 0644)
+ err = ioutil.WriteFile(fd.dbFiles["subscriptions"], content, 0644)
+ if err != nil {
+ ERROR.Println(err)
+ }
+
+ fd.storeSubscriptionsOnFileScheduled = false
+
+}
+
+func (fd *FastDiscovery) readSubscriptionsFromDisk() {
+
+ INFO.Println("Reading subscriptions from file")
+
+ fd.subscriptionsDbLock.Lock()
+ defer fd.subscriptionsDbLock.Unlock()
+
+ // content, err := ioutil.ReadFile("subscriptions.json")
+ content, err := ioutil.ReadFile(fd.dbFiles["subscriptions"])
+ if err != nil {
+ ERROR.Println(err)
+ }
+
+ err = json.Unmarshal(content, &fd.subscriptions)
+ if err != nil {
+ ERROR.Println(err)
+ }
+}
+
+func (fd *FastDiscovery) updateBrokersOnDisk() {
+
+ // This initial code is to avoid to write on file for every new subscriptions if
+ // they are arriving too close with each other in terms of time
+ // So here we check if the dblock was already taken without trying to take it
+ // if it is already taken then just return because the new subscription will be written
+ // by the already scheduled write to file
+ // If the lock is not taken, then take it and wait for 3 seconds.
+ // Then for the next 3 seconds other pursuer of storing on file will see that
+ // somebody has the lock
+
+ if fd.storeBrokersOnFileScheduled {
+ INFO.Println("A store on file for registrations is already scheduled")
+ return
+ }
+
+ fd.brokersDbLock.Lock()
+
+ fd.storeBrokersOnFileScheduled = true
+
+ time.Sleep(time.Duration(fd.delayStoreOnFile) * time.Second)
+
+ fd.broker_list_lock.RLock()
+
+ INFO.Println("Writing brokers into file")
+
+ defer fd.broker_list_lock.RUnlock()
+ defer fd.brokersDbLock.Unlock()
+
+ //...................................
+ //Writing struct type to a JSON file
+ //...................................
+ content, err := json.Marshal(fd.BrokerList)
+ if err != nil {
+ ERROR.Println(err)
+ }
+ // err = ioutil.WriteFile("brokers.json", content, 0644)
+ err = ioutil.WriteFile(fd.dbFiles["brokers"], content, 0644)
+ if err != nil {
+ ERROR.Println(err)
+ }
+
+ fd.storeBrokersOnFileScheduled = false
+
+}
+
+func (fd *FastDiscovery) readBrokersFromDisk() {
+
+ INFO.Println("Reading brokers from file")
+
+ fd.brokersDbLock.Lock()
+ defer fd.brokersDbLock.Unlock()
+
+ // content, err := ioutil.ReadFile("brokers.json")
+ content, err := ioutil.ReadFile(fd.dbFiles["brokers"])
+ if err != nil {
+ ERROR.Println(err)
+ }
+
+ err = json.Unmarshal(content, &fd.BrokerList)
+ if err != nil {
+ ERROR.Println(err)
+ }
+}
diff --git a/discovery/repository.go b/discovery/repository.go
index 8edefea8..a7fd799e 100644
--- a/discovery/repository.go
+++ b/discovery/repository.go
@@ -1,9 +1,13 @@
package main
import (
+ "encoding/json"
+ . "fogflow/common/config"
. "fogflow/common/ngsi"
+ "io/ioutil"
"sort"
"sync"
+ "time"
)
type Candidate struct {
@@ -20,12 +24,28 @@ type EntityRepository struct {
ctxRegistrationList_lock sync.RWMutex
// lock to control the update of database
- dbLock sync.RWMutex
+ dbLock sync.RWMutex
+ storeToFileScheduled bool
+ delayStoreRegistrationsOnFile int
+ registrationsOnDisk bool
+
+ dbFile string
}
-func (er *EntityRepository) Init() {
+func (er *EntityRepository) Init(config *Config) {
// initialize the registration list
er.ctxRegistrationList = make(map[string]*EntityRegistration)
+
+ er.storeToFileScheduled = false
+ er.registrationsOnDisk = config.Discovery.StoreOnDisk
+ //INFO.Println("config.Discovery.DelayStoreRegistrationsOnFile ", config.Discovery.DelayStoreStoreOnFile)
+ er.delayStoreRegistrationsOnFile = config.Discovery.DelayStoreOnFile
+
+ er.dbFile = "discoveryDB/registrations.json"
+
+ if er.registrationsOnDisk {
+ er.readRegistrationsFromDisk()
+ }
}
//
@@ -35,6 +55,11 @@ func (er *EntityRepository) Init() {
func (er *EntityRepository) updateEntity(entity EntityId, registration *ContextRegistration) *EntityRegistration {
updatedRegistration := er.updateRegistrationInMemory(entity, registration)
+ // If requested, update registrations on disk
+ if er.registrationsOnDisk {
+ er.updateRegistrationsOnDisk()
+ }
+
// return the latest view of the registration for this entity
return updatedRegistration
}
@@ -194,6 +219,12 @@ func (er *EntityRepository) deleteEntity(eid string) {
er.ctxRegistrationList_lock.Lock()
delete(er.ctxRegistrationList, eid)
er.ctxRegistrationList_lock.Unlock()
+
+ // If requested, update registrations on disk
+ if er.registrationsOnDisk {
+ er.updateRegistrationsOnDisk()
+ }
+
}
func (er *EntityRepository) ProviderLeft(providerURL string) {
@@ -204,6 +235,11 @@ func (er *EntityRepository) ProviderLeft(providerURL string) {
}
}
er.ctxRegistrationList_lock.Unlock()
+
+ // If requested, update registrations on disk
+ if er.registrationsOnDisk {
+ er.updateRegistrationsOnDisk()
+ }
}
func (er *EntityRepository) retrieveRegistration(entityID string) *EntityRegistration {
@@ -212,3 +248,68 @@ func (er *EntityRepository) retrieveRegistration(entityID string) *EntityRegistr
return er.ctxRegistrationList[entityID]
}
+
+func (er *EntityRepository) updateRegistrationsOnDisk() {
+
+ // This initial code is to avoid to write on file for every new subscriptions if
+ // they are arriving too close with each other in terms of time
+ // So here we check if the dblock was already taken without trying to take it
+ // if it is already taken then just return because the new subscription will be written
+ // by the already scheduled write to file
+ // If the lock is not taken, then take it and wait for 3 seconds.
+ // Then for the next 3 seconds other pursuer of storing on file will see that
+ // somebody has the lock
+
+ if er.storeToFileScheduled {
+ INFO.Println("A store on file for registrations is already scheduled")
+ return
+ }
+
+ er.dbLock.Lock()
+
+ er.storeToFileScheduled = true
+
+ time.Sleep(time.Duration(er.delayStoreRegistrationsOnFile) * time.Second)
+
+ er.ctxRegistrationList_lock.RLock()
+
+ INFO.Println("Writing registration into file")
+
+ defer er.ctxRegistrationList_lock.RUnlock()
+ defer er.dbLock.Unlock()
+
+ //...................................
+ //Writing struct type to a JSON file
+ //...................................
+ content, err := json.Marshal(er.ctxRegistrationList)
+ if err != nil {
+ ERROR.Println(err)
+ }
+ // err = ioutil.WriteFile("registrations.json", content, 0644)
+ err = ioutil.WriteFile(er.dbFile, content, 0644)
+ if err != nil {
+ ERROR.Println(err)
+ }
+
+ er.storeToFileScheduled = false
+
+}
+
+func (er *EntityRepository) readRegistrationsFromDisk() {
+
+ INFO.Println("Reading registrations from file")
+
+ er.dbLock.Lock()
+ defer er.dbLock.Unlock()
+
+ // content, err := ioutil.ReadFile("registrations.json")
+ content, err := ioutil.ReadFile(er.dbFile)
+ if err != nil {
+ ERROR.Println(err)
+ }
+
+ err = json.Unmarshal(content, &er.ctxRegistrationList)
+ if err != nil {
+ ERROR.Println(err)
+ }
+}
diff --git a/go.mod b/go.mod
index 63235cab..2ca1e93f 100644
--- a/go.mod
+++ b/go.mod
@@ -10,6 +10,7 @@ require (
github.com/lib/pq v1.10.1
github.com/mitchellh/mapstructure v1.4.1
github.com/piprate/json-gold v0.4.0
+ github.com/satori/go.uuid v1.2.0
github.com/securego/gosec v0.0.0-20200401082031-e946c8c39989 // indirect
github.com/sethgrid/pester v1.1.0
github.com/smartfog/fogflow v3.2.2+incompatible // indirect
diff --git a/go.sum b/go.sum
index bc25bf62..0fbf7d21 100644
--- a/go.sum
+++ b/go.sum
@@ -249,6 +249,8 @@ github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:
github.com/prometheus/procfs v0.0.0-20180125133057-cb4147076ac7/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
+github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww=
+github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=
github.com/securego/gosec v0.0.0-20200401082031-e946c8c39989 h1:rq2/kILQnPtq5oL4+IAjgVOjh5e2yj2aaCYi7squEvI=
github.com/securego/gosec v0.0.0-20200401082031-e946c8c39989/go.mod h1:i9l/TNj+yDFh9SZXUTvspXTjbFXgZGP/UvhU1S65A4A=
github.com/sethgrid/pester v1.1.0 h1:IyEAVvwSUPjs2ACFZkBe5N59BBUpSIkQ71Hr6cM5A+w=
diff --git a/master/build_k8s b/master/build_k8s
new file mode 100644
index 00000000..e7d7e8b7
--- /dev/null
+++ b/master/build_k8s
@@ -0,0 +1 @@
+docker image tag fogflow/master:latest fogflow/master:k8s
diff --git a/master/config.json b/master/config.json
deleted file mode 120000
index 1ef8152a..00000000
--- a/master/config.json
+++ /dev/null
@@ -1 +0,0 @@
-../docker/core/http/local/config.json
\ No newline at end of file
diff --git a/master/master.go b/master/master.go
index 26b2eb05..e88439cd 100644
--- a/master/master.go
+++ b/master/master.go
@@ -110,14 +110,21 @@ func (master *Master) Start(configuration *Config) {
for {
retry, err := master.communicator.StartConsuming(master.id, master)
if retry {
- ERROR.Printf("Going to retry launching the rabbitmq. Error:", err)
+ ERROR.Printf("Going to retry launching the edge node in 5 seconds. Error: %v", err)
+ time.Sleep(5 * time.Second)
numConnectionFailure += 1
- if numConnectionFailure > 10 {
- ERROR.Printf("break out after 10 failures, Error:", err)
+ if numConnectionFailure%5 == 0 {
+ INFO.Println("Re-initialize the communicator")
+ master.communicator = NewCommunicator(&cfg)
+ }
+ // Just stop the execution after try 10 times unless it is asked to continue trying
+ if !configuration.Worker.InfiniteReconnectionTries && numConnectionFailure > 10 {
+ ERROR.Printf("break out after 10 failures, Error: %v", err)
break
}
+ INFO.Println("number of connection failure to RabbitMQ: ", numConnectionFailure)
} else {
- ERROR.Printf("stop retrying, Error: ", err)
+ ERROR.Printf("stop retrying, Error: %v", err)
break
}
}
diff --git a/release/latest/cloud/config.json b/release/latest/cloud/config.json
index 70a763e6..175d0996 100644
--- a/release/latest/cloud/config.json
+++ b/release/latest/cloud/config.json
@@ -1,5 +1,5 @@
{
- "my_hostip": "192.168.0.59",
+ "my_hostip": "10.1.99.17",
"physical_location":{
"longitude": 139,
"latitude": 35
@@ -12,23 +12,32 @@
"debug": "stdout"
},
"discovery": {
- "http_port": 8090
+ "http_port": 8090,
+ "storeOnDisk": true,
+ "delayStoreOnFile" : 3
},
"broker": {
- "http_port": 8070
+ "http_port": 8070,
+ "heartbeat_interval": 30
},
"master": {
- "ngsi_agent_port": 1060
+ "ngsi_agent_port": 1060,
+ "rest_api_port": 8010,
+ "infinite_reconnection_tries": true
},
"worker": {
"container_autoremove": false,
"start_actual_task": true,
- "capacity": 8
+ "capacity": 8,
+ "heartbeat_interval": 30,
+ "detection_duration": 10,
+ "infinite_reconnection_tries": true
},
"designer": {
"webSrvPort": 8080,
"agentPort": 1030,
- "ldAgentPort":1090
+ "ldAgentPort":1090,
+ "doNotInitApplications":true
},
"rabbitmq": {
"port": 5672,
diff --git a/release/latest/cloud/designerDB/db.json.baclup b/release/latest/cloud/designerDB/db.json.baclup
new file mode 100644
index 00000000..2da758be
--- /dev/null
+++ b/release/latest/cloud/designerDB/db.json.baclup
@@ -0,0 +1,55 @@
+{
+ "devices": {
+ "62958e92-d39e-4b99-bb64-6627afefefff": {
+ "id": "62958e92-d39e-4b99-bb64-6627afefefff",
+ "type": "Temperature",
+ "attributes": {
+ "protocol": {
+ "type": "string",
+ "value": "NGSI-v1"
+ },
+ "url": {
+ "type": "string",
+ "value": "http://172.17.0.1:8080/photo/null"
+ },
+ "iconURL": {
+ "type": "string",
+ "value": "/photo/defaultIcon.png"
+ }
+ },
+ "metadata": {
+ "location": {
+ "type": "point",
+ "value": {
+ "latitude": 38.02033965176977,
+ "longitude": -1.169400215148926
+ }
+ }
+ },
+ "entityId": {
+ "id": "62958e92-d39e-4b99-bb64-6627afefefff",
+ "type": "Temperature",
+ "isPattern": false
+ }
+ }
+ },
+ "subscriptions": {
+ "c8f823bb-c186-11ed-b5dd-0242ac180005": {
+ "entity_type": "WeatherObserved",
+ "destination_broker": "NGSI-LD",
+ "reference_url": "http://172.17.0.1:7777",
+ "tenant": "ccoc"
+ },
+ "b19e4b34-c1a2-11ed-a4a7-0242ac1b0005": {
+ "entity_type": "WeatherObserved",
+ "destination_broker": "NGSI-LD",
+ "reference_url": "http://172.17.0.1:7777",
+ "tenant": "ccoc"
+ }
+ },
+ "operators": {},
+ "topologies": {},
+ "services": {},
+ "serviceintents": {},
+ "fogfunctions": {}
+}
\ No newline at end of file
diff --git a/release/latest/cloud/docker-compose.yml b/release/latest/cloud/docker-compose.yml
index 3ad7f767..5b4651b2 100644
--- a/release/latest/cloud/docker-compose.yml
+++ b/release/latest/cloud/docker-compose.yml
@@ -1,24 +1,28 @@
version: "3"
services:
- designer:
- image: fogflow/designer:latest
- volumes:
- - ./config.json:/app/config.json
- ports:
- - 8080:8080
- - 1030:1030
- - 1090:1090
- depends_on:
- - discovery
- - cloud_broker
- - dgraph
- - rabbitmq
- restart: always
+# designer:
+# image: fogflow/designer:latest
+# volumes:
+# - ./config.json:/app/config.json
+# - ./designerDB/:/app/public/data/meta/
+# ports:
+# - 8080:8080
+# - 1030:1030
+# - 1090:1090
+# depends_on:
+# - discovery
+# - cloud_broker
+# - rabbitmq
+# restart: always
discovery:
image: fogflow/discovery:latest
volumes:
- ./config.json:/config.json
+# - ./discoveryDB/registrations.json:/registrations.json
+# - ./discoveryDB/brokers.json:/brokers.json
+# - ./discoveryDB/subscriptions.json:/subscriptions.json
+ - ./discoveryDB/:/discoveryDB/
ports:
- 8090:8090
restart: always
@@ -31,6 +35,7 @@ services:
- rabbitmq
ports:
- 1060:1060
+ - 8010:8010
depends_on:
- rabbitmq
- discovery
@@ -74,13 +79,3 @@ services:
- discovery
- cloud_broker
restart: always
-
- dgraph:
- image: dgraph/standalone
- volumes:
- - ./dgraph:/dgraph
- ports:
- - 6080:6080
- - 8082:8080
- - 9082:9080
- - 8000:8000
diff --git a/release/latest/cloud/nginx.conf b/release/latest/cloud/nginx.conf
index bcb97334..474430b6 100644
--- a/release/latest/cloud/nginx.conf
+++ b/release/latest/cloud/nginx.conf
@@ -7,9 +7,9 @@ http {
listen 80;
server_name www.fogflow.io;
- location / {
- proxy_pass http://designer:8080/;
- }
+# location / {
+# proxy_pass http://designer:8080/;
+# }
location /ngsi9/ {
proxy_pass http://discovery:8090/ngsi9/;
diff --git a/release/latest/edge/config.json b/release/latest/edge/config.json
index 1173e6dc..f3df1e38 100644
--- a/release/latest/edge/config.json
+++ b/release/latest/edge/config.json
@@ -1,6 +1,6 @@
{
- "coreservice_ip": "192.168.0.59",
- "my_hostip": "192.168.0.16",
+ "coreservice_ip": "172.17.0.1",
+ "my_hostip": "172.17.0.1",
"physical_location":{
"longitude": 138.709059,
"latitude": 36.692221
@@ -16,12 +16,15 @@
"http_port": 8090
},
"broker": {
- "http_port": 8060
+ "http_port": 8060,
+ "heartbeat_interval": 30
},
"worker": {
"container_autoremove": false,
"start_actual_task": true,
- "capacity": 4
+ "capacity": 4,
+ "heartbeat_interval": 30,
+ "detection_duration": 10
},
"rabbitmq": {
"port": 5672,
diff --git a/worker/Dockerfile_multiarch b/worker/Dockerfile_multiarch
new file mode 100644
index 00000000..70ea2e1a
--- /dev/null
+++ b/worker/Dockerfile_multiarch
@@ -0,0 +1,6 @@
+FROM scratch
+ARG TARGETOS
+ARG TARGETARCH
+ADD /${TARGETOS}/${TARGETARCH}/worker /
+CMD ["/worker"]
+
diff --git a/worker/build b/worker/build
index 2d61c3fb..a205b3f7 100755
--- a/worker/build
+++ b/worker/build
@@ -28,9 +28,17 @@ case "${command}" in
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -a -installsuffix cgo -o worker_arm64
time docker build -f Dockerfile4Armv8 -t "fogflow/worker:arm64" .
;;
+ "multiarch")
+ go get
+ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -o linux/amd64/worker
+ CGO_ENABLED=0 GOOS=linux GOARCH=arm go build -a -installsuffix cgo -o linux/arm/worker
+ CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -a -installsuffix cgo -o linux/arm64/worker
+ time docker buildx build --platform linux/arm,linux/arm64,linux/amd64 --push -f ./Dockerfile_multiarch -t "fogflow/worker" .
+ ;;
+
*)
echo "Command not Found."
- echo "usage: ./build [multistage|development|arm|arm64]"
+ echo "usage: ./build [multistage|development|arm|arm64|multiarch]"
echo "For "development", "arm" or "arm64" options to work, golang must be setup in the system."
exit 127;
;;
diff --git a/worker/build_k8s b/worker/build_k8s
new file mode 100644
index 00000000..970dd1f0
--- /dev/null
+++ b/worker/build_k8s
@@ -0,0 +1 @@
+docker buildx build --platform linux/arm,linux/arm64,linux/amd64 --push -f ./Dockerfile_multiarch -t "fogflow/worker:k8s" .
diff --git a/worker/config.json b/worker/config.json
deleted file mode 120000
index 1ef8152a..00000000
--- a/worker/config.json
+++ /dev/null
@@ -1 +0,0 @@
-../docker/core/http/local/config.json
\ No newline at end of file
diff --git a/worker/worker.go b/worker/worker.go
index 273e0873..e66e8033 100644
--- a/worker/worker.go
+++ b/worker/worker.go
@@ -48,6 +48,8 @@ func (w *Worker) Start(config *Config) bool {
w.selectedBrokerURL = config.GetBrokerURL()
+ //INFO.Printf("InfiniteReconnectionTries: %v", config.Worker.InfiniteReconnectionTries)
+
// start the executor to interact with docker
w.executor = &Executor{}
if w.executor.Init(w.cfg, w.selectedBrokerURL, w) == false {
@@ -64,14 +66,18 @@ func (w *Worker) Start(config *Config) bool {
for {
retry, err := w.communicator.StartConsuming(w.id, w)
if retry {
- ERROR.Printf("Going to retry launching the edge node. Error: %v", err)
+ ERROR.Printf("Going to retry launching the edge node in 5 seconds. Error: %v", err)
+ time.Sleep(5 * time.Second)
numConnectionFailure += 1
- if numConnectionFailure > 10 {
+ if numConnectionFailure%5 == 0 {
+ INFO.Println("Re-initialize the communicator")
+ w.communicator = NewCommunicator(&cfg)
+ }
+ if !config.Worker.InfiniteReconnectionTries && numConnectionFailure > 10 {
ERROR.Printf("break out after 10 failures, Error: %v", err)
break
- } else {
- INFO.Println("number of connection failure to RabbitMQ: ", numConnectionFailure)
}
+ INFO.Println("number of connection failure to RabbitMQ: ", numConnectionFailure)
} else {
ERROR.Printf("break out, Error: %v", err)
break