diff --git a/README.md b/README.md index efc3e5a5f208b5725b83264e443904b20da252ad..3b098500cdd3acdebb94024a09902f066a011723 100644 --- a/README.md +++ b/README.md @@ -289,5 +289,5 @@ The following procedure should be used to upgrade a running MEC Sandbox deployme ## Licensing MEC Sandbox is a private repo with all rights reserved to ETSI. ``` -Copyright (c) 2020 ETSI. All rights reserved. +Copyright (c) 2022 ETSI. All rights reserved. ``` diff --git a/config/.meepctl-repocfg.yaml b/config/.meepctl-repocfg.yaml index 250319024d1ccce1206a93759485c81e8bdb3be4..5a0bed7472f7d42b73107637b3909bc9c51ce8e8 100644 --- a/config/.meepctl-repocfg.yaml +++ b/config/.meepctl-repocfg.yaml @@ -1,4 +1,18 @@ -version: 1.8.1 +# Copyright (c) 2022 The AdvantEDGE Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +version: 1.8.2 repo: name: AdvantEDGE @@ -49,7 +63,7 @@ repo: # session encryption key k8s secret (data: encryption-key) key-secret: meep-session # maximum simultaneous sessions - max-sessions: 9 + max-sessions: 10 # GitHub OAuth provider config github: # enable GitHub OAuth @@ -430,6 +444,7 @@ repo: meep-mon-engine-api: js-packages/meep-mon-engine-client meep-gis-engine-api: js-packages/meep-gis-engine-client meep-auth-svc-client: js-packages/meep-auth-svc-client + meep-metrics-engine-api: js-packages/meep-metrics-engine-client #------------------------------ # Sandbox Subsystem diff --git a/config/api/bwm-api.yaml b/config/api/bwm-api.yaml index 28a19429b2871afe6813d76a8eecbf790c561465..4c57bba456c549e5534806d6e8c3534ddfdcfe9d 100644 --- a/config/api/bwm-api.yaml +++ b/config/api/bwm-api.yaml @@ -426,21 +426,13 @@ components: requestType: 0 sessionFilter: - protocol: protocol - sourcePort: - - sourcePort - - sourcePort - dstPort: - - dstPort - - dstPort + sourcePort: sourcePort + dstPort: dstPort sourceIp: sourceIp dstAddress: dstAddress - protocol: protocol - sourcePort: - - sourcePort - - sourcePort - dstPort: - - dstPort - - dstPort + sourcePort: sourcePort + dstPort: dstPort sourceIp: sourceIp dstAddress: dstAddress appName: appName @@ -544,16 +536,18 @@ components: properties: dstAddress: type: string - description: Destination address identity of session (including range) + description: >- + Destination address identity of session. The string for a IPv4 + address shall be formatted in the "dotted decimal" notation as + defined in IETF RFC 1166 [10]. The string for a IPv6 address shall + be formatted according to clause 4 of IETF RFC 5952 [11], with in + CIDR notation [12] used to provide the routing prefix. x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String dstPort: - minItems: 0 - type: array description: Destination port identity of session - items: - type: string - x-etsi-mec-cardinality: 0..N + type: string + x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String protocol: type: string @@ -562,25 +556,23 @@ components: x-etsi-mec-origin-type: String sourceIp: type: string - description: Source address identity of session (including range) + description: >- + Source address identity of session. The string for a IPv4 address + shall be formatted in the "dotted decimal" notation as defined in + IETF RFC 1166 [10]. The string for a IPv6 address shall be formatted + according to clause 4 of IETF RFC 5952 [11], with in CIDR notation + [12] used to provide the routing prefix. x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String sourcePort: - minItems: 0 - type: array description: Source port identity of session - items: - type: string - x-etsi-mec-cardinality: 0..N + type: string + x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String example: protocol: protocol - sourcePort: - - sourcePort - - sourcePort - dstPort: - - dstPort - - dstPort + sourcePort: sourcePort + dstPort: dstPort sourceIp: sourceIp dstAddress: dstAddress BwInfo_timeStamp: @@ -613,16 +605,18 @@ components: properties: dstAddress: type: string - description: Destination address identity of session (including range) + description: >- + Destination address identity of session. The string for a IPv4 + address shall be formatted in the "dotted decimal" notation as + defined in IETF RFC 1166 [10]. The string for a IPv6 address shall + be formatted according to clause 4 of IETF RFC 5952 [11], with in + CIDR notation [12] used to provide the routing prefix. x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String dstPort: - minItems: 0 - type: array description: Destination port identity of session - items: - type: string - x-etsi-mec-cardinality: 0..N + type: string + x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String protocol: type: string @@ -631,16 +625,18 @@ components: x-etsi-mec-origin-type: String sourceIp: type: string - description: Source address identity of session (including range) + description: >- + Source address identity of session. The string for a IPv4 address + shall be formatted in the "dotted decimal" notation as defined in + IETF RFC 1166 [10]. The string for a IPv6 address shall be formatted + according to clause 4 of IETF RFC 5952 [11], with in CIDR notation + [12] used to provide the routing prefix. x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String sourcePort: - minItems: 0 - type: array description: 'Source port identity of session ' - items: - type: string - x-etsi-mec-cardinality: 0..N + type: string + x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String responses: "204": diff --git a/config/api/mts-api.yaml b/config/api/mts-api.yaml index b16494e62c3b1cf683f33be22f25f9a42281f723..7b83c63831a5a33d4020d9cbd73ec43c2cedfc94 100644 --- a/config/api/mts-api.yaml +++ b/config/api/mts-api.yaml @@ -458,24 +458,16 @@ components: flowFilter: - flowlabel: 1 protocol: 5 - sourcePort: - - 5 - - 5 + sourcePort: 5 dscp: 0 - dstPort: - - 6 - - 6 + dstPort: 6 sourceIp: sourceIp dstIp: dstIp - flowlabel: 1 protocol: 5 - sourcePort: - - 5 - - 5 + sourcePort: 5 dscp: 0 - dstPort: - - 6 - - 6 + dstPort: 6 sourceIp: sourceIp dstIp: dstIp requestType: 7 @@ -598,18 +590,20 @@ components: x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: Uint32 dstIp: + description: >- + Destination address identity of session. The string for a IPv4 + address shall be formatted in the "dotted decimal" notation as + defined in IETF RFC 1166 [10]. The string for a IPv6 address shall + be formatted according to clause 4 of IETF RFC 5952 [11], with in + CIDR notation [12] used to provide the routing prefix. type: string - description: Destination address identity of session (including range) x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String dstPort: - minItems: 0 - type: array description: Destination port identity of session - items: - type: integer - format: uint32 - x-etsi-mec-cardinality: 0..N + format: uint32 + type: integer + x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: Uint32 flowlabel: type: integer @@ -625,29 +619,27 @@ components: x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: Uint32 sourceIp: + description: >- + Source address identity of session. The string for a IPv4 address + shall be formatted in the "dotted decimal" notation as defined in + IETF RFC 1166 [10]. The string for a IPv6 address shall be formatted + according to clause 4 of IETF RFC 5952 [11], with in CIDR notation + [12] used to provide the routing prefix. type: string - description: Source address identity of session (including range) x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: String sourcePort: - minItems: 0 - type: array description: Source port identity of session - items: - type: integer - format: uint32 - x-etsi-mec-cardinality: 0..N + format: uint32 + type: integer + x-etsi-mec-cardinality: 0..1 x-etsi-mec-origin-type: Uint32 example: flowlabel: 1 protocol: 5 - sourcePort: - - 5 - - 5 + sourcePort: 5 dscp: 0 - dstPort: - - 6 - - 6 + dstPort: 6 sourceIp: sourceIp dstIp: dstIp MtsSessionInfo_qosD: diff --git a/config/api/vis-api.yaml b/config/api/vis-api.yaml index d2d6ceba3549489a9e5afd3a69d88e0c1c166e02..d7f12eaefb54ef3ba7e9d346a9b49678c19fcc8c 100644 --- a/config/api/vis-api.yaml +++ b/config/api/vis-api.yaml @@ -24,7 +24,7 @@ paths: /queries/uu_unicast_provisioning_info: get: tags: - - 'unsupported' + - 'v2xi' summary: 'Used to query provisioning information for V2X communication over Uu unicast.' description: 'Used to query provisioning information for V2X communication over Uu unicast.' operationId: prov_info_uu_unicastGET @@ -157,7 +157,7 @@ paths: /publish_v2x_message: post: tags: - - 'unsupported' + - 'v2xi' summary: 'Used to publish a V2X message.' description: 'Used to publish a V2X message.' operationId: v2x_messagePOST @@ -167,6 +167,11 @@ paths: application/json: schema: $ref: '#/components/schemas/V2xMsgPublication' + example: + msgContent: 'Hello World' + msgEncodeFormat: 'base64' + msgType: 1 + stdOrganization: 'ETSI' responses: '204': $ref: '#/components/responses/204' @@ -186,7 +191,7 @@ paths: /subscriptions: get: tags: - - 'unsupported' + - 'v2xi' summary: 'Request information about the subscriptions for this requestor.' description: 'Request information about the subscriptions for this requestor.' operationId: subGET @@ -204,6 +209,16 @@ paths: application/json: schema: $ref: '#/components/schemas/SubscriptionLinkList' + example: + _links: + self: + href: 'http://meAppServer.example.com/vis/v2/subscriptions' + subscription: + - _links: + self: + href: 'http://meAppServer.example.com/vis/v2/subscriptions/123' + callbackReference: 'http://my.callback.com/vis-v2x-msg/some-id' + subscriptionType: V2xMsgSubscription '400': $ref: '#/components/responses/400' '401': @@ -218,7 +233,7 @@ paths: $ref: '#/components/responses/429' post: tags: - - 'unsupported' + - 'v2xi' summary: ' create a new subscription to VIS notifications.' description: ' create a new subscription to VIS notifications.' operationId: subPOST @@ -232,6 +247,17 @@ paths: - $ref: '#/components/schemas/ProvChgUuMbmsSubscription' - $ref: '#/components/schemas/ProvChgPc5Subscription' - $ref: '#/components/schemas/V2xMsgSubscription' + example: + subscriptionType: V2xMsgSubscription + callbackReference: 'http://my.callback.com/vis-v2x-msg/some-id' + filterCriteria: + stdOrganization: 'ETSI' + msgType: + - 1 + - 2 + expiryDeadline: + seconds: 1977836800 + nanoseconds: 0 responses: '201': description: 'In the returned NotificationSubscription structure, the created subscription is described using the appropriate data type.' @@ -243,6 +269,20 @@ paths: - $ref: '#/components/schemas/ProvChgUuMbmsSubscription' - $ref: '#/components/schemas/ProvChgPc5Subscription' - $ref: '#/components/schemas/V2xMsgSubscription' + example: + subscriptionType: V2xMsgSubscription + callbackReference: 'http://my.callback.com/vis-v2x-msg/some-id' + _links: + self: + href: 'http://meAppServer.example.com/vis/v2/subscriptions/123' + filterCriteria: + stdOrganization: 'ETSI' + msgType: + - 1 + - 2 + expiryDeadline: + seconds: 1977836800 + nanoseconds: 0 '400': $ref: '#/components/responses/400' '401': @@ -293,7 +333,7 @@ paths: get: tags: - - 'unsupported' + - 'v2xi' summary: 'Retrieve information about this subscription.' description: 'Retrieve information about this subscription.' operationId: individualSubscriptionGET @@ -309,6 +349,20 @@ paths: - $ref: '#/components/schemas/ProvChgUuMbmsSubscription' - $ref: '#/components/schemas/ProvChgPc5Subscription' - $ref: '#/components/schemas/V2xMsgSubscription' + example: + subscriptionType: V2xMsgSubscription + callbackReference: 'http://my.callback.com/vis-v2x-msg/some-id' + _links: + self: + href: 'http://meAppServer.example.com/vis/v2/subscriptions/123' + filterCriteria: + stdOrganization: 'ETSI' + msgType: + - 1 + - 2 + expiryDeadline: + seconds: 1977836800 + nanoseconds: 0 '400': $ref: '#/components/responses/400' '401': @@ -324,7 +378,7 @@ paths: put: tags: - - 'unsupported' + - 'v2xi' summary: 'Used to update the existing subscription.' description: 'Used to update the existing subscription.' operationId: individualSubscriptionPUT @@ -338,6 +392,20 @@ paths: - $ref: '#/components/schemas/ProvChgUuMbmsSubscription' - $ref: '#/components/schemas/ProvChgPc5Subscription' - $ref: '#/components/schemas/V2xMsgSubscription' + example: + subscriptionType: V2xMsgSubscription + callbackReference: 'http://my.callback.com/vis-v2x-msg/some-id' + _links: + self: + href: 'http://meAppServer.example.com/vis/v2/subscriptions/123' + filterCriteria: + stdOrganization: 'ETSI' + msgType: + - 3 + - 4 + expiryDeadline: + seconds: 1977836800 + nanoseconds: 0 responses: '200': description: 'A response body containing data type describing the updated subscription is returned' @@ -349,6 +417,21 @@ paths: - $ref: '#/components/schemas/ProvChgUuMbmsSubscription' - $ref: '#/components/schemas/ProvChgPc5Subscription' - $ref: '#/components/schemas/V2xMsgSubscription' + example: + example: + subscriptionType: V2xMsgSubscription + callbackReference: 'http://my.callback.com/vis-v2x-msg/some-id' + _links: + self: + href: 'http://meAppServer.example.com/vis/v2/subscriptions/123' + filterCriteria: + stdOrganization: 'ETSI' + msgType: + - 3 + - 4 + expiryDeadline: + seconds: 1977836800 + nanoseconds: 0 '400': $ref: '#/components/responses/400' '401': @@ -373,7 +456,7 @@ paths: $ref: '#/components/responses/429' delete: tags: - - 'unsupported' + - 'v2xi' summary: 'Used to cancel the existing subscription.' description: 'Used to cancel the existing subscription.' operationId: individualSubscriptionDELETE @@ -1502,7 +1585,7 @@ components: msgType: description: Subscribed V2X message type. Its value is defined by the standardization organization indicated by the attribute stdOrganization. See note 3. items: - type: string + type: integer minItems: 0 type: array x-etsi-mec-cardinality: 0..N diff --git a/config/permissions.yaml b/config/permissions.yaml index 2258c6c5f9c09e11461a607665e7134454b21fc8..0897cc5bb40b321f2ab4b8a74ba86c7fe29a6a66 100644 --- a/config/permissions.yaml +++ b/config/permissions.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2020 InterDigital Communications, Inc +# Copyright (c) 2022 InterDigital Communications, Inc # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/js-apps/frontend/src/css/app-controller.scss b/js-apps/frontend/src/css/app-controller.scss index b8da521b90f54879f49014acf18e113644a01bc3..0dbcf47c311bd23f6c623fef6820a29bb4abc786 100755 --- a/js-apps/frontend/src/css/app-controller.scss +++ b/js-apps/frontend/src/css/app-controller.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ // MDC global variable overrides diff --git a/js-apps/frontend/src/index.html b/js-apps/frontend/src/index.html index 40f0e5bf4dc361e18d70feeed5c6a68a07a17c83..8ebbefa0df4c3e9102c6f9c29f7a23c25cc82f9f 100755 --- a/js-apps/frontend/src/index.html +++ b/js-apps/frontend/src/index.html @@ -1,5 +1,5 @@ diff --git a/js-apps/frontend/src/js/app-constants.js b/js-apps/frontend/src/js/app-constants.js index c935e14ec2e6b26cf387cb8b0397d5eccdd9de30..6d15f43f894864ef1a64719f87720838ba71be0f 100644 --- a/js-apps/frontend/src/js/app-constants.js +++ b/js-apps/frontend/src/js/app-constants.js @@ -1,9 +1,9 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ // Version -export const MEC_SANDBOX_VERSION = 'v1.8'; +export const MEC_SANDBOX_VERSION = 'v1.9'; // Host export const HOST_PATH = location.origin; diff --git a/js-apps/frontend/src/js/app-controller.js b/js-apps/frontend/src/js/app-controller.js index 194d0857a27bf9c78796e17d200ebc0fab6776c0..1768a88b4f3d4780975a60841ed09fe53f65b8e5 100755 --- a/js-apps/frontend/src/js/app-controller.js +++ b/js-apps/frontend/src/js/app-controller.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ // Import CSS diff --git a/js-apps/frontend/src/js/components/dialogs/basic-dialog.js b/js-apps/frontend/src/js/components/dialogs/basic-dialog.js index 4893bc7059eff5f4db7662c5a25df89fe053e31e..023a57e3de550593bb33481eac946e7123c4321e 100644 --- a/js-apps/frontend/src/js/components/dialogs/basic-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/basic-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/confirm-delete-app-dialog.js b/js-apps/frontend/src/js/components/dialogs/confirm-delete-app-dialog.js index e1138f270952ed90e12e3984bcc7f9d759945e58..f6c6105a5cf1dadcc8d4104e8421cf99f2977878 100644 --- a/js-apps/frontend/src/js/components/dialogs/confirm-delete-app-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/confirm-delete-app-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/create-new-app-dialog.js b/js-apps/frontend/src/js/components/dialogs/create-new-app-dialog.js index bfa3a054f30298baedaa3f0dbc8479e5cd9a37d6..92ef7e6b22d356414c666d8630fc7d2fcdafd644 100644 --- a/js-apps/frontend/src/js/components/dialogs/create-new-app-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/create-new-app-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/detailed-data-dialog.js b/js-apps/frontend/src/js/components/dialogs/detailed-data-dialog.js index a99af075d64b46b3ee9dabf6dd593d3c67c9d270..3c623e852795d909259e97662a0ab044b3dfadf5 100644 --- a/js-apps/frontend/src/js/components/dialogs/detailed-data-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/detailed-data-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/help-getting-started-dialog.js b/js-apps/frontend/src/js/components/dialogs/help-getting-started-dialog.js index faab93a7f64a54207533078d963139a307d71996..7a3a4738001416c502a88291ebc74cf32878428e 100644 --- a/js-apps/frontend/src/js/components/dialogs/help-getting-started-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/help-getting-started-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/session-terminated-dialog.js b/js-apps/frontend/src/js/components/dialogs/session-terminated-dialog.js index 69c259eaeb9af0032a38ef56acccaf7cce36cf79..5a5729ee7256f1249d02684c60fcbecb030cea66 100644 --- a/js-apps/frontend/src/js/components/dialogs/session-terminated-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/session-terminated-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/sign-in-dialog.js b/js-apps/frontend/src/js/components/dialogs/sign-in-dialog.js index 8486030dace7451202b45b4434476bd594766363..5567c23895b5f1fc999765da94ef002cdf399446 100644 --- a/js-apps/frontend/src/js/components/dialogs/sign-in-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/sign-in-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/sign-in-oauth-dialog.js b/js-apps/frontend/src/js/components/dialogs/sign-in-oauth-dialog.js index 29a3d3ed16facbf89785504f9089a1f156b15d81..5bc05c5077f79ce4425917f216365327f57b4ecf 100644 --- a/js-apps/frontend/src/js/components/dialogs/sign-in-oauth-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/sign-in-oauth-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/sign-in-wait-dialog.js b/js-apps/frontend/src/js/components/dialogs/sign-in-wait-dialog.js index 77d0ef1b3ad97f4000538433852c0410991f5d07..246de2c9264c7818887927a58618058420344927 100644 --- a/js-apps/frontend/src/js/components/dialogs/sign-in-wait-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/sign-in-wait-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/dialogs/version-dialog.js b/js-apps/frontend/src/js/components/dialogs/version-dialog.js index dd3bb07bd06157f5e8afe6e9b383788e6c66c0a9..9de8e6a85c0b9d000f6fc68e49ba28e27964adf7 100644 --- a/js-apps/frontend/src/js/components/dialogs/version-dialog.js +++ b/js-apps/frontend/src/js/components/dialogs/version-dialog.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React, { Component } from 'react'; diff --git a/js-apps/frontend/src/js/components/footer.js b/js-apps/frontend/src/js/components/footer.js index 100d012f5e1c420d748dd99f25c8c4c6a79e352b..919f0f59a111849febcf4fba5e9583e35cb5c8a9 100644 --- a/js-apps/frontend/src/js/components/footer.js +++ b/js-apps/frontend/src/js/components/footer.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import React from 'react'; @@ -23,7 +23,7 @@ const Footer = () => { - © Copyright 2021, ETSI + © Copyright 2021-2023, ETSI
diff --git a/js-apps/frontend/src/js/containers/app-container.js b/js-apps/frontend/src/js/containers/app-container.js index 90b1575b0cb319d45a88698a6f66682566a64043..36b906c35de46541243fde16beb5f474399981fe 100644 --- a/js-apps/frontend/src/js/containers/app-container.js +++ b/js-apps/frontend/src/js/containers/app-container.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import _ from 'lodash'; diff --git a/js-apps/frontend/src/js/containers/dashboard/dashboard-page-container.js b/js-apps/frontend/src/js/containers/dashboard/dashboard-page-container.js index 053d2cc578c50f2aab65bba41d13e7edce4766eb..fc7a89d842a005d05a835e7fbca4c838f2623237 100644 --- a/js-apps/frontend/src/js/containers/dashboard/dashboard-page-container.js +++ b/js-apps/frontend/src/js/containers/dashboard/dashboard-page-container.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { connect } from 'react-redux'; diff --git a/js-apps/frontend/src/js/containers/home/home-page-container.js b/js-apps/frontend/src/js/containers/home/home-page-container.js index 755d2c7e7c047305b57c7f8419d7df9b14ff8975..a6053f6cd8130dc2358b9660e035347b04810ad6 100644 --- a/js-apps/frontend/src/js/containers/home/home-page-container.js +++ b/js-apps/frontend/src/js/containers/home/home-page-container.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { connect } from 'react-redux'; diff --git a/js-apps/frontend/src/js/containers/sandbox/api-pane.js b/js-apps/frontend/src/js/containers/sandbox/api-pane.js index 9013a8f95d1cdbf87a40d925d567bd6e291855b5..607d67316e1096144b3c2622f85e04994ea7e6a9 100644 --- a/js-apps/frontend/src/js/containers/sandbox/api-pane.js +++ b/js-apps/frontend/src/js/containers/sandbox/api-pane.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import _ from 'lodash'; diff --git a/js-apps/frontend/src/js/containers/sandbox/api-table.js b/js-apps/frontend/src/js/containers/sandbox/api-table.js index 53640dc36053a5a06f290dc7cfa01c42c42101a3..ffdc0cc806e8925621a34a358daa47884b6bb12f 100644 --- a/js-apps/frontend/src/js/containers/sandbox/api-table.js +++ b/js-apps/frontend/src/js/containers/sandbox/api-table.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import PropTypes from 'prop-types'; diff --git a/js-apps/frontend/src/js/containers/sandbox/app-instance-info.js b/js-apps/frontend/src/js/containers/sandbox/app-instance-info.js index 43dde4e8ff704ad90c79955e15056e6c97eccdad..b4378f15ec46d70dd495c23146faf443e1b9d8b5 100644 --- a/js-apps/frontend/src/js/containers/sandbox/app-instance-info.js +++ b/js-apps/frontend/src/js/containers/sandbox/app-instance-info.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { connect } from 'react-redux'; diff --git a/js-apps/frontend/src/js/containers/sandbox/app-instance-table.js b/js-apps/frontend/src/js/containers/sandbox/app-instance-table.js index f300860b69c98c735f3c27672784b4defcbe739f..9b6b5d4d5d320c09eb94a6ef83f89d897d5c6da8 100644 --- a/js-apps/frontend/src/js/containers/sandbox/app-instance-table.js +++ b/js-apps/frontend/src/js/containers/sandbox/app-instance-table.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import PropTypes from 'prop-types'; diff --git a/js-apps/frontend/src/js/containers/sandbox/configuration-pane.js b/js-apps/frontend/src/js/containers/sandbox/configuration-pane.js index 9541deef6b0ab1a78bb699fb5bdce3d63b6a72a2..faccb2dedec9380ebc6ae025c3ba5ea97c812219 100644 --- a/js-apps/frontend/src/js/containers/sandbox/configuration-pane.js +++ b/js-apps/frontend/src/js/containers/sandbox/configuration-pane.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { connect } from 'react-redux'; diff --git a/js-apps/frontend/src/js/containers/sandbox/map-info.js b/js-apps/frontend/src/js/containers/sandbox/map-info.js index 0dbce862d881d5df75f610550bbbc99151439897..2d3d0c49c7d8f4abc2ce218582a1cbf6c0ec1ffc 100644 --- a/js-apps/frontend/src/js/containers/sandbox/map-info.js +++ b/js-apps/frontend/src/js/containers/sandbox/map-info.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { connect } from 'react-redux'; diff --git a/js-apps/frontend/src/js/containers/sandbox/sandbox-page-container.js b/js-apps/frontend/src/js/containers/sandbox/sandbox-page-container.js index 409e2dcdbb14fb2a45758e07aeffb8368853a20d..70a5ccbdee9ff087a3f19f9c802ea1511311437a 100644 --- a/js-apps/frontend/src/js/containers/sandbox/sandbox-page-container.js +++ b/js-apps/frontend/src/js/containers/sandbox/sandbox-page-container.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import _ from 'lodash'; diff --git a/js-apps/frontend/src/js/containers/sandbox/try-it.js b/js-apps/frontend/src/js/containers/sandbox/try-it.js index 1ef419d358167ca7e61ef37f1351d06102a31793..7d810255c341bccb9635bb9d5ad91d57ba8f56ef 100644 --- a/js-apps/frontend/src/js/containers/sandbox/try-it.js +++ b/js-apps/frontend/src/js/containers/sandbox/try-it.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { connect } from 'react-redux'; diff --git a/js-apps/frontend/src/js/containers/top-bar-container.js b/js-apps/frontend/src/js/containers/top-bar-container.js index 67921bfbd0730d4b266abb071c1e78e9da4aed8e..a5c78c562f6924847dd02669715d515e8dd30dd2 100644 --- a/js-apps/frontend/src/js/containers/top-bar-container.js +++ b/js-apps/frontend/src/js/containers/top-bar-container.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { connect } from 'react-redux'; diff --git a/js-apps/frontend/src/js/state/app-reducer.js b/js-apps/frontend/src/js/state/app-reducer.js index c5e32cab8c60e3f92b4cbe802b3aed0bacd014a1..92ca4a46453bab644b7d9d4fde409bce0a4d3707 100644 --- a/js-apps/frontend/src/js/state/app-reducer.js +++ b/js-apps/frontend/src/js/state/app-reducer.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { combineReducers } from 'redux'; diff --git a/js-apps/frontend/src/js/state/sbox/api-table-reducer.js b/js-apps/frontend/src/js/state/sbox/api-table-reducer.js index 4ac1ec8d21c70e9bfa4e0639484bdba558f25ee3..e4a7d6ea08abde4b138d06f9b3361f290a08c09b 100644 --- a/js-apps/frontend/src/js/state/sbox/api-table-reducer.js +++ b/js-apps/frontend/src/js/state/sbox/api-table-reducer.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { updateObject } from '../../util/object-util'; diff --git a/js-apps/frontend/src/js/state/sbox/app-instance-table-reducer.js b/js-apps/frontend/src/js/state/sbox/app-instance-table-reducer.js index 9c4500b5c9d178e8b9cd51b5bbe1eb24fc4825cc..8773196aba848a8b0ea970d5cb9066a43775bee3 100644 --- a/js-apps/frontend/src/js/state/sbox/app-instance-table-reducer.js +++ b/js-apps/frontend/src/js/state/sbox/app-instance-table-reducer.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { updateObject } from '../../util/object-util'; diff --git a/js-apps/frontend/src/js/state/sbox/index.js b/js-apps/frontend/src/js/state/sbox/index.js index caa46f17357bf0b3af9cd2c01f65a9fdd180d15f..94d5a991b713bfebb0765d0f8146f1442476f633 100644 --- a/js-apps/frontend/src/js/state/sbox/index.js +++ b/js-apps/frontend/src/js/state/sbox/index.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { combineReducers } from 'redux'; diff --git a/js-apps/frontend/src/js/state/sbox/map-reducer.js b/js-apps/frontend/src/js/state/sbox/map-reducer.js index 1b59c384747b6672e55b9359f8c4d413cd962b0c..ef709a5bd914b59ccd353b02d0212acc82b0219b 100644 --- a/js-apps/frontend/src/js/state/sbox/map-reducer.js +++ b/js-apps/frontend/src/js/state/sbox/map-reducer.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { updateObject } from '../../util/object-util'; diff --git a/js-apps/frontend/src/js/state/sbox/scenario-reducer.js b/js-apps/frontend/src/js/state/sbox/scenario-reducer.js index 234bfc83143b19029a47c20797ccb218c477d8ad..268ad07b49d7e5c43d9079b1978809871f967426 100644 --- a/js-apps/frontend/src/js/state/sbox/scenario-reducer.js +++ b/js-apps/frontend/src/js/state/sbox/scenario-reducer.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { updateObject } from '../../util/object-util'; diff --git a/js-apps/frontend/src/js/state/sbox/svc-table-reducer.js b/js-apps/frontend/src/js/state/sbox/svc-table-reducer.js index 01187d227591421f764e024c17948e131294f44b..ac70d67e9e95d95b687fd561c7e631476f081b10 100644 --- a/js-apps/frontend/src/js/state/sbox/svc-table-reducer.js +++ b/js-apps/frontend/src/js/state/sbox/svc-table-reducer.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { updateObject } from '../../util/object-util'; diff --git a/js-apps/frontend/src/js/state/sbox/table-reducer.js b/js-apps/frontend/src/js/state/sbox/table-reducer.js index 4624bb7a30b24b51ee131da41eb720d96989dfe8..44afb4541fd65de855d95bd76fcf828f9109df1a 100644 --- a/js-apps/frontend/src/js/state/sbox/table-reducer.js +++ b/js-apps/frontend/src/js/state/sbox/table-reducer.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { updateObject } from '../../util/object-util'; diff --git a/js-apps/frontend/src/js/state/ui/index.js b/js-apps/frontend/src/js/state/ui/index.js index 8a542f9b725200262f9830b11605cae287527602..ff0c309c063faf47bd1d577a5ef54dcd7f8de8be 100644 --- a/js-apps/frontend/src/js/state/ui/index.js +++ b/js-apps/frontend/src/js/state/ui/index.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import { updateObject } from '../../util/object-util'; diff --git a/js-apps/frontend/src/js/util/elem-utils.js b/js-apps/frontend/src/js/util/elem-utils.js index 2edeaff947075f0072030556de454d8593fc33b1..6cbc7b70e33d4e847aa33083d36e1cca5e489096 100644 --- a/js-apps/frontend/src/js/util/elem-utils.js +++ b/js-apps/frontend/src/js/util/elem-utils.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ // Network Element Fields diff --git a/js-apps/frontend/src/js/util/functional.js b/js-apps/frontend/src/js/util/functional.js index 6fd9acc1a95817ca79c75e16fa8b2f31d717c0a8..6c96a6899115a93239249b7861b2ac3c7efb2316 100644 --- a/js-apps/frontend/src/js/util/functional.js +++ b/js-apps/frontend/src/js/util/functional.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ export const pipe = (...fns) => val => fns.reduce((acc, f) => f(acc), val); diff --git a/js-apps/frontend/src/js/util/meta-keys.js b/js-apps/frontend/src/js/util/meta-keys.js index ef8be89a80d53e705d428887713db6180ba69638..5394688b7f70e622eac3ac9bee1a9a3fbc8ddde4 100644 --- a/js-apps/frontend/src/js/util/meta-keys.js +++ b/js-apps/frontend/src/js/util/meta-keys.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ const META_DISPLAY = 'display'; diff --git a/js-apps/frontend/src/js/util/object-util.js b/js-apps/frontend/src/js/util/object-util.js index 5f412edcc70412f79c88bb9df0af29659dc42e6e..5276a288cfc732f5fce33a43cc85d9454ba57d3f 100644 --- a/js-apps/frontend/src/js/util/object-util.js +++ b/js-apps/frontend/src/js/util/object-util.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ export function updateObject(oldObject, newValues) { diff --git a/js-apps/frontend/src/js/util/persist.js b/js-apps/frontend/src/js/util/persist.js index 02c38ead31ee1941e2d0da2e81c1c47abe7b2fe7..d832801805c3031a9e34b6d710e3831139b6039b 100644 --- a/js-apps/frontend/src/js/util/persist.js +++ b/js-apps/frontend/src/js/util/persist.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ // Will persist the app state between browser refresh diff --git a/js-apps/frontend/src/js/util/scenario-utils.js b/js-apps/frontend/src/js/util/scenario-utils.js index 474047afd714f152555e836e76678c6a565ccd72..adaccc49b01a8c285da4d779f118fd7f5db17d4d 100644 --- a/js-apps/frontend/src/js/util/scenario-utils.js +++ b/js-apps/frontend/src/js/util/scenario-utils.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ import _ from 'lodash'; diff --git a/js-apps/frontend/src/js/util/string-manipulation.js b/js-apps/frontend/src/js/util/string-manipulation.js index 85afce97810467d80564ce8fe9c70bb93f95e62d..e30101c7642a5d0a2fd009b8c1ebda5ae349bd6c 100644 --- a/js-apps/frontend/src/js/util/string-manipulation.js +++ b/js-apps/frontend/src/js/util/string-manipulation.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ export const firstLetterUpper = str => { diff --git a/js-apps/frontend/src/js/util/table-utils.js b/js-apps/frontend/src/js/util/table-utils.js index 5c3689ccca84771cb79c17442e8b239d97f6099c..01601c5c9793b8ceaab46473dca87df90670d4c7 100644 --- a/js-apps/frontend/src/js/util/table-utils.js +++ b/js-apps/frontend/src/js/util/table-utils.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 ETSI. All rights reserved. + * Copyright (c) 2022 ETSI. All rights reserved. */ function getSorting(order, orderBy) { diff --git a/networks/4g-5g-macro-v2x.yaml b/networks/4g-5g-macro-v2x.yaml index ba06960e4432004f789478365119a25be121db8d..f0e0cb272ca7d91528f11bca3da4e8ff2d40d789 100644 --- a/networks/4g-5g-macro-v2x.yaml +++ b/networks/4g-5g-macro-v2x.yaml @@ -1,5353 +1,5355 @@ -version: 1.8.1 -name: 4g-5g-macro-v2x -deployment: - netChar: - latency: 50 - latencyVariation: 10 - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - throughput: null - packetLoss: null - connectivity: - model: OPEN - userMeta: - mec-sandbox: '{"defaultStaticUeCount": 1, "defaultLowVelocityUeCount": 1, "defaultHighVelocityUeCount": 1, "highVelocitySpeedThreshold": 10}' - network-info: '{"type": "local", "path":"4G-Macro-Network-Topology.png"}' - domains: - - - id: PUBLIC - name: PUBLIC - type: PUBLIC - netChar: - latency: 6 - latencyVariation: 2 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - zones: - - - id: PUBLIC-COMMON - name: PUBLIC-COMMON - type: COMMON - netChar: - latency: 5 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - networkLocations: - - - id: PUBLIC-COMMON-DEFAULT - name: PUBLIC-COMMON-DEFAULT - type: DEFAULT - netChar: - latency: 1 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poa5GConfig: null - poaWifiConfig: null - geoData: null - physicalLocations: null - interFogLatency: null - interFogLatencyVariation: null - interFogThroughput: null - interFogPacketLoss: null - interEdgeLatency: null - interEdgeLatencyVariation: null - interEdgeThroughput: null - interEdgePacketLoss: null - edgeFogLatency: null - edgeFogLatencyVariation: null - edgeFogThroughput: null - edgeFogPacketLoss: null - meta: null - userMeta: null - interZoneLatency: null - interZoneLatencyVariation: null - interZoneThroughput: null - interZonePacketLoss: null - meta: null - userMeta: null - cellularDomainConfig: null - - - id: f1c5f2fe-5fbb-48fa-a0df-6ad00e4eeb4c - name: sandbox-operator - type: OPERATOR-CELLULAR - netChar: - latency: 6 - latencyVariation: 2 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - cellularDomainConfig: - mnc: '001' - mcc: '001' - defaultCellId: FFFFFFF - zones: - - - id: sandbox-operator-COMMON - name: sandbox-operator-COMMON - type: COMMON - netChar: - latency: 5 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - networkLocations: - - - id: sandbox-operator-COMMON-DEFAULT - name: sandbox-operator-COMMON-DEFAULT - type: DEFAULT - netChar: - latency: 1 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poa5GConfig: null - poaWifiConfig: null - geoData: null - physicalLocations: null - interFogLatency: null - interFogLatencyVariation: null - interFogThroughput: null - interFogPacketLoss: null - interEdgeLatency: null - interEdgeLatencyVariation: null - interEdgeThroughput: null - interEdgePacketLoss: null - edgeFogLatency: null - edgeFogLatencyVariation: null - edgeFogThroughput: null - edgeFogPacketLoss: null - meta: null - userMeta: null - - - id: 6fd7e9d1-3646-474d-880b-d4a21799d280 - name: zone01 - type: ZONE - netChar: - latency: 5 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - meta: - display.map.color: blueviolet - networkLocations: - - - id: zone01-DEFAULT - name: zone01-DEFAULT - type: DEFAULT - netChar: - latency: 1 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - physicalLocations: - - - id: 138c1c53-7f25-4c52-a025-3b607da5f97a - name: mep1 - type: EDGE - geoData: - location: - type: Point - coordinates: - - 7.421096 - - 43.73408 - radius: null - path: null - eopMode: null - velocity: null - connected: true - dataNetwork: {dnn: null, ladn: null, ecsp: null} - processes: - - - id: 62cc2936-af22-4946-b3e5-5b9143d7203f - name: mec011-1 - type: EDGE-APP - image: 'meep-docker-registry:30001/meep-app-enablement' - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - isExternal: null - environment: null - commandArguments: null - commandExe: null - serviceConfig: null - gpuConfig: null - memoryConfig: null - cpuConfig: null - externalConfig: null - status: null - userChartLocation: null - userChartAlternateValues: null - userChartGroup: null - meta: null - userMeta: null - appLatency: null - appLatencyVariation: null - appThroughput: null - appPacketLoss: null - placementId: null - - - id: b8a203be-ac81-45a6-8d88-fdb1f8f5393b - name: mec012-1 - type: EDGE-APP - image: 'meep-docker-registry:30001/meep-rnis' - environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - isExternal: null - commandArguments: null - commandExe: null - serviceConfig: null - gpuConfig: null - memoryConfig: null - cpuConfig: null - externalConfig: null - status: null - userChartLocation: null - userChartAlternateValues: null - userChartGroup: null - meta: null - userMeta: null - appLatency: null - appLatencyVariation: null - appThroughput: null - appPacketLoss: null - placementId: null - - - id: 298b2c0c-7efa-45d3-8b47-8ab3c009b845 - name: mec013-1 - type: EDGE-APP - image: 'meep-docker-registry:30001/meep-loc-serv' - environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - isExternal: null - commandArguments: null - commandExe: null - serviceConfig: null - gpuConfig: null - memoryConfig: null - cpuConfig: null - externalConfig: null - status: null - userChartLocation: null - userChartAlternateValues: null - userChartGroup: null - meta: null - userMeta: null - appLatency: null - appLatencyVariation: null - appThroughput: null - appPacketLoss: null - placementId: null - - - id: f1e4d448-e277-496b-bf63-98391cfd20fb - name: mec015-1 - type: EDGE-APP - image: 'meep-docker-registry:30001/meep-tm' - environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - isExternal: null - commandArguments: null - commandExe: null - serviceConfig: null - gpuConfig: null - memoryConfig: null - cpuConfig: null - externalConfig: null - status: null - userChartLocation: null - userChartAlternateValues: null - userChartGroup: null - meta: null - userMeta: null - appLatency: null - appLatencyVariation: null - appThroughput: null - appPacketLoss: null - placementId: null - - - id: fb4d3c6a-197e-4e3f-96ae-ab4d5ac663a9 - name: mec016-1 - type: EDGE-APP - image: 'meep-docker-registry:30001/meep-dai' - environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - isExternal: null - commandArguments: null - commandExe: null - serviceConfig: null - gpuConfig: null - memoryConfig: null - cpuConfig: null - externalConfig: null - status: null - userChartLocation: null - userChartAlternateValues: null - userChartGroup: null - meta: null - userMeta: null - appLatency: null - appLatencyVariation: null - appThroughput: null - appPacketLoss: null - placementId: null - - - id: b8ae165a-a1e3-4d6c-86d9-52c59ad314b6 - name: mec028-1 - type: EDGE-APP - image: 'meep-docker-registry:30001/meep-wais' - environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - isExternal: null - commandArguments: null - commandExe: null - serviceConfig: null - gpuConfig: null - memoryConfig: null - cpuConfig: null - externalConfig: null - status: null - userChartLocation: null - userChartAlternateValues: null - userChartGroup: null - meta: null - userMeta: null - appLatency: null - appLatencyVariation: null - appThroughput: null - appPacketLoss: null - placementId: null - - - id: 5015e45f-be53-4e28-8f47-c107fd1dea8c - name: mec030-1 - type: EDGE-APP - image: 'meep-docker-registry:30001/meep-vis' - environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false,MEEP_PREDICT_MODEL_SUPPORTED=true' - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - isExternal: null - commandArguments: null - commandExe: null - serviceConfig: null - gpuConfig: null - memoryConfig: null - cpuConfig: null - externalConfig: null - status: null - userChartLocation: null - userChartAlternateValues: null - userChartGroup: null - meta: null - userMeta: null - appLatency: null - appLatencyVariation: null - appThroughput: null - appPacketLoss: null - placementId: null - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - isExternal: null - networkLocationsInRange: null - wireless: null - wirelessType: null - meta: null - userMeta: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - macId: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poa5GConfig: null - poaWifiConfig: null - geoData: null - - - id: 3480e529-3fc1-44b8-a892-42bbbfa4018f - name: 4g-macro-cell-1 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '1010101' - geoData: - location: - type: Point - coordinates: - - 7.419344 - - 43.72764 - radius: 400 - path: null - eopMode: null - velocity: null - physicalLocations: - - - id: 3331ee44-2236-1111-0020-5a3c2bde0eaa - name: 10.10.0.4 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.420433 - - 43.729942 - path: - type: LineString - coordinates: - - - - 7.420433 - - 43.729942 - - - - 7.420659 - - 43.73036 - - - - 7.420621 - - 43.731045 - - - - 7.420922 - - 43.73129 - - - - 7.421345 - - 43.731373 - - - - 7.42135 - - 43.73168 - - - - 7.421148 - - 43.73173 - - - - 7.420616 - - 43.731964 - - - - 7.419779 - - 43.732197 - - - - 7.419111 - - 43.732353 - - - - 7.418931 - - 43.732315 - - - - 7.418345 - - 43.731964 - - - - 7.418319 - - 43.73186 - - - - 7.418024 - - 43.73179 - - - - 7.41796 - - 43.731728 - - - - 7.417729 - - 43.731743 - - - - 7.417463 - - 43.731632 - - - - 7.417507 - - 43.73148 - - - - 7.417428 - - 43.731407 - - - - 7.417343 - - 43.731396 - - - - 7.417334 - - 43.731133 - - - - 7.417317 - - 43.73053 - - - - 7.417164 - - 43.7304 - - - - 7.417164 - - 43.72998 - - - - 7.417319 - - 43.729916 - - - - 7.419065 - - 43.730103 - eopMode: REVERSE - velocity: 9 - radius: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-android-walk - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A0A0004 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - - - id: 1e2600f4-4861-43d6-abcb-07f4481a124c - name: 10.10.0.3 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.423684 - - 43.727867 - path: - type: LineString - coordinates: - - - - 7.423684 - - 43.727867 - - - - 7.422571 - - 43.727325 - - - - 7.422421 - - 43.727333 - - - - 7.42196 - - 43.727123 - - - - 7.421828 - - 43.72711 - - - - 7.420988 - - 43.726707 - - - - 7.420757 - - 43.72654 - - - - 7.420393 - - 43.72653 - - - - 7.420207 - - 43.726746 - - - - 7.419985 - - 43.72686 - - - - 7.41988 - - 43.72701 - - - - 7.419869 - - 43.727287 - - - - 7.419807 - - 43.727474 - - - - 7.419671 - - 43.727585 - - - - 7.419502 - - 43.727608 - - - - 7.419402 - - 43.728645 - - - - 7.421238 - - 43.72874 - - - - 7.421412 - - 43.728493 - - - - 7.421532 - - 43.728237 - - - - 7.421697 - - 43.72798 - - - - 7.421928 - - 43.727783 - - - - 7.422381 - - 43.727524 - - - - 7.422507 - - 43.72749 - - - - 7.422922 - - 43.72768 - - - - 7.422894 - - 43.727715 - - - - 7.423666 - - 43.72804 - - - - 7.423763 - - 43.72794 - - - - 7.4237 - - 43.727905 - - - - 7.423684 - - 43.727867 - eopMode: LOOP - velocity: 9 - radius: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-android-walk - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A0A0003 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - - - id: 8c2599e8-dd88-4ff2-9cf4-6fc54663c152 - name: 4g-macro-cell-2 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '2020202' - geoData: - location: - type: Point - coordinates: - - 7.413819 - - 43.729538 - radius: 400 - path: null - eopMode: null - velocity: null - physicalLocations: - - - id: c52208b3-93bb-4255-9b34-52432acc4398 - name: 10.100.0.1 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.412295 - - 43.728676 - path: - type: LineString - coordinates: - - - - 7.412295 - - 43.728676 - - - - 7.412273 - - 43.728664 - - - - 7.412281 - - 43.728645 - - - - 7.412294 - - 43.72861 - - - - 7.412353 - - 43.728577 - - - - 7.412433 - - 43.728584 - - - - 7.412494 - - 43.72862 - - - - 7.412491 - - 43.72867 - - - - 7.412466 - - 43.728714 - - - - 7.412627 - - 43.728798 - - - - 7.412708 - - 43.728863 - - - - 7.412821 - - 43.729042 - - - - 7.413009 - - 43.729298 - - - - 7.413331 - - 43.72953 - - - - 7.414082 - - 43.729942 - - - - 7.414709 - - 43.730297 - - - - 7.415187 - - 43.730553 - - - - 7.415568 - - 43.73077 - - - - 7.416118 - - 43.73108 - - - - 7.416652 - - 43.73135 - - - - 7.416979 - - 43.731503 - - - - 7.417131 - - 43.73154 - - - - 7.41718 - - 43.731457 - - - - 7.417308 - - 43.73144 - - - - 7.417392 - - 43.731476 - - - - 7.417432 - - 43.731533 - - - - 7.417426 - - 43.731598 - - - - 7.417365 - - 43.73165 - - - - 7.417268 - - 43.731663 - - - - 7.417177 - - 43.73164 - - - - 7.417037 - - 43.731712 - - - - 7.416912 - - 43.73183 - - - - 7.416855 - - 43.731888 - - - - 7.41681 - - 43.731964 - - - - 7.41681 - - 43.732018 - - - - 7.416761 - - 43.732048 - - - - 7.4167 - - 43.732037 - - - - 7.416646 - - 43.731995 - - - - 7.416437 - - 43.73177 - - - - 7.416278 - - 43.731544 - - - - 7.416238 - - 43.731464 - - - - 7.416225 - - 43.731384 - - - - 7.416228 - - 43.73122 - - - - 7.416206 - - 43.731102 - - - - 7.416128 - - 43.73104 - - - - 7.416005 - - 43.73094 - - - - 7.415892 - - 43.73085 - - - - 7.415442 - - 43.730564 - - - - 7.414985 - - 43.73029 - - - - 7.413749 - - 43.7296 - - - - 7.413719 - - 43.729523 - - - - 7.414267 - - 43.72908 - - - - 7.414825 - - 43.728683 - - - - 7.414983 - - 43.728634 - - - - 7.415184 - - 43.728607 - - - - 7.415248 - - 43.728603 - - - - 7.41531 - - 43.72861 - - - - 7.415366 - - 43.72868 - - - - 7.415329 - - 43.728752 - - - - 7.415332 - - 43.72882 - - - - 7.41538 - - 43.728905 - - - - 7.415645 - - 43.729088 - - - - 7.416165 - - 43.729477 - - - - 7.416268 - - 43.729515 - - - - 7.416372 - - 43.72958 - - - - 7.416673 - - 43.7298 - - - - 7.416808 - - 43.729828 - - - - 7.416867 - - 43.72982 - - - - 7.417084 - - 43.72983 - - - - 7.417418 - - 43.72988 - - - - 7.417764 - - 43.729916 - - - - 7.418454 - - 43.72999 - - - - 7.418545 - - 43.729046 - - - - 7.418624 - - 43.729004 - - - - 7.419099 - - 43.72902 - - - - 7.419173 - - 43.728962 - - - - 7.419217 - - 43.72858 - - - - 7.420207 - - 43.72863 - - - - 7.421203 - - 43.728664 - - - - 7.421265 - - 43.72848 - - - - 7.421318 - - 43.72833 - - - - 7.421387 - - 43.72821 - - - - 7.421448 - - 43.72811 - - - - 7.421565 - - 43.727966 - - - - 7.42162 - - 43.7279 - - - - 7.42168 - - 43.72785 - - - - 7.421951 - - 43.727634 - - - - 7.422287 - - 43.72743 - - - - 7.422104 - - 43.72733 - - - - 7.421898 - - 43.72723 - - - - 7.421297 - - 43.726948 - - - - 7.42101 - - 43.726795 - - - - 7.42075 - - 43.72662 - - - - 7.420669 - - 43.726624 - - - - 7.420599 - - 43.726635 - - - - 7.420543 - - 43.72666 - - - - 7.420205 - - 43.726803 - - - - 7.420039 - - 43.726883 - - - - 7.41995 - - 43.72704 - - - - 7.419926 - - 43.727287 - - - - 7.419913 - - 43.727413 - - - - 7.419859 - - 43.72752 - - - - 7.419728 - - 43.727615 - - - - 7.419527 - - 43.72767 - - - - 7.419304 - - 43.72768 - - - - 7.418912 - - 43.727684 - - - - 7.418875 - - 43.727726 - - - - 7.418805 - - 43.727734 - - - - 7.418751 - - 43.727886 - - - - 7.41866 - - 43.728058 - - - - 7.418553 - - 43.728134 - - - - 7.418459 - - 43.72819 - - - - 7.418341 - - 43.728245 - - - - 7.418135 - - 43.728283 - - - - 7.418035 - - 43.72831 - - - - 7.417955 - - 43.728355 - - - - 7.417933 - - 43.728546 - - - - 7.417923 - - 43.72878 - - - - 7.417864 - - 43.72901 - - - - 7.41777 - - 43.729256 - - - - 7.417654 - - 43.729446 - - - - 7.417483 - - 43.729645 - - - - 7.417416 - - 43.72971 - - - - 7.417233 - - 43.72983 - - - - 7.417139 - - 43.729893 - - - - 7.417102 - - 43.729935 - - - - 7.41707 - - 43.72999 - - - - 7.417072 - - 43.730053 - - - - 7.417314 - - 43.730247 - - - - 7.417579 - - 43.730446 - - - - 7.418376 - - 43.73103 - - - - 7.41858 - - 43.73113 - - - - 7.419038 - - 43.73124 - - - - 7.419392 - - 43.73131 - - - - 7.419736 - - 43.73141 - - - - 7.420988 - - 43.73178 - - - - 7.421616 - - 43.731987 - - - - 7.421924 - - 43.732105 - - - - 7.422169 - - 43.73223 - - - - 7.422276 - - 43.732334 - - - - 7.422316 - - 43.73246 - - - - 7.422297 - - 43.732597 - - - - 7.42222 - - 43.732723 - - - - 7.422096 - - 43.73284 - - - - 7.422002 - - 43.732975 - - - - 7.421962 - - 43.733047 - - - - 7.421949 - - 43.733135 - - - - 7.421696 - - 43.733627 - - - - 7.421522 - - 43.734016 - - - - 7.421377 - - 43.73445 - - - - 7.421289 - - 43.73488 - - - - 7.421232 - - 43.735355 - - - - 7.421211 - - 43.73588 - - - - 7.421291 - - 43.73624 - - - - 7.421447 - - 43.736584 - - - - 7.421576 - - 43.73678 - - - - 7.421629 - - 43.73683 - - - - 7.421755 - - 43.736908 - - - - 7.422032 - - 43.737015 - - - - 7.42237 - - 43.737045 - - - - 7.422756 - - 43.73709 - - - - 7.423142 - - 43.737164 - - - - 7.423915 - - 43.737328 - - - - 7.424164 - - 43.737377 - - - - 7.424414 - - 43.737408 - - - - 7.424918 - - 43.73745 - - - - 7.425942 - - 43.73778 - - - - 7.426543 - - 43.737877 - - - - 7.426795 - - 43.737984 - - - - 7.426946 - - 43.738132 - - - - 7.426972 - - 43.738243 - - - - 7.426924 - - 43.738384 - - - - 7.426747 - - 43.738514 - - - - 7.426495 - - 43.738655 - - - - 7.426119 - - 43.738857 - - - - 7.425932 - - 43.738956 - - - - 7.42583 - - 43.739017 - - - - 7.425776 - - 43.739098 - - - - 7.425771 - - 43.739197 - - - - 7.425814 - - 43.73932 - - - - 7.425771 - - 43.73942 - - - - 7.425685 - - 43.739525 - - - - 7.425154 - - 43.73971 - - - - 7.425562 - - 43.740387 - - - - 7.425765 - - 43.7407 - - - - 7.425883 - - 43.740875 - - - - 7.426023 - - 43.741028 - - - - 7.426329 - - 43.741234 - - - - 7.426538 - - 43.74138 - - - - 7.426736 - - 43.741535 - - - - 7.426822 - - 43.74154 - - - - 7.426908 - - 43.74159 - - - - 7.426895 - - 43.741665 - - - - 7.427034 - - 43.74174 - - - - 7.427466 - - 43.742035 - - - - 7.427699 - - 43.742188 - - - - 7.427799 - - 43.742268 - - - - 7.427908 - - 43.74236 - - - - 7.428187 - - 43.7429 - - - - 7.428544 - - 43.743557 - - - - 7.42892 - - 43.744236 - - - - 7.429225 - - 43.74491 - - - - 7.429504 - - 43.74551 - - - - 7.429751 - - 43.74569 - - - - 7.429939 - - 43.745804 - - - - 7.430121 - - 43.74594 - - - - 7.430202 - - 43.746082 - - - - 7.430239 - - 43.746162 - - - - 7.43062 - - 43.746452 - - - - 7.431017 - - 43.74667 - - - - 7.431371 - - 43.746925 - - - - 7.431682 - - 43.747177 - - - - 7.431763 - - 43.7473 - - - - 7.431763 - - 43.747467 - - - - 7.431731 - - 43.747578 - - - - 7.431822 - - 43.747734 - - - - 7.432031 - - 43.747807 - - - - 7.432246 - - 43.747856 - - - - 7.432525 - - 43.747852 - - - - 7.432809 - - 43.747955 - - - - 7.433152 - - 43.748158 - - - - 7.43341 - - 43.748363 - - - - 7.43401 - - 43.748726 - - - - 7.434322 - - 43.748905 - - - - 7.434671 - - 43.749058 - - - - 7.435019 - - 43.74907 - - - - 7.435373 - - 43.749073 - - - - 7.435818 - - 43.74906 - - - - 7.436028 - - 43.749104 - - - - 7.43621 - - 43.749184 - - - - 7.436376 - - 43.749287 - - - - 7.43651 - - 43.749416 - - - - 7.43709 - - 43.749954 - - - - 7.437347 - - 43.750195 - - - - 7.437589 - - 43.75045 - - - - 7.437841 - - 43.75071 - - - - 7.43812 - - 43.751137 - - - - 7.438431 - - 43.751614 - - - - 7.438881 - - 43.751606 - - - - 7.439327 - - 43.75162 - - - - 7.439826 - - 43.751553 - - - - 7.44004 - - 43.751488 - - - - 7.440137 - - 43.751392 - - - - 7.440062 - - 43.751163 - - - - 7.439842 - - 43.75103 - - - - 7.43952 - - 43.750824 - - - - 7.439203 - - 43.750637 - - - - 7.439219 - - 43.750423 - - - - 7.439364 - - 43.750286 - - - - 7.439616 - - 43.75027 - - - - 7.440062 - - 43.750523 - - - - 7.440443 - - 43.750797 - - - - 7.440115 - - 43.750893 - - - - 7.439836 - - 43.75065 - - - - 7.439289 - - 43.75024 - - - - 7.438694 - - 43.749947 - - - - 7.43732 - - 43.749363 - - - - 7.435936 - - 43.74877 - - - - 7.435287 - - 43.74844 - - - - 7.433453 - - 43.747387 - - - - 7.432712 - - 43.74694 - - - - 7.431956 - - 43.746502 - - - - 7.431586 - - 43.74628 - - - - 7.431216 - - 43.746056 - - - - 7.430974 - - 43.745815 - - - - 7.430792 - - 43.7456 - - - - 7.430679 - - 43.745537 - - - - 7.430668 - - 43.74546 - - - - 7.430674 - - 43.745377 - - - - 7.43069 - - 43.74523 - - - - 7.43062 - - 43.745117 - - - - 7.43041 - - 43.744785 - - - - 7.430306 - - 43.744625 - - - - 7.430225 - - 43.74446 - - - - 7.430192 - - 43.744396 - - - - 7.430144 - - 43.74434 - - - - 7.429972 - - 43.744175 - - - - 7.429881 - - 43.743988 - - - - 7.429728 - - 43.743587 - - - - 7.429689 - - 43.743484 - - - - 7.429671 - - 43.743435 - - - - 7.429656 - - 43.743385 - - - - 7.429612 - - 43.743202 - - - - 7.429592 - - 43.743034 - - - - 7.429584 - - 43.742874 - - - - 7.429596 - - 43.742657 - - - - 7.429612 - - 43.742485 - - - - 7.429639 - - 43.74218 - - - - 7.429783 - - 43.741016 - - - - 7.429848 - - 43.740414 - - - - 7.429872 - - 43.740257 - - - - 7.429858 - - 43.740124 - - - - 7.429791 - - 43.739834 - - - - 7.42971 - - 43.739548 - - - - 7.429573 - - 43.73925 - - - - 7.429385 - - 43.73896 - - - - 7.42915 - - 43.738686 - - - - 7.429027 - - 43.738552 - - - - 7.428953 - - 43.738483 - - - - 7.428917 - - 43.73845 - - - - 7.428875 - - 43.738422 - - - - 7.428521 - - 43.738182 - - - - 7.428061 - - 43.73796 - - - - 7.427626 - - 43.737766 - - - - 7.427324 - - 43.737656 - - - - 7.427005 - - 43.737576 - - - - 7.426667 - - 43.737507 - - - - 7.426342 - - 43.737473 - - - - 7.42602 - - 43.737442 - - - - 7.42571 - - 43.737434 - - - - 7.425395 - - 43.737434 - - - - 7.42384 - - 43.73755 - - - - 7.423571 - - 43.73761 - - - - 7.423247 - - 43.737644 - - - - 7.42289 - - 43.737667 - - - - 7.422737 - - 43.737656 - - - - 7.422659 - - 43.737644 - - - - 7.42259 - - 43.737625 - - - - 7.422582 - - 43.7376 - - - - 7.422584 - - 43.737576 - - - - 7.422598 - - 43.73753 - - - - 7.422646 - - 43.7375 - - - - 7.422814 - - 43.737434 - - - - 7.423523 - - 43.737408 - - - - 7.423972 - - 43.737442 - - - - 7.424034 - - 43.73743 - - - - 7.424064 - - 43.73741 - - - - 7.424055 - - 43.737385 - - - - 7.424038 - - 43.737366 - - - - 7.423644 - - 43.73728 - - - - 7.423225 - - 43.73719 - - - - 7.422795 - - 43.73711 - - - - 7.422332 - - 43.737053 - - - - 7.422099 - - 43.73703 - - - - 7.421981 - - 43.73701 - - - - 7.421785 - - 43.737007 - - - - 7.421583 - - 43.736977 - - - - 7.421478 - - 43.736946 - - - - 7.421381 - - 43.7369 - - - - 7.421202 - - 43.7368 - - - - 7.421065 - - 43.736702 - - - - 7.421003 - - 43.73664 - - - - 7.420967 - - 43.736614 - - - - 7.420598 - - 43.736317 - - - - 7.420181 - - 43.73597 - - - - 7.420098 - - 43.7359 - - - - 7.420028 - - 43.735836 - - - - 7.419874 - - 43.735687 - - - - 7.419729 - - 43.73555 - - - - 7.419451 - - 43.735283 - - - - 7.419311 - - 43.735146 - - - - 7.419177 - - 43.735004 - - - - 7.418924 - - 43.73472 - - - - 7.418668 - - 43.734436 - - - - 7.418515 - - 43.73424 - - - - 7.41849 - - 43.734142 - - - - 7.41851 - - 43.73403 - - - - 7.418537 - - 43.733932 - - - - 7.418588 - - 43.733727 - - - - 7.418687 - - 43.73334 - - - - 7.418813 - - 43.732906 - - - - 7.418915 - - 43.73265 - - - - 7.418904 - - 43.732555 - - - - 7.418859 - - 43.732525 - - - - 7.418795 - - 43.73252 - - - - 7.418462 - - 43.732613 - - - - 7.418294 - - 43.73266 - - - - 7.418215 - - 43.73269 - - - - 7.41814 - - 43.73272 - - - - 7.417854 - - 43.732807 - - - - 7.41764 - - 43.732853 - - - - 7.417487 - - 43.732895 - - - - 7.417425 - - 43.732925 - - - - 7.417377 - - 43.732986 - - - - 7.417373 - - 43.733036 - - - - 7.4174 - - 43.7331 - - - - 7.417593 - - 43.733456 - - - - 7.417621 - - 43.733547 - - - - 7.417609 - - 43.733665 - - - - 7.417566 - - 43.733784 - - - - 7.417477 - - 43.733948 - - - - 7.417422 - - 43.73416 - - - - 7.417394 - - 43.7342 - - - - 7.417331 - - 43.734238 - - - - 7.417137 - - 43.73429 - - - - 7.417091 - - 43.734406 - - - - 7.417072 - - 43.73461 - - - - 7.41707 - - 43.734833 - - - - 7.417106 - - 43.735027 - - - - 7.417174 - - 43.735165 - - - - 7.417213 - - 43.735237 - - - - 7.417265 - - 43.735313 - - - - 7.417349 - - 43.735413 - - - - 7.417468 - - 43.735542 - - - - 7.417709 - - 43.735783 - - - - 7.417825 - - 43.735874 - - - - 7.417894 - - 43.735916 - - - - 7.417971 - - 43.735947 - - - - 7.418423 - - 43.736076 - - - - 7.418604 - - 43.736122 - - - - 7.418683 - - 43.736156 - - - - 7.418759 - - 43.7362 - - - - 7.419186 - - 43.736515 - - - - 7.419429 - - 43.736725 - - - - 7.419634 - - 43.736874 - - - - 7.41982 - - 43.737015 - - - - 7.419993 - - 43.737167 - - - - 7.420052 - - 43.73722 - - - - 7.420099 - - 43.737286 - - - - 7.42013 - - 43.737335 - - - - 7.420121 - - 43.737442 - - - - 7.420076 - - 43.73754 - - - - 7.420024 - - 43.73758 - - - - 7.419942 - - 43.737614 - - - - 7.419759 - - 43.737682 - - - - 7.419337 - - 43.737827 - - - - 7.419228 - - 43.7379 - - - - 7.419127 - - 43.737995 - - - - 7.419092 - - 43.738087 - - - - 7.419126 - - 43.738163 - - - - 7.419173 - - 43.738186 - - - - 7.419261 - - 43.73819 - - - - 7.419348 - - 43.738174 - - - - 7.419405 - - 43.73811 - - - - 7.419454 - - 43.737915 - - - - 7.419511 - - 43.737743 - - - - 7.419544 - - 43.737705 - - - - 7.419611 - - 43.737644 - - - - 7.419867 - - 43.73755 - - - - 7.419964 - - 43.737514 - - - - 7.420028 - - 43.73747 - - - - 7.420036 - - 43.737423 - - - - 7.420034 - - 43.73738 - - - - 7.420013 - - 43.737335 - - - - 7.41998 - - 43.737293 - - - - 7.419899 - - 43.73722 - - - - 7.419673 - - 43.73708 - - - - 7.419535 - - 43.73704 - - - - 7.419489 - - 43.737026 - - - - 7.419434 - - 43.73703 - - - - 7.419327 - - 43.737045 - - - - 7.41915 - - 43.73712 - - - - 7.419123 - - 43.737137 - - - - 7.41913 - - 43.73716 - - - - 7.41912 - - 43.73719 - - - - 7.419033 - - 43.73725 - - - - 7.41893 - - 43.73732 - - - - 7.418659 - - 43.73749 - - - - 7.418499 - - 43.73756 - - - - 7.418411 - - 43.737583 - - - - 7.41831 - - 43.7376 - - - - 7.418235 - - 43.73759 - - - - 7.418163 - - 43.73757 - - - - 7.418037 - - 43.737507 - - - - 7.417955 - - 43.73744 - - - - 7.417869 - - 43.73738 - - - - 7.417664 - - 43.737312 - - - - 7.417506 - - 43.737274 - - - - 7.417401 - - 43.73726 - - - - 7.417366 - - 43.737236 - - - - 7.417346 - - 43.737206 - - - - 7.417345 - - 43.73717 - - - - 7.417311 - - 43.737103 - - - - 7.417304 - - 43.737064 - - - - 7.417295 - - 43.737045 - - - - 7.41729 - - 43.737022 - - - - 7.417276 - - 43.736973 - - - - 7.417247 - - 43.736935 - - - - 7.417186 - - 43.736893 - - - - 7.416992 - - 43.73685 - - - - 7.416886 - - 43.73682 - - - - 7.416842 - - 43.736797 - - - - 7.41681 - - 43.73677 - - - - 7.416771 - - 43.73672 - - - - 7.416749 - - 43.736668 - - - - 7.416704 - - 43.736313 - - - - 7.416675 - - 43.736084 - - - - 7.416665 - - 43.735966 - - - - 7.416665 - - 43.735855 - - - - 7.416615 - - 43.73581 - - - - 7.416623 - - 43.73574 - - - - 7.416591 - - 43.73564 - - - - 7.416561 - - 43.735546 - - - - 7.416504 - - 43.735416 - - - - 7.41637 - - 43.73514 - - - - 7.41632 - - 43.734993 - - - - 7.416289 - - 43.73486 - - - - 7.416272 - - 43.73474 - - - - 7.416262 - - 43.73462 - - - - 7.416245 - - 43.734394 - - - - 7.416225 - - 43.734295 - - - - 7.416201 - - 43.734203 - - - - 7.416174 - - 43.734142 - - - - 7.416138 - - 43.73409 - - - - 7.416054 - - 43.733955 - - - - 7.41599 - - 43.733894 - - - - 7.415801 - - 43.733715 - - - - 7.415393 - - 43.733383 - - - - 7.415356 - - 43.733337 - - - - 7.415299 - - 43.73332 - - - - 7.415204 - - 43.733276 - - - - 7.41514 - - 43.73322 - - - - 7.415098 - - 43.733154 - - - - 7.415077 - - 43.733097 - - - - 7.414878 - - 43.732937 - - - - 7.414619 - - 43.73273 - - - - 7.414414 - - 43.73253 - - - - 7.414343 - - 43.73237 - - - - 7.4143 - - 43.73213 - - - - 7.414363 - - 43.731937 - - - - 7.414526 - - 43.731796 - - - - 7.414589 - - 43.73177 - - - - 7.414902 - - 43.73153 - - - - 7.415022 - - 43.73144 - - - - 7.415058 - - 43.73137 - - - - 7.415065 - - 43.731266 - - - - 7.415031 - - 43.731213 - - - - 7.414972 - - 43.73117 - - - - 7.414802 - - 43.731125 - - - - 7.414583 - - 43.7311 - - - - 7.414045 - - 43.731014 - - - - 7.413182 - - 43.730873 - - - - 7.413132 - - 43.730865 - - - - 7.413081 - - 43.730846 - - - - 7.412977 - - 43.73082 - - - - 7.412864 - - 43.73075 - - - - 7.412629 - - 43.730595 - - - - 7.41271 - - 43.730377 - - - - 7.412778 - - 43.72999 - - - - 7.412793 - - 43.729607 - - - - 7.412826 - - 43.72954 - - - - 7.412839 - - 43.72948 - - - - 7.412739 - - 43.729347 - - - - 7.412632 - - 43.729225 - - - - 7.412401 - - 43.728916 - - - - 7.412397 - - 43.72874 - - - - 7.412365 - - 43.728737 - - - - 7.412332 - - 43.72873 - - - - 7.412307 - - 43.72871 - - - - 7.412295 - - 43.728676 - eopMode: LOOP - velocity: 20 - radius: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-android-car - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A640001 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - - - id: f32f0c05-4491-4a93-be0c-19420d4407f0 - name: 4g-macro-cell-3 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '3030303' - geoData: - location: - type: Point - coordinates: - - 7.416715 - - 43.733616 - radius: 400 - path: null - eopMode: null - velocity: null - physicalLocations: - - - id: 0ca4bfcc-7346-4f57-9c85-bb92642ec37e - name: 10.1.0.2 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.4187 - - 43.732403 - radius: null - path: null - eopMode: null - velocity: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-ios-videocam - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A010002 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - - - id: 37be6821-a5f3-4af9-af0a-ceff4c0f66be - name: 5g-small-cell-1 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '101010101' - geoData: - location: - type: Point - coordinates: - - 7.415385 - - 43.730846 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: ab60918a-acd8-4f4e-9693-d2fbffae9b72 - name: 5g-small-cell-2 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '202020202' - geoData: - location: - type: Point - coordinates: - - 7.416962 - - 43.731453 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: de2d952d-11b1-4294-8a67-6d994f1a5f37 - name: 5g-small-cell-3 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '303030303' - geoData: - location: - type: Point - coordinates: - - 7.417023 - - 43.733227 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 9bd631b3-44f5-4f92-ad1a-d50c9c3e869d - name: 5g-small-cell-4 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '404040404' - geoData: - location: - type: Point - coordinates: - - 7.417173 - - 43.72764 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - interFogLatency: null - interFogLatencyVariation: null - interFogThroughput: null - interFogPacketLoss: null - interEdgeLatency: null - interEdgeLatencyVariation: null - interEdgeThroughput: null - interEdgePacketLoss: null - edgeFogLatency: null - edgeFogLatencyVariation: null - edgeFogThroughput: null - edgeFogPacketLoss: null - userMeta: null - - - id: 4c3c9568-6408-4900-9d97-4556f6d805db - name: zone02 - type: ZONE - netChar: - latency: 5 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - meta: - display.map.color: darkred - networkLocations: - - - id: zone02-DEFAULT - name: zone02-DEFAULT - type: DEFAULT - netChar: - latency: 1 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poa5GConfig: null - poaWifiConfig: null - geoData: null - physicalLocations: null - - - id: 78327873-c828-47da-8a5b-3c74d251dbbc - name: 4g-macro-cell-4 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '4040404' - geoData: - location: - type: Point - coordinates: - - 7.423547 - - 43.731724 - radius: 400 - path: null - eopMode: null - velocity: null - physicalLocations: - - - id: 67a40b8b-5777-4e96-a896-8622af4a741f - name: 10.100.0.3 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.427423 - - 43.731323 - path: - type: LineString - coordinates: - - - - 7.427423 - - 43.731323 - - - - 7.427463 - - 43.73143 - - - - 7.427455 - - 43.731537 - - - - 7.427423 - - 43.731598 - - - - 7.427439 - - 43.731667 - - - - 7.427479 - - 43.731766 - - - - 7.427951 - - 43.73259 - - - - 7.427989 - - 43.732677 - - - - 7.427962 - - 43.73281 - - - - 7.427852 - - 43.732925 - - - - 7.427655 - - 43.732994 - - - - 7.427556 - - 43.733 - - - - 7.425453 - - 43.73256 - - - - 7.42436 - - 43.7323 - - - - 7.424033 - - 43.732254 - - - - 7.423397 - - 43.73226 - - - - 7.422675 - - 43.73218 - - - - 7.422588 - - 43.7322 - - - - 7.42249 - - 43.732243 - - - - 7.422382 - - 43.732323 - - - - 7.422415 - - 43.73246 - - - - 7.422351 - - 43.73269 - - - - 7.422257 - - 43.73279 - - - - 7.4221 - - 43.73293 - - - - 7.421912 - - 43.733208 - - - - 7.421604 - - 43.733833 - - - - 7.421522 - - 43.734016 - - - - 7.421377 - - 43.73445 - - - - 7.421289 - - 43.73488 - - - - 7.421232 - - 43.735355 - - - - 7.421211 - - 43.73588 - - - - 7.421291 - - 43.73624 - - - - 7.421447 - - 43.736584 - - - - 7.421576 - - 43.73678 - - - - 7.4216 - - 43.7368 - - - - 7.421723 - - 43.73684 - - - - 7.424054 - - 43.73709 - - - - 7.424611 - - 43.737144 - - - - 7.424942 - - 43.73719 - - - - 7.425462 - - 43.737217 - - - - 7.426063 - - 43.737286 - - - - 7.426653 - - 43.737366 - - - - 7.427215 - - 43.73749 - - - - 7.427498 - - 43.737583 - - - - 7.427762 - - 43.73765 - - - - 7.42799 - - 43.737732 - - - - 7.428867 - - 43.738125 - - - - 7.429136 - - 43.73831 - - - - 7.429626 - - 43.738724 - - - - 7.429853 - - 43.73897 - - - - 7.430023 - - 43.739243 - - - - 7.430125 - - 43.7395 - - - - 7.430301 - - 43.740196 - - - - 7.430422 - - 43.741196 - - - - 7.430411 - - 43.741318 - - - - 7.430493 - - 43.741344 - - - - 7.430568 - - 43.741417 - - - - 7.430773 - - 43.74177 - eopMode: REVERSE - velocity: 20 - radius: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-android-car - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A640003 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - - - id: ca3b5b42-0e99-4553-9d19-4696cd8fe469 - name: 4g-macro-cell-5 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '5050505' - geoData: - location: - type: Point - coordinates: - - 7.429257 - - 43.73411 - radius: 400 - path: null - eopMode: null - velocity: null - physicalLocations: - - - id: c18e3f93-79c4-427d-af91-81996adab3e7 - name: 10.1.0.3 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.426565 - - 43.73298 - radius: null - path: null - eopMode: null - velocity: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-ios-videocam - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A010003 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - - - id: 1d2683f4-086e-47d6-abbb-07fa481a25fb - name: 10.10.0.1 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.43166 - - 43.736156 - path: - type: LineString - coordinates: - - - - 7.43166 - - 43.736156 - - - - 7.431723 - - 43.736115 - - - - 7.431162 - - 43.735607 - - - - 7.430685 - - 43.73518 - - - - 7.43043 - - 43.73532 - - - - 7.429067 - - 43.734108 - - - - 7.428863 - - 43.734184 - - - - 7.428388 - - 43.734116 - - - - 7.427817 - - 43.73446 - - - - 7.427689 - - 43.734917 - - - - 7.427581 - - 43.73499 - - - - 7.427308 - - 43.734955 - - - - 7.42723 - - 43.734844 - - - - 7.427281 - - 43.734646 - - - - 7.427411 - - 43.734657 - - - - 7.427709 - - 43.73362 - - - - 7.424581 - - 43.732964 - - - - 7.424312 - - 43.73363 - - - - 7.424512 - - 43.73368 - - - - 7.424534 - - 43.733707 - - - - 7.424534 - - 43.73373 - - - - 7.424477 - - 43.733753 - - - - 7.42423 - - 43.73371 - - - - 7.424029 - - 43.733665 - - - - 7.423999 - - 43.733624 - - - - 7.424058 - - 43.73358 - - - - 7.424246 - - 43.733624 - - - - 7.424522 - - 43.732952 - - - - 7.423748 - - 43.73279 - - - - 7.423545 - - 43.733307 - - - - 7.423508 - - 43.7333 - - - - 7.423535 - - 43.73324 - - - - 7.423668 - - 43.732857 - - - - 7.423455 - - 43.73282 - - - - 7.423356 - - 43.73307 - - - - 7.423199 - - 43.733135 - - - - 7.423043 - - 43.73321 - - - - 7.422855 - - 43.73337 - - - - 7.422744 - - 43.733517 - - - - 7.422694 - - 43.733624 - - - - 7.422659 - - 43.73374 - - - - 7.422578 - - 43.734074 - - - - 7.422604 - - 43.734188 - - - - 7.422541 - - 43.734425 - - - - 7.422509 - - 43.73456 - - - - 7.422697 - - 43.73458 - - - - 7.422847 - - 43.734077 - - - - 7.422881 - - 43.73408 - - - - 7.422756 - - 43.73459 - - - - 7.423254 - - 43.73466 - - - - 7.423413 - - 43.73412 - - - - 7.423512 - - 43.73413 - - - - 7.423351 - - 43.734753 - - - - 7.42326 - - 43.73506 - - - - 7.423223 - - 43.73522 - - - - 7.423173 - - 43.735416 - - - - 7.423072 - - 43.7354 - - - - 7.4232 - - 43.734898 - - - - 7.423191 - - 43.734848 - - - - 7.422693 - - 43.734776 - - - - 7.42256 - - 43.7353 - - - - 7.422513 - - 43.73529 - - - - 7.422655 - - 43.734776 - - - - 7.422423 - - 43.734737 - - - - 7.422299 - - 43.735203 - - - - 7.422233 - - 43.735435 - - - - 7.42215 - - 43.735508 - - - - 7.422032 - - 43.735546 - - - - 7.421888 - - 43.735535 - - - - 7.421866 - - 43.735683 - - - - 7.421872 - - 43.735928 - - - - 7.421975 - - 43.736275 - - - - 7.422107 - - 43.73651 - - - - 7.422269 - - 43.73673 - - - - 7.42493 - - 43.737007 - - - - 7.425109 - - 43.73692 - - - - 7.425631 - - 43.736973 - - - - 7.425674 - - 43.736706 - - - - 7.425721 - - 43.736477 - - - - 7.425736 - - 43.736366 - - - - 7.425787 - - 43.736378 - - - - 7.425655 - - 43.737087 - - - - 7.426748 - - 43.73719 - - - - 7.426931 - - 43.736523 - - - - 7.427054 - - 43.736073 - - - - 7.427052 - - 43.73606 - - - - 7.427027 - - 43.736053 - - - - 7.426908 - - 43.73604 - - - - 7.426963 - - 43.73584 - - - - 7.427089 - - 43.73575 - - - - 7.427368 - - 43.735783 - - - - 7.427427 - - 43.735886 - - - - 7.427096 - - 43.737133 - - - - 7.429107 - - 43.73754 - - - - 7.429795 - - 43.736343 - eopMode: REVERSE - velocity: 9 - radius: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-android-walk - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A0A0001 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - - - id: ec32caa6-ddc6-4f5e-a815-654782b31abb - name: 10.100.0.2 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.427394 - - 43.73243 - path: - type: LineString - coordinates: - - - - 7.427394 - - 43.73243 - - - - 7.427393 - - 43.732353 - - - - 7.427373 - - 43.732296 - - - - 7.427259 - - 43.73213 - - - - 7.427153 - - 43.73204 - - - - 7.42705 - - 43.73197 - - - - 7.426688 - - 43.73188 - - - - 7.426318 - - 43.731792 - - - - 7.425634 - - 43.731598 - - - - 7.425535 - - 43.731598 - - - - 7.425433 - - 43.73161 - - - - 7.425336 - - 43.73161 - - - - 7.425151 - - 43.731556 - - - - 7.424628 - - 43.73141 - - - - 7.424135 - - 43.731285 - - - - 7.423933 - - 43.73179 - - - - 7.423861 - - 43.731827 - - - - 7.423566 - - 43.73177 - - - - 7.423389 - - 43.731663 - - - - 7.423225 - - 43.73154 - - - - 7.422997 - - 43.731396 - - - - 7.422858 - - 43.731335 - - - - 7.422794 - - 43.731304 - - - - 7.422718 - - 43.731285 - - - - 7.422579 - - 43.731262 - - - - 7.422418 - - 43.731255 - - - - 7.422195 - - 43.731262 - - - - 7.421973 - - 43.731285 - - - - 7.421833 - - 43.731297 - - - - 7.421705 - - 43.73133 - - - - 7.421624 - - 43.731327 - - - - 7.421565 - - 43.731323 - - - - 7.421501 - - 43.731297 - - - - 7.421483 - - 43.731228 - - - - 7.421468 - - 43.73116 - - - - 7.421443 - - 43.73103 - - - - 7.421409 - - 43.73089 - - - - 7.421372 - - 43.73075 - - - - 7.421435 - - 43.730694 - - - - 7.421506 - - 43.730682 - - - - 7.421731 - - 43.73061 - - - - 7.421821 - - 43.73055 - - - - 7.421992 - - 43.730377 - - - - 7.42217 - - 43.730206 - - - - 7.422477 - - 43.729942 - - - - 7.422555 - - 43.729897 - - - - 7.422657 - - 43.729866 - - - - 7.422801 - - 43.729847 - - - - 7.422969 - - 43.729862 - - - - 7.423137 - - 43.72991 - - - - 7.423295 - - 43.72997 - - - - 7.423507 - - 43.73005 - - - - 7.423712 - - 43.730137 - - - - 7.42411 - - 43.73032 - - - - 7.424566 - - 43.730526 - - - - 7.424802 - - 43.730633 - - - - 7.42501 - - 43.730743 - - - - 7.425791 - - 43.731174 - - - - 7.426482 - - 43.73159 - - - - 7.426963 - - 43.731895 - - - - 7.427077 - - 43.731968 - - - - 7.427186 - - 43.732048 - - - - 7.42729 - - 43.73213 - - - - 7.427362 - - 43.732227 - - - - 7.427418 - - 43.732353 - - - - 7.427415 - - 43.732384 - - - - 7.427411 - - 43.732407 - - - - 7.427394 - - 43.73243 - - - - 7.427383 - - 43.732483 - - - - 7.427288 - - 43.732548 - - - - 7.427203 - - 43.73256 - - - - 7.427085 - - 43.732555 - - - - 7.426884 - - 43.732517 - - - - 7.425842 - - 43.73234 - - - - 7.424798 - - 43.732162 - - - - 7.424667 - - 43.73214 - - - - 7.42444 - - 43.7321 - - - - 7.424072 - - 43.732044 - - - - 7.423361 - - 43.731934 - - - - 7.423054 - - 43.7319 - - - - 7.42274 - - 43.731876 - - - - 7.422414 - - 43.73187 - - - - 7.422089 - - 43.731876 - - - - 7.421887 - - 43.731884 - - - - 7.421699 - - 43.731895 - - - - 7.421429 - - 43.731926 - - - - 7.421102 - - 43.73198 - - - - 7.420582 - - 43.732067 - - - - 7.420058 - - 43.732174 - - - - 7.419941 - - 43.7322 - - - - 7.419804 - - 43.732254 - - - - 7.419237 - - 43.732403 - - - - 7.419181 - - 43.732418 - - - - 7.419127 - - 43.73245 - - - - 7.419071 - - 43.73248 - - - - 7.419063 - - 43.732513 - - - - 7.419017 - - 43.732548 - - - - 7.418957 - - 43.73256 - - - - 7.418904 - - 43.732555 - - - - 7.418859 - - 43.732525 - - - - 7.418795 - - 43.73252 - - - - 7.418733 - - 43.732536 - - - - 7.418541 - - 43.73259 - - - - 7.418358 - - 43.732643 - - - - 7.418179 - - 43.732704 - - - - 7.417854 - - 43.732807 - - - - 7.417669 - - 43.732845 - - - - 7.417487 - - 43.732895 - - - - 7.417425 - - 43.732925 - - - - 7.417405 - - 43.73295 - - - - 7.417605 - - 43.73323 - - - - 7.417778 - - 43.733547 - - - - 7.417915 - - 43.733955 - - - - 7.41809 - - 43.734455 - - - - 7.418133 - - 43.734684 - - - - 7.418188 - - 43.7349 - - - - 7.418289 - - 43.735046 - - - - 7.4184 - - 43.735184 - - - - 7.418585 - - 43.735382 - - - - 7.418671 - - 43.735455 - - - - 7.418768 - - 43.73552 - - - - 7.419179 - - 43.735825 - - - - 7.419366 - - 43.73598 - - - - 7.419533 - - 43.73615 - - - - 7.419881 - - 43.736473 - - - - 7.420241 - - 43.736786 - - - - 7.420468 - - 43.73692 - - - - 7.420685 - - 43.73703 - - - - 7.420944 - - 43.73716 - - - - 7.421228 - - 43.737274 - - - - 7.421522 - - 43.737373 - - - - 7.421826 - - 43.73747 - - - - 7.422055 - - 43.73752 - - - - 7.422283 - - 43.73756 - - - - 7.422403 - - 43.73758 - - - - 7.422472 - - 43.737526 - - - - 7.422561 - - 43.737473 - - - - 7.422688 - - 43.737442 - - - - 7.422814 - - 43.737434 - - - - 7.423132 - - 43.737423 - - - - 7.423523 - - 43.737408 - - - - 7.423972 - - 43.737442 - - - - 7.424034 - - 43.73743 - - - - 7.424064 - - 43.73741 - - - - 7.424055 - - 43.737385 - - - - 7.424028 - - 43.73735 - - - - 7.423706 - - 43.737286 - - - - 7.423228 - - 43.737183 - - - - 7.422826 - - 43.737103 - - - - 7.42263 - - 43.737076 - - - - 7.422426 - - 43.737053 - - - - 7.42209 - - 43.73702 - - - - 7.421949 - - 43.73701 - - - - 7.421754 - - 43.737003 - - - - 7.421639 - - 43.736984 - - - - 7.421527 - - 43.73696 - - - - 7.421421 - - 43.73692 - - - - 7.421323 - - 43.73687 - - - - 7.421228 - - 43.736813 - - - - 7.421133 - - 43.73675 - - - - 7.421065 - - 43.736702 - - - - 7.421003 - - 43.73664 - - - - 7.420847 - - 43.73652 - - - - 7.420513 - - 43.736244 - - - - 7.420098 - - 43.7359 - - - - 7.419858 - - 43.735672 - - - - 7.41939 - - 43.73522 - - - - 7.41916 - - 43.734985 - - - - 7.418728 - - 43.734505 - - - - 7.418581 - - 43.734325 - - - - 7.418515 - - 43.73424 - - - - 7.41849 - - 43.734142 - - - - 7.418601 - - 43.733677 - - - - 7.418681 - - 43.73336 - - - - 7.418772 - - 43.733047 - - - - 7.418813 - - 43.732906 - - - - 7.418878 - - 43.732742 - - - - 7.418915 - - 43.73265 - - - - 7.41891 - - 43.732605 - - - - 7.418904 - - 43.732555 - - - - 7.418859 - - 43.732525 - - - - 7.418849 - - 43.73247 - - - - 7.418872 - - 43.732426 - - - - 7.418902 - - 43.73241 - - - - 7.418951 - - 43.732403 - - - - 7.419008 - - 43.732403 - - - - 7.419118 - - 43.73241 - - - - 7.419225 - - 43.73239 - - - - 7.4198 - - 43.73224 - - - - 7.419934 - - 43.732185 - - - - 7.420066 - - 43.73216 - - - - 7.420587 - - 43.73205 - - - - 7.421116 - - 43.73196 - - - - 7.421403 - - 43.73192 - - - - 7.421688 - - 43.731884 - - - - 7.422084 - - 43.73186 - - - - 7.422473 - - 43.731853 - - - - 7.422827 - - 43.73187 - - - - 7.42319 - - 43.731903 - - - - 7.423363 - - 43.731922 - - - - 7.423535 - - 43.73195 - - - - 7.423881 - - 43.732002 - - - - 7.425014 - - 43.73219 - - - - 7.425588 - - 43.73229 - - - - 7.426168 - - 43.732388 - - - - 7.426901 - - 43.732506 - - - - 7.427068 - - 43.732536 - - - - 7.427147 - - 43.732548 - - - - 7.427227 - - 43.732548 - - - - 7.427279 - - 43.732533 - - - - 7.427352 - - 43.73249 - - - - 7.427394 - - 43.73243 - eopMode: LOOP - velocity: 20 - radius: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-android-car - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A640002 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - - - id: bddd61c9-6ddd-4f7e-9082-0d004fced7ab - name: 5g-small-cell-5 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '505050505' - geoData: - location: - type: Point - coordinates: - - 7.420653 - - 43.731743 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 8e0dad0d-72c9-4b6d-850b-06b02243b1d3 - name: 5g-small-cell-6 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '606060606' - geoData: - location: - type: Point - coordinates: - - 7.421865 - - 43.733368 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 7d3688cc-0dda-48b1-a171-b817c176e053 - name: 5g-small-cell-7 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '808080808' - geoData: - location: - type: Point - coordinates: - - 7.42509 - - 43.73189 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 91691048-64bb-4d2f-917f-4219a95881c0 - name: 5g-small-cell-8 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '909090909' - geoData: - location: - type: Point - coordinates: - - 7.42704 - - 43.732407 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - interFogLatency: null - interFogLatencyVariation: null - interFogThroughput: null - interFogPacketLoss: null - interEdgeLatency: null - interEdgeLatencyVariation: null - interEdgeThroughput: null - interEdgePacketLoss: null - edgeFogLatency: null - edgeFogLatencyVariation: null - edgeFogThroughput: null - edgeFogPacketLoss: null - userMeta: null - - - id: 472c9927-800a-46e9-9d62-d08b09080dd5 - name: zone03 - type: ZONE - netChar: - latency: 5 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - meta: - display.map.color: darkorange - networkLocations: - - - id: zone03-DEFAULT - name: zone03-DEFAULT - type: DEFAULT - netChar: - latency: 1 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poa5GConfig: null - poaWifiConfig: null - geoData: null - physicalLocations: null - - - id: e4ce8267-5433-4b2b-aa5a-9a40de76b685 - name: 4g-macro-cell-6 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '6060606' - geoData: - location: - type: Point - coordinates: - - 7.421007 - - 43.737087 - radius: 400 - path: null - eopMode: null - velocity: null - physicalLocations: - - - id: c3bc8d8d-170b-45bb-93a9-8ce658571321 - name: 10.1.0.1 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.421802 - - 43.736515 - radius: null - path: null - eopMode: null - velocity: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-ios-videocam - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A010001 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - - - id: 663df9f0-57af-43aa-ba2e-e45a4b2f3c28 - name: 4g-macro-cell-7 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '7070707' - geoData: - location: - type: Point - coordinates: - - 7.425841 - - 43.739426 - radius: 400 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: a3067167-cdaf-4264-9e32-abfc0ede0564 - name: 5g-small-cell-10 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: A0A0A0A0A - geoData: - location: - type: Point - coordinates: - - 7.426598 - - 43.73844 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 2c2ba76c-8880-4c5b-a949-a161713910f4 - name: 5g-small-cell-11 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: B0B0B0B0B - geoData: - location: - type: Point - coordinates: - - 7.428264 - - 43.73876 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: d9ca5e58-15fe-4161-840f-f3155db3729b - name: 5g-small-cell-12 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: C0C0C0C0C - geoData: - location: - type: Point - coordinates: - - 7.42738 - - 43.739075 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 8414d39b-d3c3-45e1-a235-cf93d211579c - name: 5g-small-cell-9 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '707070707' - geoData: - location: - type: Point - coordinates: - - 7.417394 - - 43.735794 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - interFogLatency: null - interFogLatencyVariation: null - interFogThroughput: null - interFogPacketLoss: null - interEdgeLatency: null - interEdgeLatencyVariation: null - interEdgeThroughput: null - interEdgePacketLoss: null - edgeFogLatency: null - edgeFogLatencyVariation: null - edgeFogThroughput: null - edgeFogPacketLoss: null - userMeta: null - - - id: d56c4e67-0e0f-4456-9431-290de7b674c8 - name: zone04 - type: ZONE - netChar: - latency: 5 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - meta: - display.map.color: limegreen - networkLocations: - - - id: zone04-DEFAULT - name: zone04-DEFAULT - type: DEFAULT - netChar: - latency: 1 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poa5GConfig: null - poaWifiConfig: null - geoData: null - physicalLocations: null - - - id: fc4d9ec8-ebb6-4b5d-a281-bb74af729b4a - name: 4g-macro-cell-8 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '8080808' - geoData: - location: - type: Point - coordinates: - - 7.429504 - - 43.74301 - radius: 400 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: b73b3ef5-dba0-44af-a648-bbda7191c249 - name: 4g-macro-cell-9 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: '9090909' - geoData: - location: - type: Point - coordinates: - - 7.432551 - - 43.746544 - radius: 400 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: e1d47a4b-0664-4915-81ea-eb0d70af15a7 - name: 4g-macro-cell-10 - type: POA-4G - netChar: - latency: 10 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa4GConfig: - cellId: A0A0A0A - geoData: - location: - type: Point - coordinates: - - 7.437573 - - 43.748993 - radius: 400 - path: null - eopMode: null - velocity: null - physicalLocations: - - - id: 4e423f57-daef-4c1c-b30e-45e88e3c9366 - name: 10.1.0.4 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.438248 - - 43.74835 - radius: null - path: null - eopMode: null - velocity: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-ios-videocam - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A010004 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - - - id: 824cf1bf-f91d-44c2-906d-e939fa3339cd - name: 10.10.0.2 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.438755 - - 43.748512 - path: - type: LineString - coordinates: - - - - 7.438755 - - 43.748512 - - - - 7.438267 - - 43.748566 - - - - 7.437795 - - 43.7484 - - - - 7.437684 - - 43.748253 - - - - 7.437555 - - 43.748203 - - - - 7.437341 - - 43.748203 - - - - 7.43673 - - 43.747974 - - - - 7.436623 - - 43.747704 - - - - 7.436237 - - 43.747643 - - - - 7.435969 - - 43.74743 - - - - 7.435841 - - 43.74717 - - - - 7.435504 - - 43.74695 - - - - 7.434829 - - 43.74691 - - - - 7.434293 - - 43.746685 - - - - 7.433882 - - 43.746166 - - - - 7.433431 - - 43.746063 - - - - 7.432831 - - 43.745686 - - - - 7.432585 - - 43.745182 - - - - 7.432767 - - 43.744633 - - - - 7.432552 - - 43.744244 - - - - 7.432617 - - 43.743763 - - - - 7.432305 - - 43.743305 - - - - 7.431682 - - 43.742676 - - - - 7.431136 - - 43.74201 - - - - 7.430524 - - 43.741123 - - - - 7.430432 - - 43.740696 - - - - 7.430382 - - 43.740437 - - - - 7.430384 - - 43.74021 - - - - 7.430288 - - 43.739372 - - - - 7.429773 - - 43.73849 - - - - 7.429976 - - 43.738228 - - - - 7.429654 - - 43.73791 - - - - 7.429371 - - 43.73765 - - - - 7.430027 - - 43.736446 - eopMode: REVERSE - velocity: 9 - radius: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-android-walk - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A0A0002 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - - - id: 097f79f4-bf76-4be0-be28-5acc3bdb0dba - name: 10.100.0.4 - type: UE - geoData: - location: - type: Point - coordinates: - - 7.438357 - - 43.74781 - path: - type: LineString - coordinates: - - - - 7.438357 - - 43.74781 - - - - 7.438296 - - 43.747852 - - - - 7.438229 - - 43.74791 - - - - 7.43813 - - 43.74803 - - - - 7.438074 - - 43.748108 - - - - 7.438025 - - 43.748264 - - - - 7.437991 - - 43.748398 - - - - 7.437937 - - 43.748512 - - - - 7.437883 - - 43.74859 - - - - 7.437741 - - 43.74875 - - - - 7.437593 - - 43.748924 - - - - 7.437481 - - 43.74905 - - - - 7.437416 - - 43.74911 - - - - 7.437419 - - 43.749146 - - - - 7.43739 - - 43.749184 - - - - 7.437339 - - 43.749203 - - - - 7.437285 - - 43.74919 - - - - 7.437256 - - 43.74917 - - - - 7.43555 - - 43.74844 - - - - 7.435097 - - 43.748184 - - - - 7.435008 - - 43.748077 - - - - 7.434885 - - 43.747814 - - - - 7.434788 - - 43.747723 - - - - 7.433391 - - 43.74693 - - - - 7.433243 - - 43.74679 - - - - 7.43301 - - 43.746536 - - - - 7.432804 - - 43.74642 - - - - 7.432353 - - 43.74604 - - - - 7.431985 - - 43.74559 - - - - 7.431216 - - 43.74428 - - - - 7.430556 - - 43.74307 - - - - 7.430336 - - 43.741848 - - - - 7.430226 - - 43.74178 - - - - 7.430038 - - 43.741756 - - - - 7.429864 - - 43.741695 - - - - 7.429766 - - 43.74158 - - - - 7.429731 - - 43.741432 - - - - 7.429797 - - 43.741234 - - - - 7.42986 - - 43.74115 - - - - 7.42995 - - 43.74109 - - - - 7.430094 - - 43.74108 - - - - 7.430255 - - 43.74114 - - - - 7.430392 - - 43.74126 - - - - 7.430475 - - 43.7415 - - - - 7.430642 - - 43.742832 - - - - 7.430717 - - 43.74308 - - - - 7.432086 - - 43.745556 - - - - 7.432441 - - 43.74601 - - - - 7.433179 - - 43.746563 - - - - 7.434716 - - 43.747498 - - - - 7.434871 - - 43.74766 - - - - 7.435108 - - 43.74807 - - - - 7.435305 - - 43.74823 - - - - 7.435923 - - 43.748547 - - - - 7.436871 - - 43.748955 - - - - 7.437138 - - 43.749054 - - - - 7.437248 - - 43.74907 - - - - 7.437368 - - 43.749058 - - - - 7.43747 - - 43.74894 - - - - 7.437652 - - 43.748714 - - - - 7.437765 - - 43.74859 - - - - 7.437835 - - 43.748512 - - - - 7.437883 - - 43.74838 - - - - 7.437918 - - 43.74817 - - - - 7.437931 - - 43.748116 - - - - 7.438001 - - 43.747997 - - - - 7.438098 - - 43.747868 - - - - 7.438138 - - 43.747826 - - - - 7.438159 - - 43.74777 - - - - 7.438159 - - 43.747692 - - - - 7.438173 - - 43.747616 - - - - 7.438205 - - 43.747566 - - - - 7.438264 - - 43.747528 - - - - 7.438347 - - 43.747513 - - - - 7.438443 - - 43.74752 - - - - 7.438505 - - 43.74755 - - - - 7.438548 - - 43.7476 - - - - 7.438569 - - 43.747654 - - - - 7.438545 - - 43.747726 - - - - 7.438494 - - 43.747772 - - - - 7.438431 - - 43.7478 - - - - 7.438357 - - 43.74781 - eopMode: LOOP - velocity: 20 - radius: null - wireless: true - wirelessType: 'wifi,5g,4g' - meta: - display.map.icon: ion-android-car - netChar: - latencyDistribution: Normal - throughputDl: 1000 - throughputUl: 1000 - latency: null - latencyVariation: null - throughput: null - packetLoss: null - macId: 005C0A640004 - isExternal: null - networkLocationsInRange: null - connected: null - dataNetwork: null - userMeta: null - processes: null - linkLatency: null - linkLatencyVariation: null - linkThroughput: null - linkPacketLoss: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa5GConfig: null - poaWifiConfig: null - - - id: 3fbf9ec8-3932-455c-8352-0d06b7bb7a15 - name: 5g-small-cell-13 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: D0D0D0D0D - geoData: - location: - type: Point - coordinates: - - 7.431907 - - 43.74543 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 80e3b677-56cb-495c-b798-e19f96d491b9 - name: 5g-small-cell-14 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: E0E0E0E0E - geoData: - location: - type: Point - coordinates: - - 7.431824 - - 43.74787 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: dcb66c87-1854-4c8e-ae88-72b14df9aaff - name: 5g-small-cell-15 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: F0F0F0F0F - geoData: - location: - type: Point - coordinates: - - 7.433529 - - 43.74865 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 10b048d1-2fba-486d-89a0-d1a3191b90b4 - name: 5g-small-cell-16 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '010101010' - geoData: - location: - type: Point - coordinates: - - 7.434421 - - 43.749107 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 35602880-9727-4ed6-8f53-fe0ffab22cb4 - name: 5g-small-cell-17 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '111111111' - geoData: - location: - type: Point - coordinates: - - 7.437487 - - 43.7487 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 4aef0f33-51d2-472c-8441-b5c55f0de626 - name: 5g-small-cell-18 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '212121212' - geoData: - location: - type: Point - coordinates: - - 7.438839 - - 43.749706 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 3396c6ae-28f8-4c8b-ba12-9991bddeed61 - name: 5g-small-cell-19 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '313131313' - geoData: - location: - type: Point - coordinates: - - 7.4371 - - 43.750282 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - - - id: 246f3830-3b56-4359-9452-b17f34426888 - name: 5g-small-cell-20 - type: POA-5G - netChar: - latency: 4 - latencyVariation: 1 - throughputDl: 1000 - throughputUl: 1000 - latencyDistribution: null - throughput: null - packetLoss: null - poa5GConfig: - cellId: '414141414' - geoData: - location: - type: Point - coordinates: - - 7.436006 - - 43.749382 - radius: 100 - path: null - eopMode: null - velocity: null - terminalLinkLatency: null - terminalLinkLatencyVariation: null - terminalLinkThroughput: null - terminalLinkPacketLoss: null - meta: null - userMeta: null - cellularPoaConfig: null - poa4GConfig: null - poaWifiConfig: null - physicalLocations: null - interFogLatency: null - interFogLatencyVariation: null - interFogThroughput: null - interFogPacketLoss: null - interEdgeLatency: null - interEdgeLatencyVariation: null - interEdgeThroughput: null - interEdgePacketLoss: null - edgeFogLatency: null - edgeFogLatencyVariation: null - edgeFogThroughput: null - edgeFogPacketLoss: null - userMeta: null - interZoneLatency: null - interZoneLatencyVariation: null - interZoneThroughput: null - interZonePacketLoss: null - meta: null - userMeta: null - interDomainLatency: null - interDomainLatencyVariation: null - interDomainThroughput: null - interDomainPacketLoss: null - meta: null -id: null -description: null -config: null +version: 1.9.0 +name: 4g-5g-macro-v2x +deployment: + netChar: + latency: 50 + latencyVariation: 10 + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + throughput: null + packetLoss: null + connectivity: + model: OPEN + d2d: + d2dMaxDistance: 100 + userMeta: + mec-sandbox: '{"defaultStaticUeCount": 1, "defaultLowVelocityUeCount": 1, "defaultHighVelocityUeCount": 1, "highVelocitySpeedThreshold": 10}' + network-info: '{"type": "local", "path":"4G-Macro-Network-Topology.png"}' + domains: + - + id: PUBLIC + name: PUBLIC + type: PUBLIC + netChar: + latency: 6 + latencyVariation: 2 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + zones: + - + id: PUBLIC-COMMON + name: PUBLIC-COMMON + type: COMMON + netChar: + latency: 5 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + networkLocations: + - + id: PUBLIC-COMMON-DEFAULT + name: PUBLIC-COMMON-DEFAULT + type: DEFAULT + netChar: + latency: 1 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poa5GConfig: null + poaWifiConfig: null + geoData: null + physicalLocations: null + interFogLatency: null + interFogLatencyVariation: null + interFogThroughput: null + interFogPacketLoss: null + interEdgeLatency: null + interEdgeLatencyVariation: null + interEdgeThroughput: null + interEdgePacketLoss: null + edgeFogLatency: null + edgeFogLatencyVariation: null + edgeFogThroughput: null + edgeFogPacketLoss: null + meta: null + userMeta: null + interZoneLatency: null + interZoneLatencyVariation: null + interZoneThroughput: null + interZonePacketLoss: null + meta: null + userMeta: null + cellularDomainConfig: null + - + id: f1c5f2fe-5fbb-48fa-a0df-6ad00e4eeb4c + name: sandbox-operator + type: OPERATOR-CELLULAR + netChar: + latency: 6 + latencyVariation: 2 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + cellularDomainConfig: + mnc: '001' + mcc: '001' + defaultCellId: FFFFFFF + zones: + - + id: sandbox-operator-COMMON + name: sandbox-operator-COMMON + type: COMMON + netChar: + latency: 5 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + networkLocations: + - + id: sandbox-operator-COMMON-DEFAULT + name: sandbox-operator-COMMON-DEFAULT + type: DEFAULT + netChar: + latency: 1 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poa5GConfig: null + poaWifiConfig: null + geoData: null + physicalLocations: null + interFogLatency: null + interFogLatencyVariation: null + interFogThroughput: null + interFogPacketLoss: null + interEdgeLatency: null + interEdgeLatencyVariation: null + interEdgeThroughput: null + interEdgePacketLoss: null + edgeFogLatency: null + edgeFogLatencyVariation: null + edgeFogThroughput: null + edgeFogPacketLoss: null + meta: null + userMeta: null + - + id: 6fd7e9d1-3646-474d-880b-d4a21799d280 + name: zone01 + type: ZONE + netChar: + latency: 5 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + meta: + display.map.color: blueviolet + networkLocations: + - + id: zone01-DEFAULT + name: zone01-DEFAULT + type: DEFAULT + netChar: + latency: 1 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + physicalLocations: + - + id: 138c1c53-7f25-4c52-a025-3b607da5f97a + name: mep1 + type: EDGE + geoData: + location: + type: Point + coordinates: + - 7.421096 + - 43.73408 + radius: null + path: null + eopMode: null + velocity: null + connected: true + dataNetwork: {dnn: null, ladn: null, ecsp: null} + processes: + - + id: 62cc2936-af22-4946-b3e5-5b9143d7203f + name: mec011-1 + type: EDGE-APP + image: 'meep-docker-registry:30001/meep-app-enablement' + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + isExternal: null + environment: null + commandArguments: null + commandExe: null + serviceConfig: null + gpuConfig: null + memoryConfig: null + cpuConfig: null + externalConfig: null + status: null + userChartLocation: null + userChartAlternateValues: null + userChartGroup: null + meta: null + userMeta: null + appLatency: null + appLatencyVariation: null + appThroughput: null + appPacketLoss: null + placementId: null + - + id: b8a203be-ac81-45a6-8d88-fdb1f8f5393b + name: mec012-1 + type: EDGE-APP + image: 'meep-docker-registry:30001/meep-rnis' + environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + isExternal: null + commandArguments: null + commandExe: null + serviceConfig: null + gpuConfig: null + memoryConfig: null + cpuConfig: null + externalConfig: null + status: null + userChartLocation: null + userChartAlternateValues: null + userChartGroup: null + meta: null + userMeta: null + appLatency: null + appLatencyVariation: null + appThroughput: null + appPacketLoss: null + placementId: null + - + id: 298b2c0c-7efa-45d3-8b47-8ab3c009b845 + name: mec013-1 + type: EDGE-APP + image: 'meep-docker-registry:30001/meep-loc-serv' + environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + isExternal: null + commandArguments: null + commandExe: null + serviceConfig: null + gpuConfig: null + memoryConfig: null + cpuConfig: null + externalConfig: null + status: null + userChartLocation: null + userChartAlternateValues: null + userChartGroup: null + meta: null + userMeta: null + appLatency: null + appLatencyVariation: null + appThroughput: null + appPacketLoss: null + placementId: null + - + id: f1e4d448-e277-496b-bf63-98391cfd20fb + name: mec015-1 + type: EDGE-APP + image: 'meep-docker-registry:30001/meep-tm' + environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + isExternal: null + commandArguments: null + commandExe: null + serviceConfig: null + gpuConfig: null + memoryConfig: null + cpuConfig: null + externalConfig: null + status: null + userChartLocation: null + userChartAlternateValues: null + userChartGroup: null + meta: null + userMeta: null + appLatency: null + appLatencyVariation: null + appThroughput: null + appPacketLoss: null + placementId: null + - + id: fb4d3c6a-197e-4e3f-96ae-ab4d5ac663a9 + name: mec016-1 + type: EDGE-APP + image: 'meep-docker-registry:30001/meep-dai' + environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + isExternal: null + commandArguments: null + commandExe: null + serviceConfig: null + gpuConfig: null + memoryConfig: null + cpuConfig: null + externalConfig: null + status: null + userChartLocation: null + userChartAlternateValues: null + userChartGroup: null + meta: null + userMeta: null + appLatency: null + appLatencyVariation: null + appThroughput: null + appPacketLoss: null + placementId: null + - + id: b8ae165a-a1e3-4d6c-86d9-52c59ad314b6 + name: mec028-1 + type: EDGE-APP + image: 'meep-docker-registry:30001/meep-wais' + environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false' + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + isExternal: null + commandArguments: null + commandExe: null + serviceConfig: null + gpuConfig: null + memoryConfig: null + cpuConfig: null + externalConfig: null + status: null + userChartLocation: null + userChartAlternateValues: null + userChartGroup: null + meta: null + userMeta: null + appLatency: null + appLatencyVariation: null + appThroughput: null + appPacketLoss: null + placementId: null + - + id: 5015e45f-be53-4e28-8f47-c107fd1dea8c + name: mec030-1 + type: EDGE-APP + image: 'meep-docker-registry:30001/meep-vis' + environment: 'MEEP_SCOPE_OF_LOCALITY=MEC_SYSTEM,MEEP_CONSUMED_LOCAL_ONLY=false,MEEP_PREDICT_MODEL_SUPPORTED=true,MEEP_POA_LIST="5g-small-cell-1;5g-small-cell-2;5g-small-cell-3;5g-small-cell-4"' + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + isExternal: null + commandArguments: null + commandExe: null + serviceConfig: null + gpuConfig: null + memoryConfig: null + cpuConfig: null + externalConfig: null + status: null + userChartLocation: null + userChartAlternateValues: null + userChartGroup: null + meta: null + userMeta: null + appLatency: null + appLatencyVariation: null + appThroughput: null + appPacketLoss: null + placementId: null + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + isExternal: null + networkLocationsInRange: null + wireless: null + wirelessType: null + meta: null + userMeta: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + macId: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poa5GConfig: null + poaWifiConfig: null + geoData: null + - + id: 3480e529-3fc1-44b8-a892-42bbbfa4018f + name: 4g-macro-cell-1 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '1010101' + geoData: + location: + type: Point + coordinates: + - 7.419344 + - 43.72764 + radius: 400 + path: null + eopMode: null + velocity: null + physicalLocations: + - + id: 3331ee44-2236-1111-0020-5a3c2bde0eaa + name: 10.10.0.4 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.420433 + - 43.729942 + path: + type: LineString + coordinates: + - + - 7.420433 + - 43.729942 + - + - 7.420659 + - 43.73036 + - + - 7.420621 + - 43.731045 + - + - 7.420922 + - 43.73129 + - + - 7.421345 + - 43.731373 + - + - 7.42135 + - 43.73168 + - + - 7.421148 + - 43.73173 + - + - 7.420616 + - 43.731964 + - + - 7.419779 + - 43.732197 + - + - 7.419111 + - 43.732353 + - + - 7.418931 + - 43.732315 + - + - 7.418345 + - 43.731964 + - + - 7.418319 + - 43.73186 + - + - 7.418024 + - 43.73179 + - + - 7.41796 + - 43.731728 + - + - 7.417729 + - 43.731743 + - + - 7.417463 + - 43.731632 + - + - 7.417507 + - 43.73148 + - + - 7.417428 + - 43.731407 + - + - 7.417343 + - 43.731396 + - + - 7.417334 + - 43.731133 + - + - 7.417317 + - 43.73053 + - + - 7.417164 + - 43.7304 + - + - 7.417164 + - 43.72998 + - + - 7.417319 + - 43.729916 + - + - 7.419065 + - 43.730103 + eopMode: REVERSE + velocity: 9 + radius: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-android-walk + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A0A0004 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + - + id: 1e2600f4-4861-43d6-abcb-07f4481a124c + name: 10.10.0.3 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.423684 + - 43.727867 + path: + type: LineString + coordinates: + - + - 7.423684 + - 43.727867 + - + - 7.422571 + - 43.727325 + - + - 7.422421 + - 43.727333 + - + - 7.42196 + - 43.727123 + - + - 7.421828 + - 43.72711 + - + - 7.420988 + - 43.726707 + - + - 7.420757 + - 43.72654 + - + - 7.420393 + - 43.72653 + - + - 7.420207 + - 43.726746 + - + - 7.419985 + - 43.72686 + - + - 7.41988 + - 43.72701 + - + - 7.419869 + - 43.727287 + - + - 7.419807 + - 43.727474 + - + - 7.419671 + - 43.727585 + - + - 7.419502 + - 43.727608 + - + - 7.419402 + - 43.728645 + - + - 7.421238 + - 43.72874 + - + - 7.421412 + - 43.728493 + - + - 7.421532 + - 43.728237 + - + - 7.421697 + - 43.72798 + - + - 7.421928 + - 43.727783 + - + - 7.422381 + - 43.727524 + - + - 7.422507 + - 43.72749 + - + - 7.422922 + - 43.72768 + - + - 7.422894 + - 43.727715 + - + - 7.423666 + - 43.72804 + - + - 7.423763 + - 43.72794 + - + - 7.4237 + - 43.727905 + - + - 7.423684 + - 43.727867 + eopMode: LOOP + velocity: 9 + radius: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-android-walk + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A0A0003 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + - + id: 8c2599e8-dd88-4ff2-9cf4-6fc54663c152 + name: 4g-macro-cell-2 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '2020202' + geoData: + location: + type: Point + coordinates: + - 7.413819 + - 43.729538 + radius: 400 + path: null + eopMode: null + velocity: null + physicalLocations: + - + id: c52208b3-93bb-4255-9b34-52432acc4398 + name: 10.100.0.1 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.412295 + - 43.728676 + path: + type: LineString + coordinates: + - + - 7.412295 + - 43.728676 + - + - 7.412273 + - 43.728664 + - + - 7.412281 + - 43.728645 + - + - 7.412294 + - 43.72861 + - + - 7.412353 + - 43.728577 + - + - 7.412433 + - 43.728584 + - + - 7.412494 + - 43.72862 + - + - 7.412491 + - 43.72867 + - + - 7.412466 + - 43.728714 + - + - 7.412627 + - 43.728798 + - + - 7.412708 + - 43.728863 + - + - 7.412821 + - 43.729042 + - + - 7.413009 + - 43.729298 + - + - 7.413331 + - 43.72953 + - + - 7.414082 + - 43.729942 + - + - 7.414709 + - 43.730297 + - + - 7.415187 + - 43.730553 + - + - 7.415568 + - 43.73077 + - + - 7.416118 + - 43.73108 + - + - 7.416652 + - 43.73135 + - + - 7.416979 + - 43.731503 + - + - 7.417131 + - 43.73154 + - + - 7.41718 + - 43.731457 + - + - 7.417308 + - 43.73144 + - + - 7.417392 + - 43.731476 + - + - 7.417432 + - 43.731533 + - + - 7.417426 + - 43.731598 + - + - 7.417365 + - 43.73165 + - + - 7.417268 + - 43.731663 + - + - 7.417177 + - 43.73164 + - + - 7.417037 + - 43.731712 + - + - 7.416912 + - 43.73183 + - + - 7.416855 + - 43.731888 + - + - 7.41681 + - 43.731964 + - + - 7.41681 + - 43.732018 + - + - 7.416761 + - 43.732048 + - + - 7.4167 + - 43.732037 + - + - 7.416646 + - 43.731995 + - + - 7.416437 + - 43.73177 + - + - 7.416278 + - 43.731544 + - + - 7.416238 + - 43.731464 + - + - 7.416225 + - 43.731384 + - + - 7.416228 + - 43.73122 + - + - 7.416206 + - 43.731102 + - + - 7.416128 + - 43.73104 + - + - 7.416005 + - 43.73094 + - + - 7.415892 + - 43.73085 + - + - 7.415442 + - 43.730564 + - + - 7.414985 + - 43.73029 + - + - 7.413749 + - 43.7296 + - + - 7.413719 + - 43.729523 + - + - 7.414267 + - 43.72908 + - + - 7.414825 + - 43.728683 + - + - 7.414983 + - 43.728634 + - + - 7.415184 + - 43.728607 + - + - 7.415248 + - 43.728603 + - + - 7.41531 + - 43.72861 + - + - 7.415366 + - 43.72868 + - + - 7.415329 + - 43.728752 + - + - 7.415332 + - 43.72882 + - + - 7.41538 + - 43.728905 + - + - 7.415645 + - 43.729088 + - + - 7.416165 + - 43.729477 + - + - 7.416268 + - 43.729515 + - + - 7.416372 + - 43.72958 + - + - 7.416673 + - 43.7298 + - + - 7.416808 + - 43.729828 + - + - 7.416867 + - 43.72982 + - + - 7.417084 + - 43.72983 + - + - 7.417418 + - 43.72988 + - + - 7.417764 + - 43.729916 + - + - 7.418454 + - 43.72999 + - + - 7.418545 + - 43.729046 + - + - 7.418624 + - 43.729004 + - + - 7.419099 + - 43.72902 + - + - 7.419173 + - 43.728962 + - + - 7.419217 + - 43.72858 + - + - 7.420207 + - 43.72863 + - + - 7.421203 + - 43.728664 + - + - 7.421265 + - 43.72848 + - + - 7.421318 + - 43.72833 + - + - 7.421387 + - 43.72821 + - + - 7.421448 + - 43.72811 + - + - 7.421565 + - 43.727966 + - + - 7.42162 + - 43.7279 + - + - 7.42168 + - 43.72785 + - + - 7.421951 + - 43.727634 + - + - 7.422287 + - 43.72743 + - + - 7.422104 + - 43.72733 + - + - 7.421898 + - 43.72723 + - + - 7.421297 + - 43.726948 + - + - 7.42101 + - 43.726795 + - + - 7.42075 + - 43.72662 + - + - 7.420669 + - 43.726624 + - + - 7.420599 + - 43.726635 + - + - 7.420543 + - 43.72666 + - + - 7.420205 + - 43.726803 + - + - 7.420039 + - 43.726883 + - + - 7.41995 + - 43.72704 + - + - 7.419926 + - 43.727287 + - + - 7.419913 + - 43.727413 + - + - 7.419859 + - 43.72752 + - + - 7.419728 + - 43.727615 + - + - 7.419527 + - 43.72767 + - + - 7.419304 + - 43.72768 + - + - 7.418912 + - 43.727684 + - + - 7.418875 + - 43.727726 + - + - 7.418805 + - 43.727734 + - + - 7.418751 + - 43.727886 + - + - 7.41866 + - 43.728058 + - + - 7.418553 + - 43.728134 + - + - 7.418459 + - 43.72819 + - + - 7.418341 + - 43.728245 + - + - 7.418135 + - 43.728283 + - + - 7.418035 + - 43.72831 + - + - 7.417955 + - 43.728355 + - + - 7.417933 + - 43.728546 + - + - 7.417923 + - 43.72878 + - + - 7.417864 + - 43.72901 + - + - 7.41777 + - 43.729256 + - + - 7.417654 + - 43.729446 + - + - 7.417483 + - 43.729645 + - + - 7.417416 + - 43.72971 + - + - 7.417233 + - 43.72983 + - + - 7.417139 + - 43.729893 + - + - 7.417102 + - 43.729935 + - + - 7.41707 + - 43.72999 + - + - 7.417072 + - 43.730053 + - + - 7.417314 + - 43.730247 + - + - 7.417579 + - 43.730446 + - + - 7.418376 + - 43.73103 + - + - 7.41858 + - 43.73113 + - + - 7.419038 + - 43.73124 + - + - 7.419392 + - 43.73131 + - + - 7.419736 + - 43.73141 + - + - 7.420988 + - 43.73178 + - + - 7.421616 + - 43.731987 + - + - 7.421924 + - 43.732105 + - + - 7.422169 + - 43.73223 + - + - 7.422276 + - 43.732334 + - + - 7.422316 + - 43.73246 + - + - 7.422297 + - 43.732597 + - + - 7.42222 + - 43.732723 + - + - 7.422096 + - 43.73284 + - + - 7.422002 + - 43.732975 + - + - 7.421962 + - 43.733047 + - + - 7.421949 + - 43.733135 + - + - 7.421696 + - 43.733627 + - + - 7.421522 + - 43.734016 + - + - 7.421377 + - 43.73445 + - + - 7.421289 + - 43.73488 + - + - 7.421232 + - 43.735355 + - + - 7.421211 + - 43.73588 + - + - 7.421291 + - 43.73624 + - + - 7.421447 + - 43.736584 + - + - 7.421576 + - 43.73678 + - + - 7.421629 + - 43.73683 + - + - 7.421755 + - 43.736908 + - + - 7.422032 + - 43.737015 + - + - 7.42237 + - 43.737045 + - + - 7.422756 + - 43.73709 + - + - 7.423142 + - 43.737164 + - + - 7.423915 + - 43.737328 + - + - 7.424164 + - 43.737377 + - + - 7.424414 + - 43.737408 + - + - 7.424918 + - 43.73745 + - + - 7.425942 + - 43.73778 + - + - 7.426543 + - 43.737877 + - + - 7.426795 + - 43.737984 + - + - 7.426946 + - 43.738132 + - + - 7.426972 + - 43.738243 + - + - 7.426924 + - 43.738384 + - + - 7.426747 + - 43.738514 + - + - 7.426495 + - 43.738655 + - + - 7.426119 + - 43.738857 + - + - 7.425932 + - 43.738956 + - + - 7.42583 + - 43.739017 + - + - 7.425776 + - 43.739098 + - + - 7.425771 + - 43.739197 + - + - 7.425814 + - 43.73932 + - + - 7.425771 + - 43.73942 + - + - 7.425685 + - 43.739525 + - + - 7.425154 + - 43.73971 + - + - 7.425562 + - 43.740387 + - + - 7.425765 + - 43.7407 + - + - 7.425883 + - 43.740875 + - + - 7.426023 + - 43.741028 + - + - 7.426329 + - 43.741234 + - + - 7.426538 + - 43.74138 + - + - 7.426736 + - 43.741535 + - + - 7.426822 + - 43.74154 + - + - 7.426908 + - 43.74159 + - + - 7.426895 + - 43.741665 + - + - 7.427034 + - 43.74174 + - + - 7.427466 + - 43.742035 + - + - 7.427699 + - 43.742188 + - + - 7.427799 + - 43.742268 + - + - 7.427908 + - 43.74236 + - + - 7.428187 + - 43.7429 + - + - 7.428544 + - 43.743557 + - + - 7.42892 + - 43.744236 + - + - 7.429225 + - 43.74491 + - + - 7.429504 + - 43.74551 + - + - 7.429751 + - 43.74569 + - + - 7.429939 + - 43.745804 + - + - 7.430121 + - 43.74594 + - + - 7.430202 + - 43.746082 + - + - 7.430239 + - 43.746162 + - + - 7.43062 + - 43.746452 + - + - 7.431017 + - 43.74667 + - + - 7.431371 + - 43.746925 + - + - 7.431682 + - 43.747177 + - + - 7.431763 + - 43.7473 + - + - 7.431763 + - 43.747467 + - + - 7.431731 + - 43.747578 + - + - 7.431822 + - 43.747734 + - + - 7.432031 + - 43.747807 + - + - 7.432246 + - 43.747856 + - + - 7.432525 + - 43.747852 + - + - 7.432809 + - 43.747955 + - + - 7.433152 + - 43.748158 + - + - 7.43341 + - 43.748363 + - + - 7.43401 + - 43.748726 + - + - 7.434322 + - 43.748905 + - + - 7.434671 + - 43.749058 + - + - 7.435019 + - 43.74907 + - + - 7.435373 + - 43.749073 + - + - 7.435818 + - 43.74906 + - + - 7.436028 + - 43.749104 + - + - 7.43621 + - 43.749184 + - + - 7.436376 + - 43.749287 + - + - 7.43651 + - 43.749416 + - + - 7.43709 + - 43.749954 + - + - 7.437347 + - 43.750195 + - + - 7.437589 + - 43.75045 + - + - 7.437841 + - 43.75071 + - + - 7.43812 + - 43.751137 + - + - 7.438431 + - 43.751614 + - + - 7.438881 + - 43.751606 + - + - 7.439327 + - 43.75162 + - + - 7.439826 + - 43.751553 + - + - 7.44004 + - 43.751488 + - + - 7.440137 + - 43.751392 + - + - 7.440062 + - 43.751163 + - + - 7.439842 + - 43.75103 + - + - 7.43952 + - 43.750824 + - + - 7.439203 + - 43.750637 + - + - 7.439219 + - 43.750423 + - + - 7.439364 + - 43.750286 + - + - 7.439616 + - 43.75027 + - + - 7.440062 + - 43.750523 + - + - 7.440443 + - 43.750797 + - + - 7.440115 + - 43.750893 + - + - 7.439836 + - 43.75065 + - + - 7.439289 + - 43.75024 + - + - 7.438694 + - 43.749947 + - + - 7.43732 + - 43.749363 + - + - 7.435936 + - 43.74877 + - + - 7.435287 + - 43.74844 + - + - 7.433453 + - 43.747387 + - + - 7.432712 + - 43.74694 + - + - 7.431956 + - 43.746502 + - + - 7.431586 + - 43.74628 + - + - 7.431216 + - 43.746056 + - + - 7.430974 + - 43.745815 + - + - 7.430792 + - 43.7456 + - + - 7.430679 + - 43.745537 + - + - 7.430668 + - 43.74546 + - + - 7.430674 + - 43.745377 + - + - 7.43069 + - 43.74523 + - + - 7.43062 + - 43.745117 + - + - 7.43041 + - 43.744785 + - + - 7.430306 + - 43.744625 + - + - 7.430225 + - 43.74446 + - + - 7.430192 + - 43.744396 + - + - 7.430144 + - 43.74434 + - + - 7.429972 + - 43.744175 + - + - 7.429881 + - 43.743988 + - + - 7.429728 + - 43.743587 + - + - 7.429689 + - 43.743484 + - + - 7.429671 + - 43.743435 + - + - 7.429656 + - 43.743385 + - + - 7.429612 + - 43.743202 + - + - 7.429592 + - 43.743034 + - + - 7.429584 + - 43.742874 + - + - 7.429596 + - 43.742657 + - + - 7.429612 + - 43.742485 + - + - 7.429639 + - 43.74218 + - + - 7.429783 + - 43.741016 + - + - 7.429848 + - 43.740414 + - + - 7.429872 + - 43.740257 + - + - 7.429858 + - 43.740124 + - + - 7.429791 + - 43.739834 + - + - 7.42971 + - 43.739548 + - + - 7.429573 + - 43.73925 + - + - 7.429385 + - 43.73896 + - + - 7.42915 + - 43.738686 + - + - 7.429027 + - 43.738552 + - + - 7.428953 + - 43.738483 + - + - 7.428917 + - 43.73845 + - + - 7.428875 + - 43.738422 + - + - 7.428521 + - 43.738182 + - + - 7.428061 + - 43.73796 + - + - 7.427626 + - 43.737766 + - + - 7.427324 + - 43.737656 + - + - 7.427005 + - 43.737576 + - + - 7.426667 + - 43.737507 + - + - 7.426342 + - 43.737473 + - + - 7.42602 + - 43.737442 + - + - 7.42571 + - 43.737434 + - + - 7.425395 + - 43.737434 + - + - 7.42384 + - 43.73755 + - + - 7.423571 + - 43.73761 + - + - 7.423247 + - 43.737644 + - + - 7.42289 + - 43.737667 + - + - 7.422737 + - 43.737656 + - + - 7.422659 + - 43.737644 + - + - 7.42259 + - 43.737625 + - + - 7.422582 + - 43.7376 + - + - 7.422584 + - 43.737576 + - + - 7.422598 + - 43.73753 + - + - 7.422646 + - 43.7375 + - + - 7.422814 + - 43.737434 + - + - 7.423523 + - 43.737408 + - + - 7.423972 + - 43.737442 + - + - 7.424034 + - 43.73743 + - + - 7.424064 + - 43.73741 + - + - 7.424055 + - 43.737385 + - + - 7.424038 + - 43.737366 + - + - 7.423644 + - 43.73728 + - + - 7.423225 + - 43.73719 + - + - 7.422795 + - 43.73711 + - + - 7.422332 + - 43.737053 + - + - 7.422099 + - 43.73703 + - + - 7.421981 + - 43.73701 + - + - 7.421785 + - 43.737007 + - + - 7.421583 + - 43.736977 + - + - 7.421478 + - 43.736946 + - + - 7.421381 + - 43.7369 + - + - 7.421202 + - 43.7368 + - + - 7.421065 + - 43.736702 + - + - 7.421003 + - 43.73664 + - + - 7.420967 + - 43.736614 + - + - 7.420598 + - 43.736317 + - + - 7.420181 + - 43.73597 + - + - 7.420098 + - 43.7359 + - + - 7.420028 + - 43.735836 + - + - 7.419874 + - 43.735687 + - + - 7.419729 + - 43.73555 + - + - 7.419451 + - 43.735283 + - + - 7.419311 + - 43.735146 + - + - 7.419177 + - 43.735004 + - + - 7.418924 + - 43.73472 + - + - 7.418668 + - 43.734436 + - + - 7.418515 + - 43.73424 + - + - 7.41849 + - 43.734142 + - + - 7.41851 + - 43.73403 + - + - 7.418537 + - 43.733932 + - + - 7.418588 + - 43.733727 + - + - 7.418687 + - 43.73334 + - + - 7.418813 + - 43.732906 + - + - 7.418915 + - 43.73265 + - + - 7.418904 + - 43.732555 + - + - 7.418859 + - 43.732525 + - + - 7.418795 + - 43.73252 + - + - 7.418462 + - 43.732613 + - + - 7.418294 + - 43.73266 + - + - 7.418215 + - 43.73269 + - + - 7.41814 + - 43.73272 + - + - 7.417854 + - 43.732807 + - + - 7.41764 + - 43.732853 + - + - 7.417487 + - 43.732895 + - + - 7.417425 + - 43.732925 + - + - 7.417377 + - 43.732986 + - + - 7.417373 + - 43.733036 + - + - 7.4174 + - 43.7331 + - + - 7.417593 + - 43.733456 + - + - 7.417621 + - 43.733547 + - + - 7.417609 + - 43.733665 + - + - 7.417566 + - 43.733784 + - + - 7.417477 + - 43.733948 + - + - 7.417422 + - 43.73416 + - + - 7.417394 + - 43.7342 + - + - 7.417331 + - 43.734238 + - + - 7.417137 + - 43.73429 + - + - 7.417091 + - 43.734406 + - + - 7.417072 + - 43.73461 + - + - 7.41707 + - 43.734833 + - + - 7.417106 + - 43.735027 + - + - 7.417174 + - 43.735165 + - + - 7.417213 + - 43.735237 + - + - 7.417265 + - 43.735313 + - + - 7.417349 + - 43.735413 + - + - 7.417468 + - 43.735542 + - + - 7.417709 + - 43.735783 + - + - 7.417825 + - 43.735874 + - + - 7.417894 + - 43.735916 + - + - 7.417971 + - 43.735947 + - + - 7.418423 + - 43.736076 + - + - 7.418604 + - 43.736122 + - + - 7.418683 + - 43.736156 + - + - 7.418759 + - 43.7362 + - + - 7.419186 + - 43.736515 + - + - 7.419429 + - 43.736725 + - + - 7.419634 + - 43.736874 + - + - 7.41982 + - 43.737015 + - + - 7.419993 + - 43.737167 + - + - 7.420052 + - 43.73722 + - + - 7.420099 + - 43.737286 + - + - 7.42013 + - 43.737335 + - + - 7.420121 + - 43.737442 + - + - 7.420076 + - 43.73754 + - + - 7.420024 + - 43.73758 + - + - 7.419942 + - 43.737614 + - + - 7.419759 + - 43.737682 + - + - 7.419337 + - 43.737827 + - + - 7.419228 + - 43.7379 + - + - 7.419127 + - 43.737995 + - + - 7.419092 + - 43.738087 + - + - 7.419126 + - 43.738163 + - + - 7.419173 + - 43.738186 + - + - 7.419261 + - 43.73819 + - + - 7.419348 + - 43.738174 + - + - 7.419405 + - 43.73811 + - + - 7.419454 + - 43.737915 + - + - 7.419511 + - 43.737743 + - + - 7.419544 + - 43.737705 + - + - 7.419611 + - 43.737644 + - + - 7.419867 + - 43.73755 + - + - 7.419964 + - 43.737514 + - + - 7.420028 + - 43.73747 + - + - 7.420036 + - 43.737423 + - + - 7.420034 + - 43.73738 + - + - 7.420013 + - 43.737335 + - + - 7.41998 + - 43.737293 + - + - 7.419899 + - 43.73722 + - + - 7.419673 + - 43.73708 + - + - 7.419535 + - 43.73704 + - + - 7.419489 + - 43.737026 + - + - 7.419434 + - 43.73703 + - + - 7.419327 + - 43.737045 + - + - 7.41915 + - 43.73712 + - + - 7.419123 + - 43.737137 + - + - 7.41913 + - 43.73716 + - + - 7.41912 + - 43.73719 + - + - 7.419033 + - 43.73725 + - + - 7.41893 + - 43.73732 + - + - 7.418659 + - 43.73749 + - + - 7.418499 + - 43.73756 + - + - 7.418411 + - 43.737583 + - + - 7.41831 + - 43.7376 + - + - 7.418235 + - 43.73759 + - + - 7.418163 + - 43.73757 + - + - 7.418037 + - 43.737507 + - + - 7.417955 + - 43.73744 + - + - 7.417869 + - 43.73738 + - + - 7.417664 + - 43.737312 + - + - 7.417506 + - 43.737274 + - + - 7.417401 + - 43.73726 + - + - 7.417366 + - 43.737236 + - + - 7.417346 + - 43.737206 + - + - 7.417345 + - 43.73717 + - + - 7.417311 + - 43.737103 + - + - 7.417304 + - 43.737064 + - + - 7.417295 + - 43.737045 + - + - 7.41729 + - 43.737022 + - + - 7.417276 + - 43.736973 + - + - 7.417247 + - 43.736935 + - + - 7.417186 + - 43.736893 + - + - 7.416992 + - 43.73685 + - + - 7.416886 + - 43.73682 + - + - 7.416842 + - 43.736797 + - + - 7.41681 + - 43.73677 + - + - 7.416771 + - 43.73672 + - + - 7.416749 + - 43.736668 + - + - 7.416704 + - 43.736313 + - + - 7.416675 + - 43.736084 + - + - 7.416665 + - 43.735966 + - + - 7.416665 + - 43.735855 + - + - 7.416615 + - 43.73581 + - + - 7.416623 + - 43.73574 + - + - 7.416591 + - 43.73564 + - + - 7.416561 + - 43.735546 + - + - 7.416504 + - 43.735416 + - + - 7.41637 + - 43.73514 + - + - 7.41632 + - 43.734993 + - + - 7.416289 + - 43.73486 + - + - 7.416272 + - 43.73474 + - + - 7.416262 + - 43.73462 + - + - 7.416245 + - 43.734394 + - + - 7.416225 + - 43.734295 + - + - 7.416201 + - 43.734203 + - + - 7.416174 + - 43.734142 + - + - 7.416138 + - 43.73409 + - + - 7.416054 + - 43.733955 + - + - 7.41599 + - 43.733894 + - + - 7.415801 + - 43.733715 + - + - 7.415393 + - 43.733383 + - + - 7.415356 + - 43.733337 + - + - 7.415299 + - 43.73332 + - + - 7.415204 + - 43.733276 + - + - 7.41514 + - 43.73322 + - + - 7.415098 + - 43.733154 + - + - 7.415077 + - 43.733097 + - + - 7.414878 + - 43.732937 + - + - 7.414619 + - 43.73273 + - + - 7.414414 + - 43.73253 + - + - 7.414343 + - 43.73237 + - + - 7.4143 + - 43.73213 + - + - 7.414363 + - 43.731937 + - + - 7.414526 + - 43.731796 + - + - 7.414589 + - 43.73177 + - + - 7.414902 + - 43.73153 + - + - 7.415022 + - 43.73144 + - + - 7.415058 + - 43.73137 + - + - 7.415065 + - 43.731266 + - + - 7.415031 + - 43.731213 + - + - 7.414972 + - 43.73117 + - + - 7.414802 + - 43.731125 + - + - 7.414583 + - 43.7311 + - + - 7.414045 + - 43.731014 + - + - 7.413182 + - 43.730873 + - + - 7.413132 + - 43.730865 + - + - 7.413081 + - 43.730846 + - + - 7.412977 + - 43.73082 + - + - 7.412864 + - 43.73075 + - + - 7.412629 + - 43.730595 + - + - 7.41271 + - 43.730377 + - + - 7.412778 + - 43.72999 + - + - 7.412793 + - 43.729607 + - + - 7.412826 + - 43.72954 + - + - 7.412839 + - 43.72948 + - + - 7.412739 + - 43.729347 + - + - 7.412632 + - 43.729225 + - + - 7.412401 + - 43.728916 + - + - 7.412397 + - 43.72874 + - + - 7.412365 + - 43.728737 + - + - 7.412332 + - 43.72873 + - + - 7.412307 + - 43.72871 + - + - 7.412295 + - 43.728676 + eopMode: LOOP + velocity: 20 + radius: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-android-car + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A640001 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + - + id: f32f0c05-4491-4a93-be0c-19420d4407f0 + name: 4g-macro-cell-3 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '3030303' + geoData: + location: + type: Point + coordinates: + - 7.416715 + - 43.733616 + radius: 400 + path: null + eopMode: null + velocity: null + physicalLocations: + - + id: 0ca4bfcc-7346-4f57-9c85-bb92642ec37e + name: 10.1.0.2 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.4187 + - 43.732403 + radius: null + path: null + eopMode: null + velocity: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-ios-videocam + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A010002 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + - + id: 37be6821-a5f3-4af9-af0a-ceff4c0f66be + name: 5g-small-cell-1 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '101010101' + geoData: + location: + type: Point + coordinates: + - 7.415385 + - 43.730846 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: ab60918a-acd8-4f4e-9693-d2fbffae9b72 + name: 5g-small-cell-2 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '202020202' + geoData: + location: + type: Point + coordinates: + - 7.416962 + - 43.731453 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: de2d952d-11b1-4294-8a67-6d994f1a5f37 + name: 5g-small-cell-3 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '303030303' + geoData: + location: + type: Point + coordinates: + - 7.417023 + - 43.733227 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 9bd631b3-44f5-4f92-ad1a-d50c9c3e869d + name: 5g-small-cell-4 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '04040404' + geoData: + location: + type: Point + coordinates: + - 7.417173 + - 43.72764 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + interFogLatency: null + interFogLatencyVariation: null + interFogThroughput: null + interFogPacketLoss: null + interEdgeLatency: null + interEdgeLatencyVariation: null + interEdgeThroughput: null + interEdgePacketLoss: null + edgeFogLatency: null + edgeFogLatencyVariation: null + edgeFogThroughput: null + edgeFogPacketLoss: null + userMeta: null + - + id: 4c3c9568-6408-4900-9d97-4556f6d805db + name: zone02 + type: ZONE + netChar: + latency: 5 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + meta: + display.map.color: darkred + networkLocations: + - + id: zone02-DEFAULT + name: zone02-DEFAULT + type: DEFAULT + netChar: + latency: 1 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poa5GConfig: null + poaWifiConfig: null + geoData: null + physicalLocations: null + - + id: 78327873-c828-47da-8a5b-3c74d251dbbc + name: 4g-macro-cell-4 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '4040404' + geoData: + location: + type: Point + coordinates: + - 7.423547 + - 43.731724 + radius: 400 + path: null + eopMode: null + velocity: null + physicalLocations: + - + id: 67a40b8b-5777-4e96-a896-8622af4a741f + name: 10.100.0.3 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.427423 + - 43.731323 + path: + type: LineString + coordinates: + - + - 7.427423 + - 43.731323 + - + - 7.427463 + - 43.73143 + - + - 7.427455 + - 43.731537 + - + - 7.427423 + - 43.731598 + - + - 7.427439 + - 43.731667 + - + - 7.427479 + - 43.731766 + - + - 7.427951 + - 43.73259 + - + - 7.427989 + - 43.732677 + - + - 7.427962 + - 43.73281 + - + - 7.427852 + - 43.732925 + - + - 7.427655 + - 43.732994 + - + - 7.427556 + - 43.733 + - + - 7.425453 + - 43.73256 + - + - 7.42436 + - 43.7323 + - + - 7.424033 + - 43.732254 + - + - 7.423397 + - 43.73226 + - + - 7.422675 + - 43.73218 + - + - 7.422588 + - 43.7322 + - + - 7.42249 + - 43.732243 + - + - 7.422382 + - 43.732323 + - + - 7.422415 + - 43.73246 + - + - 7.422351 + - 43.73269 + - + - 7.422257 + - 43.73279 + - + - 7.4221 + - 43.73293 + - + - 7.421912 + - 43.733208 + - + - 7.421604 + - 43.733833 + - + - 7.421522 + - 43.734016 + - + - 7.421377 + - 43.73445 + - + - 7.421289 + - 43.73488 + - + - 7.421232 + - 43.735355 + - + - 7.421211 + - 43.73588 + - + - 7.421291 + - 43.73624 + - + - 7.421447 + - 43.736584 + - + - 7.421576 + - 43.73678 + - + - 7.4216 + - 43.7368 + - + - 7.421723 + - 43.73684 + - + - 7.424054 + - 43.73709 + - + - 7.424611 + - 43.737144 + - + - 7.424942 + - 43.73719 + - + - 7.425462 + - 43.737217 + - + - 7.426063 + - 43.737286 + - + - 7.426653 + - 43.737366 + - + - 7.427215 + - 43.73749 + - + - 7.427498 + - 43.737583 + - + - 7.427762 + - 43.73765 + - + - 7.42799 + - 43.737732 + - + - 7.428867 + - 43.738125 + - + - 7.429136 + - 43.73831 + - + - 7.429626 + - 43.738724 + - + - 7.429853 + - 43.73897 + - + - 7.430023 + - 43.739243 + - + - 7.430125 + - 43.7395 + - + - 7.430301 + - 43.740196 + - + - 7.430422 + - 43.741196 + - + - 7.430411 + - 43.741318 + - + - 7.430493 + - 43.741344 + - + - 7.430568 + - 43.741417 + - + - 7.430773 + - 43.74177 + eopMode: REVERSE + velocity: 20 + radius: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-android-car + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A640003 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + - + id: ca3b5b42-0e99-4553-9d19-4696cd8fe469 + name: 4g-macro-cell-5 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '5050505' + geoData: + location: + type: Point + coordinates: + - 7.429257 + - 43.73411 + radius: 400 + path: null + eopMode: null + velocity: null + physicalLocations: + - + id: c18e3f93-79c4-427d-af91-81996adab3e7 + name: 10.1.0.3 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.426565 + - 43.73298 + radius: null + path: null + eopMode: null + velocity: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-ios-videocam + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A010003 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + - + id: 1d2683f4-086e-47d6-abbb-07fa481a25fb + name: 10.10.0.1 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.43166 + - 43.736156 + path: + type: LineString + coordinates: + - + - 7.43166 + - 43.736156 + - + - 7.431723 + - 43.736115 + - + - 7.431162 + - 43.735607 + - + - 7.430685 + - 43.73518 + - + - 7.43043 + - 43.73532 + - + - 7.429067 + - 43.734108 + - + - 7.428863 + - 43.734184 + - + - 7.428388 + - 43.734116 + - + - 7.427817 + - 43.73446 + - + - 7.427689 + - 43.734917 + - + - 7.427581 + - 43.73499 + - + - 7.427308 + - 43.734955 + - + - 7.42723 + - 43.734844 + - + - 7.427281 + - 43.734646 + - + - 7.427411 + - 43.734657 + - + - 7.427709 + - 43.73362 + - + - 7.424581 + - 43.732964 + - + - 7.424312 + - 43.73363 + - + - 7.424512 + - 43.73368 + - + - 7.424534 + - 43.733707 + - + - 7.424534 + - 43.73373 + - + - 7.424477 + - 43.733753 + - + - 7.42423 + - 43.73371 + - + - 7.424029 + - 43.733665 + - + - 7.423999 + - 43.733624 + - + - 7.424058 + - 43.73358 + - + - 7.424246 + - 43.733624 + - + - 7.424522 + - 43.732952 + - + - 7.423748 + - 43.73279 + - + - 7.423545 + - 43.733307 + - + - 7.423508 + - 43.7333 + - + - 7.423535 + - 43.73324 + - + - 7.423668 + - 43.732857 + - + - 7.423455 + - 43.73282 + - + - 7.423356 + - 43.73307 + - + - 7.423199 + - 43.733135 + - + - 7.423043 + - 43.73321 + - + - 7.422855 + - 43.73337 + - + - 7.422744 + - 43.733517 + - + - 7.422694 + - 43.733624 + - + - 7.422659 + - 43.73374 + - + - 7.422578 + - 43.734074 + - + - 7.422604 + - 43.734188 + - + - 7.422541 + - 43.734425 + - + - 7.422509 + - 43.73456 + - + - 7.422697 + - 43.73458 + - + - 7.422847 + - 43.734077 + - + - 7.422881 + - 43.73408 + - + - 7.422756 + - 43.73459 + - + - 7.423254 + - 43.73466 + - + - 7.423413 + - 43.73412 + - + - 7.423512 + - 43.73413 + - + - 7.423351 + - 43.734753 + - + - 7.42326 + - 43.73506 + - + - 7.423223 + - 43.73522 + - + - 7.423173 + - 43.735416 + - + - 7.423072 + - 43.7354 + - + - 7.4232 + - 43.734898 + - + - 7.423191 + - 43.734848 + - + - 7.422693 + - 43.734776 + - + - 7.42256 + - 43.7353 + - + - 7.422513 + - 43.73529 + - + - 7.422655 + - 43.734776 + - + - 7.422423 + - 43.734737 + - + - 7.422299 + - 43.735203 + - + - 7.422233 + - 43.735435 + - + - 7.42215 + - 43.735508 + - + - 7.422032 + - 43.735546 + - + - 7.421888 + - 43.735535 + - + - 7.421866 + - 43.735683 + - + - 7.421872 + - 43.735928 + - + - 7.421975 + - 43.736275 + - + - 7.422107 + - 43.73651 + - + - 7.422269 + - 43.73673 + - + - 7.42493 + - 43.737007 + - + - 7.425109 + - 43.73692 + - + - 7.425631 + - 43.736973 + - + - 7.425674 + - 43.736706 + - + - 7.425721 + - 43.736477 + - + - 7.425736 + - 43.736366 + - + - 7.425787 + - 43.736378 + - + - 7.425655 + - 43.737087 + - + - 7.426748 + - 43.73719 + - + - 7.426931 + - 43.736523 + - + - 7.427054 + - 43.736073 + - + - 7.427052 + - 43.73606 + - + - 7.427027 + - 43.736053 + - + - 7.426908 + - 43.73604 + - + - 7.426963 + - 43.73584 + - + - 7.427089 + - 43.73575 + - + - 7.427368 + - 43.735783 + - + - 7.427427 + - 43.735886 + - + - 7.427096 + - 43.737133 + - + - 7.429107 + - 43.73754 + - + - 7.429795 + - 43.736343 + eopMode: REVERSE + velocity: 9 + radius: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-android-walk + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A0A0001 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + - + id: ec32caa6-ddc6-4f5e-a815-654782b31abb + name: 10.100.0.2 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.427394 + - 43.73243 + path: + type: LineString + coordinates: + - + - 7.427394 + - 43.73243 + - + - 7.427393 + - 43.732353 + - + - 7.427373 + - 43.732296 + - + - 7.427259 + - 43.73213 + - + - 7.427153 + - 43.73204 + - + - 7.42705 + - 43.73197 + - + - 7.426688 + - 43.73188 + - + - 7.426318 + - 43.731792 + - + - 7.425634 + - 43.731598 + - + - 7.425535 + - 43.731598 + - + - 7.425433 + - 43.73161 + - + - 7.425336 + - 43.73161 + - + - 7.425151 + - 43.731556 + - + - 7.424628 + - 43.73141 + - + - 7.424135 + - 43.731285 + - + - 7.423933 + - 43.73179 + - + - 7.423861 + - 43.731827 + - + - 7.423566 + - 43.73177 + - + - 7.423389 + - 43.731663 + - + - 7.423225 + - 43.73154 + - + - 7.422997 + - 43.731396 + - + - 7.422858 + - 43.731335 + - + - 7.422794 + - 43.731304 + - + - 7.422718 + - 43.731285 + - + - 7.422579 + - 43.731262 + - + - 7.422418 + - 43.731255 + - + - 7.422195 + - 43.731262 + - + - 7.421973 + - 43.731285 + - + - 7.421833 + - 43.731297 + - + - 7.421705 + - 43.73133 + - + - 7.421624 + - 43.731327 + - + - 7.421565 + - 43.731323 + - + - 7.421501 + - 43.731297 + - + - 7.421483 + - 43.731228 + - + - 7.421468 + - 43.73116 + - + - 7.421443 + - 43.73103 + - + - 7.421409 + - 43.73089 + - + - 7.421372 + - 43.73075 + - + - 7.421435 + - 43.730694 + - + - 7.421506 + - 43.730682 + - + - 7.421731 + - 43.73061 + - + - 7.421821 + - 43.73055 + - + - 7.421992 + - 43.730377 + - + - 7.42217 + - 43.730206 + - + - 7.422477 + - 43.729942 + - + - 7.422555 + - 43.729897 + - + - 7.422657 + - 43.729866 + - + - 7.422801 + - 43.729847 + - + - 7.422969 + - 43.729862 + - + - 7.423137 + - 43.72991 + - + - 7.423295 + - 43.72997 + - + - 7.423507 + - 43.73005 + - + - 7.423712 + - 43.730137 + - + - 7.42411 + - 43.73032 + - + - 7.424566 + - 43.730526 + - + - 7.424802 + - 43.730633 + - + - 7.42501 + - 43.730743 + - + - 7.425791 + - 43.731174 + - + - 7.426482 + - 43.73159 + - + - 7.426963 + - 43.731895 + - + - 7.427077 + - 43.731968 + - + - 7.427186 + - 43.732048 + - + - 7.42729 + - 43.73213 + - + - 7.427362 + - 43.732227 + - + - 7.427418 + - 43.732353 + - + - 7.427415 + - 43.732384 + - + - 7.427411 + - 43.732407 + - + - 7.427394 + - 43.73243 + - + - 7.427383 + - 43.732483 + - + - 7.427288 + - 43.732548 + - + - 7.427203 + - 43.73256 + - + - 7.427085 + - 43.732555 + - + - 7.426884 + - 43.732517 + - + - 7.425842 + - 43.73234 + - + - 7.424798 + - 43.732162 + - + - 7.424667 + - 43.73214 + - + - 7.42444 + - 43.7321 + - + - 7.424072 + - 43.732044 + - + - 7.423361 + - 43.731934 + - + - 7.423054 + - 43.7319 + - + - 7.42274 + - 43.731876 + - + - 7.422414 + - 43.73187 + - + - 7.422089 + - 43.731876 + - + - 7.421887 + - 43.731884 + - + - 7.421699 + - 43.731895 + - + - 7.421429 + - 43.731926 + - + - 7.421102 + - 43.73198 + - + - 7.420582 + - 43.732067 + - + - 7.420058 + - 43.732174 + - + - 7.419941 + - 43.7322 + - + - 7.419804 + - 43.732254 + - + - 7.419237 + - 43.732403 + - + - 7.419181 + - 43.732418 + - + - 7.419127 + - 43.73245 + - + - 7.419071 + - 43.73248 + - + - 7.419063 + - 43.732513 + - + - 7.419017 + - 43.732548 + - + - 7.418957 + - 43.73256 + - + - 7.418904 + - 43.732555 + - + - 7.418859 + - 43.732525 + - + - 7.418795 + - 43.73252 + - + - 7.418733 + - 43.732536 + - + - 7.418541 + - 43.73259 + - + - 7.418358 + - 43.732643 + - + - 7.418179 + - 43.732704 + - + - 7.417854 + - 43.732807 + - + - 7.417669 + - 43.732845 + - + - 7.417487 + - 43.732895 + - + - 7.417425 + - 43.732925 + - + - 7.417405 + - 43.73295 + - + - 7.417605 + - 43.73323 + - + - 7.417778 + - 43.733547 + - + - 7.417915 + - 43.733955 + - + - 7.41809 + - 43.734455 + - + - 7.418133 + - 43.734684 + - + - 7.418188 + - 43.7349 + - + - 7.418289 + - 43.735046 + - + - 7.4184 + - 43.735184 + - + - 7.418585 + - 43.735382 + - + - 7.418671 + - 43.735455 + - + - 7.418768 + - 43.73552 + - + - 7.419179 + - 43.735825 + - + - 7.419366 + - 43.73598 + - + - 7.419533 + - 43.73615 + - + - 7.419881 + - 43.736473 + - + - 7.420241 + - 43.736786 + - + - 7.420468 + - 43.73692 + - + - 7.420685 + - 43.73703 + - + - 7.420944 + - 43.73716 + - + - 7.421228 + - 43.737274 + - + - 7.421522 + - 43.737373 + - + - 7.421826 + - 43.73747 + - + - 7.422055 + - 43.73752 + - + - 7.422283 + - 43.73756 + - + - 7.422403 + - 43.73758 + - + - 7.422472 + - 43.737526 + - + - 7.422561 + - 43.737473 + - + - 7.422688 + - 43.737442 + - + - 7.422814 + - 43.737434 + - + - 7.423132 + - 43.737423 + - + - 7.423523 + - 43.737408 + - + - 7.423972 + - 43.737442 + - + - 7.424034 + - 43.73743 + - + - 7.424064 + - 43.73741 + - + - 7.424055 + - 43.737385 + - + - 7.424028 + - 43.73735 + - + - 7.423706 + - 43.737286 + - + - 7.423228 + - 43.737183 + - + - 7.422826 + - 43.737103 + - + - 7.42263 + - 43.737076 + - + - 7.422426 + - 43.737053 + - + - 7.42209 + - 43.73702 + - + - 7.421949 + - 43.73701 + - + - 7.421754 + - 43.737003 + - + - 7.421639 + - 43.736984 + - + - 7.421527 + - 43.73696 + - + - 7.421421 + - 43.73692 + - + - 7.421323 + - 43.73687 + - + - 7.421228 + - 43.736813 + - + - 7.421133 + - 43.73675 + - + - 7.421065 + - 43.736702 + - + - 7.421003 + - 43.73664 + - + - 7.420847 + - 43.73652 + - + - 7.420513 + - 43.736244 + - + - 7.420098 + - 43.7359 + - + - 7.419858 + - 43.735672 + - + - 7.41939 + - 43.73522 + - + - 7.41916 + - 43.734985 + - + - 7.418728 + - 43.734505 + - + - 7.418581 + - 43.734325 + - + - 7.418515 + - 43.73424 + - + - 7.41849 + - 43.734142 + - + - 7.418601 + - 43.733677 + - + - 7.418681 + - 43.73336 + - + - 7.418772 + - 43.733047 + - + - 7.418813 + - 43.732906 + - + - 7.418878 + - 43.732742 + - + - 7.418915 + - 43.73265 + - + - 7.41891 + - 43.732605 + - + - 7.418904 + - 43.732555 + - + - 7.418859 + - 43.732525 + - + - 7.418849 + - 43.73247 + - + - 7.418872 + - 43.732426 + - + - 7.418902 + - 43.73241 + - + - 7.418951 + - 43.732403 + - + - 7.419008 + - 43.732403 + - + - 7.419118 + - 43.73241 + - + - 7.419225 + - 43.73239 + - + - 7.4198 + - 43.73224 + - + - 7.419934 + - 43.732185 + - + - 7.420066 + - 43.73216 + - + - 7.420587 + - 43.73205 + - + - 7.421116 + - 43.73196 + - + - 7.421403 + - 43.73192 + - + - 7.421688 + - 43.731884 + - + - 7.422084 + - 43.73186 + - + - 7.422473 + - 43.731853 + - + - 7.422827 + - 43.73187 + - + - 7.42319 + - 43.731903 + - + - 7.423363 + - 43.731922 + - + - 7.423535 + - 43.73195 + - + - 7.423881 + - 43.732002 + - + - 7.425014 + - 43.73219 + - + - 7.425588 + - 43.73229 + - + - 7.426168 + - 43.732388 + - + - 7.426901 + - 43.732506 + - + - 7.427068 + - 43.732536 + - + - 7.427147 + - 43.732548 + - + - 7.427227 + - 43.732548 + - + - 7.427279 + - 43.732533 + - + - 7.427352 + - 43.73249 + - + - 7.427394 + - 43.73243 + eopMode: LOOP + velocity: 20 + radius: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-android-car + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A640002 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + - + id: bddd61c9-6ddd-4f7e-9082-0d004fced7ab + name: 5g-small-cell-5 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '505050505' + geoData: + location: + type: Point + coordinates: + - 7.420653 + - 43.731743 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 8e0dad0d-72c9-4b6d-850b-06b02243b1d3 + name: 5g-small-cell-6 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '606060606' + geoData: + location: + type: Point + coordinates: + - 7.421865 + - 43.733368 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 7d3688cc-0dda-48b1-a171-b817c176e053 + name: 5g-small-cell-7 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '808080808' + geoData: + location: + type: Point + coordinates: + - 7.42509 + - 43.73189 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 91691048-64bb-4d2f-917f-4219a95881c0 + name: 5g-small-cell-8 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '909090909' + geoData: + location: + type: Point + coordinates: + - 7.42704 + - 43.732407 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + interFogLatency: null + interFogLatencyVariation: null + interFogThroughput: null + interFogPacketLoss: null + interEdgeLatency: null + interEdgeLatencyVariation: null + interEdgeThroughput: null + interEdgePacketLoss: null + edgeFogLatency: null + edgeFogLatencyVariation: null + edgeFogThroughput: null + edgeFogPacketLoss: null + userMeta: null + - + id: 472c9927-800a-46e9-9d62-d08b09080dd5 + name: zone03 + type: ZONE + netChar: + latency: 5 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + meta: + display.map.color: darkorange + networkLocations: + - + id: zone03-DEFAULT + name: zone03-DEFAULT + type: DEFAULT + netChar: + latency: 1 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poa5GConfig: null + poaWifiConfig: null + geoData: null + physicalLocations: null + - + id: e4ce8267-5433-4b2b-aa5a-9a40de76b685 + name: 4g-macro-cell-6 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '6060606' + geoData: + location: + type: Point + coordinates: + - 7.421007 + - 43.737087 + radius: 400 + path: null + eopMode: null + velocity: null + physicalLocations: + - + id: c3bc8d8d-170b-45bb-93a9-8ce658571321 + name: 10.1.0.1 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.421802 + - 43.736515 + radius: null + path: null + eopMode: null + velocity: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-ios-videocam + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A010001 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + - + id: 663df9f0-57af-43aa-ba2e-e45a4b2f3c28 + name: 4g-macro-cell-7 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '7070707' + geoData: + location: + type: Point + coordinates: + - 7.425841 + - 43.739426 + radius: 400 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: a3067167-cdaf-4264-9e32-abfc0ede0564 + name: 5g-small-cell-10 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: 0A0A0A0A + geoData: + location: + type: Point + coordinates: + - 7.426598 + - 43.73844 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 2c2ba76c-8880-4c5b-a949-a161713910f4 + name: 5g-small-cell-11 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: 0B0B0B0B + geoData: + location: + type: Point + coordinates: + - 7.428264 + - 43.73876 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: d9ca5e58-15fe-4161-840f-f3155db3729b + name: 5g-small-cell-12 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: 0C0C0C0C + geoData: + location: + type: Point + coordinates: + - 7.42738 + - 43.739075 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 8414d39b-d3c3-45e1-a235-cf93d211579c + name: 5g-small-cell-9 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '07070707' + geoData: + location: + type: Point + coordinates: + - 7.417394 + - 43.735794 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + interFogLatency: null + interFogLatencyVariation: null + interFogThroughput: null + interFogPacketLoss: null + interEdgeLatency: null + interEdgeLatencyVariation: null + interEdgeThroughput: null + interEdgePacketLoss: null + edgeFogLatency: null + edgeFogLatencyVariation: null + edgeFogThroughput: null + edgeFogPacketLoss: null + userMeta: null + - + id: d56c4e67-0e0f-4456-9431-290de7b674c8 + name: zone04 + type: ZONE + netChar: + latency: 5 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + meta: + display.map.color: limegreen + networkLocations: + - + id: zone04-DEFAULT + name: zone04-DEFAULT + type: DEFAULT + netChar: + latency: 1 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poa5GConfig: null + poaWifiConfig: null + geoData: null + physicalLocations: null + - + id: fc4d9ec8-ebb6-4b5d-a281-bb74af729b4a + name: 4g-macro-cell-8 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '8080808' + geoData: + location: + type: Point + coordinates: + - 7.429504 + - 43.74301 + radius: 400 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: b73b3ef5-dba0-44af-a648-bbda7191c249 + name: 4g-macro-cell-9 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: '9090909' + geoData: + location: + type: Point + coordinates: + - 7.432551 + - 43.746544 + radius: 400 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: e1d47a4b-0664-4915-81ea-eb0d70af15a7 + name: 4g-macro-cell-10 + type: POA-4G + netChar: + latency: 10 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa4GConfig: + cellId: A0A0A0A + geoData: + location: + type: Point + coordinates: + - 7.437573 + - 43.748993 + radius: 400 + path: null + eopMode: null + velocity: null + physicalLocations: + - + id: 4e423f57-daef-4c1c-b30e-45e88e3c9366 + name: 10.1.0.4 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.438248 + - 43.74835 + radius: null + path: null + eopMode: null + velocity: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-ios-videocam + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A010004 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + - + id: 824cf1bf-f91d-44c2-906d-e939fa3339cd + name: 10.10.0.2 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.438755 + - 43.748512 + path: + type: LineString + coordinates: + - + - 7.438755 + - 43.748512 + - + - 7.438267 + - 43.748566 + - + - 7.437795 + - 43.7484 + - + - 7.437684 + - 43.748253 + - + - 7.437555 + - 43.748203 + - + - 7.437341 + - 43.748203 + - + - 7.43673 + - 43.747974 + - + - 7.436623 + - 43.747704 + - + - 7.436237 + - 43.747643 + - + - 7.435969 + - 43.74743 + - + - 7.435841 + - 43.74717 + - + - 7.435504 + - 43.74695 + - + - 7.434829 + - 43.74691 + - + - 7.434293 + - 43.746685 + - + - 7.433882 + - 43.746166 + - + - 7.433431 + - 43.746063 + - + - 7.432831 + - 43.745686 + - + - 7.432585 + - 43.745182 + - + - 7.432767 + - 43.744633 + - + - 7.432552 + - 43.744244 + - + - 7.432617 + - 43.743763 + - + - 7.432305 + - 43.743305 + - + - 7.431682 + - 43.742676 + - + - 7.431136 + - 43.74201 + - + - 7.430524 + - 43.741123 + - + - 7.430432 + - 43.740696 + - + - 7.430382 + - 43.740437 + - + - 7.430384 + - 43.74021 + - + - 7.430288 + - 43.739372 + - + - 7.429773 + - 43.73849 + - + - 7.429976 + - 43.738228 + - + - 7.429654 + - 43.73791 + - + - 7.429371 + - 43.73765 + - + - 7.430027 + - 43.736446 + eopMode: REVERSE + velocity: 9 + radius: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-android-walk + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A0A0002 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + - + id: 097f79f4-bf76-4be0-be28-5acc3bdb0dba + name: 10.100.0.4 + type: UE + geoData: + location: + type: Point + coordinates: + - 7.438357 + - 43.74781 + path: + type: LineString + coordinates: + - + - 7.438357 + - 43.74781 + - + - 7.438296 + - 43.747852 + - + - 7.438229 + - 43.74791 + - + - 7.43813 + - 43.74803 + - + - 7.438074 + - 43.748108 + - + - 7.438025 + - 43.748264 + - + - 7.437991 + - 43.748398 + - + - 7.437937 + - 43.748512 + - + - 7.437883 + - 43.74859 + - + - 7.437741 + - 43.74875 + - + - 7.437593 + - 43.748924 + - + - 7.437481 + - 43.74905 + - + - 7.437416 + - 43.74911 + - + - 7.437419 + - 43.749146 + - + - 7.43739 + - 43.749184 + - + - 7.437339 + - 43.749203 + - + - 7.437285 + - 43.74919 + - + - 7.437256 + - 43.74917 + - + - 7.43555 + - 43.74844 + - + - 7.435097 + - 43.748184 + - + - 7.435008 + - 43.748077 + - + - 7.434885 + - 43.747814 + - + - 7.434788 + - 43.747723 + - + - 7.433391 + - 43.74693 + - + - 7.433243 + - 43.74679 + - + - 7.43301 + - 43.746536 + - + - 7.432804 + - 43.74642 + - + - 7.432353 + - 43.74604 + - + - 7.431985 + - 43.74559 + - + - 7.431216 + - 43.74428 + - + - 7.430556 + - 43.74307 + - + - 7.430336 + - 43.741848 + - + - 7.430226 + - 43.74178 + - + - 7.430038 + - 43.741756 + - + - 7.429864 + - 43.741695 + - + - 7.429766 + - 43.74158 + - + - 7.429731 + - 43.741432 + - + - 7.429797 + - 43.741234 + - + - 7.42986 + - 43.74115 + - + - 7.42995 + - 43.74109 + - + - 7.430094 + - 43.74108 + - + - 7.430255 + - 43.74114 + - + - 7.430392 + - 43.74126 + - + - 7.430475 + - 43.7415 + - + - 7.430642 + - 43.742832 + - + - 7.430717 + - 43.74308 + - + - 7.432086 + - 43.745556 + - + - 7.432441 + - 43.74601 + - + - 7.433179 + - 43.746563 + - + - 7.434716 + - 43.747498 + - + - 7.434871 + - 43.74766 + - + - 7.435108 + - 43.74807 + - + - 7.435305 + - 43.74823 + - + - 7.435923 + - 43.748547 + - + - 7.436871 + - 43.748955 + - + - 7.437138 + - 43.749054 + - + - 7.437248 + - 43.74907 + - + - 7.437368 + - 43.749058 + - + - 7.43747 + - 43.74894 + - + - 7.437652 + - 43.748714 + - + - 7.437765 + - 43.74859 + - + - 7.437835 + - 43.748512 + - + - 7.437883 + - 43.74838 + - + - 7.437918 + - 43.74817 + - + - 7.437931 + - 43.748116 + - + - 7.438001 + - 43.747997 + - + - 7.438098 + - 43.747868 + - + - 7.438138 + - 43.747826 + - + - 7.438159 + - 43.74777 + - + - 7.438159 + - 43.747692 + - + - 7.438173 + - 43.747616 + - + - 7.438205 + - 43.747566 + - + - 7.438264 + - 43.747528 + - + - 7.438347 + - 43.747513 + - + - 7.438443 + - 43.74752 + - + - 7.438505 + - 43.74755 + - + - 7.438548 + - 43.7476 + - + - 7.438569 + - 43.747654 + - + - 7.438545 + - 43.747726 + - + - 7.438494 + - 43.747772 + - + - 7.438431 + - 43.7478 + - + - 7.438357 + - 43.74781 + eopMode: LOOP + velocity: 20 + radius: null + wireless: true + wirelessType: 'wifi,5g,4g' + meta: + display.map.icon: ion-android-car + netChar: + latencyDistribution: Normal + throughputDl: 1000 + throughputUl: 1000 + latency: null + latencyVariation: null + throughput: null + packetLoss: null + macId: 005C0A640004 + isExternal: null + networkLocationsInRange: null + connected: null + dataNetwork: null + userMeta: null + processes: null + linkLatency: null + linkLatencyVariation: null + linkThroughput: null + linkPacketLoss: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa5GConfig: null + poaWifiConfig: null + - + id: 3fbf9ec8-3932-455c-8352-0d06b7bb7a15 + name: 5g-small-cell-13 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: 0D0D0D0D + geoData: + location: + type: Point + coordinates: + - 7.431907 + - 43.74543 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 80e3b677-56cb-495c-b798-e19f96d491b9 + name: 5g-small-cell-14 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: 0E0E0E0E + geoData: + location: + type: Point + coordinates: + - 7.431824 + - 43.74787 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: dcb66c87-1854-4c8e-ae88-72b14df9aaff + name: 5g-small-cell-15 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: 0F0F0F0F + geoData: + location: + type: Point + coordinates: + - 7.433529 + - 43.74865 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 10b048d1-2fba-486d-89a0-d1a3191b90b4 + name: 5g-small-cell-16 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '010101010' + geoData: + location: + type: Point + coordinates: + - 7.434421 + - 43.749107 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 35602880-9727-4ed6-8f53-fe0ffab22cb4 + name: 5g-small-cell-17 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '111111111' + geoData: + location: + type: Point + coordinates: + - 7.437487 + - 43.7487 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 4aef0f33-51d2-472c-8441-b5c55f0de626 + name: 5g-small-cell-18 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '212121212' + geoData: + location: + type: Point + coordinates: + - 7.438839 + - 43.749706 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 3396c6ae-28f8-4c8b-ba12-9991bddeed61 + name: 5g-small-cell-19 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '313131313' + geoData: + location: + type: Point + coordinates: + - 7.4371 + - 43.750282 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + - + id: 246f3830-3b56-4359-9452-b17f34426888 + name: 5g-small-cell-20 + type: POA-5G + netChar: + latency: 4 + latencyVariation: 1 + throughputDl: 1000 + throughputUl: 1000 + latencyDistribution: null + throughput: null + packetLoss: null + poa5GConfig: + cellId: '414141414' + geoData: + location: + type: Point + coordinates: + - 7.436006 + - 43.749382 + radius: 100 + path: null + eopMode: null + velocity: null + terminalLinkLatency: null + terminalLinkLatencyVariation: null + terminalLinkThroughput: null + terminalLinkPacketLoss: null + meta: null + userMeta: null + cellularPoaConfig: null + poa4GConfig: null + poaWifiConfig: null + physicalLocations: null + interFogLatency: null + interFogLatencyVariation: null + interFogThroughput: null + interFogPacketLoss: null + interEdgeLatency: null + interEdgeLatencyVariation: null + interEdgeThroughput: null + interEdgePacketLoss: null + edgeFogLatency: null + edgeFogLatencyVariation: null + edgeFogThroughput: null + edgeFogPacketLoss: null + userMeta: null + interZoneLatency: null + interZoneLatencyVariation: null + interZoneThroughput: null + interZonePacketLoss: null + meta: null + userMeta: null + interDomainLatency: null + interDomainLatencyVariation: null + interDomainThroughput: null + interDomainPacketLoss: null + meta: null +id: null +description: null +config: null diff --git a/networks/4g-5g-wifi-macro.yaml b/networks/4g-5g-wifi-macro.yaml index cc00316ef3a309598462ad1837baa8459c558948..dc07779a2dc82a4a462e2f75f5b91fa1db11b9ab 100644 --- a/networks/4g-5g-wifi-macro.yaml +++ b/networks/4g-5g-wifi-macro.yaml @@ -1,4 +1,4 @@ -version: 1.8.1 +version: 1.9.0 name: 4g-5g-wifi-macro deployment: netChar: @@ -9,6 +9,8 @@ deployment: throughputUl: 1000 connectivity: model: OPEN + d2d: + d2dMaxDistance: 100 userMeta: mec-sandbox: '{"defaultStaticUeCount": 1, "defaultLowVelocityUeCount": 1, "defaultHighVelocityUeCount": 1, "highVelocitySpeedThreshold": 10}' network-info: '{"type": "local", "path":"4G-Macro-Network-Topology.png"}' @@ -3542,7 +3544,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: '404040404' + cellId: '04040404' geoData: location: type: Point @@ -3596,7 +3598,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: '707070707' + cellId: '07070707' geoData: location: type: Point @@ -3763,7 +3765,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: A0A0A0A0A + cellId: 0A0A0A0A geoData: location: type: Point @@ -3781,7 +3783,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: B0B0B0B0B + cellId: 0B0B0B0B geoData: location: type: Point @@ -3799,7 +3801,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: C0C0C0C0C + cellId: 0C0C0C0C geoData: location: type: Point @@ -4362,7 +4364,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: D0D0D0D0D + cellId: 0D0D0D0D geoData: location: type: Point @@ -4380,7 +4382,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: E0E0E0E0E + cellId: 0E0E0E0E geoData: location: type: Point @@ -4398,7 +4400,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: F0F0F0F0F + cellId: 0F0F0F0F geoData: location: type: Point diff --git a/networks/4g-macro.yaml b/networks/4g-macro.yaml index 024de76f44f16da6809e824d7b3dfd94c633a44d..0f31a9a1bee9c9b7989fe84ae78a65d6b9fe0f53 100644 --- a/networks/4g-macro.yaml +++ b/networks/4g-macro.yaml @@ -1,4 +1,4 @@ -version: 1.8.1 +version: 1.9.0 name: 4g-macro deployment: netChar: @@ -9,6 +9,8 @@ deployment: throughputUl: 1000 connectivity: model: OPEN + d2d: + d2dMaxDistance: 100 userMeta: mec-sandbox: '{"defaultStaticUeCount": 1, "defaultLowVelocityUeCount": 1, "defaultHighVelocityUeCount": 1, "highVelocitySpeedThreshold": 10}' network-info: '{"type": "local", "path":"4G-Macro-Network-Topology.png"}' diff --git a/networks/4g-wifi-macro.yaml b/networks/4g-wifi-macro.yaml index 49530d0c7ea3ee0350fabbf270b195986964e24f..23091818be345b88d3a14ced03de542634c10afe 100644 --- a/networks/4g-wifi-macro.yaml +++ b/networks/4g-wifi-macro.yaml @@ -1,4 +1,4 @@ -version: 1.8.1 +version: 1.9.0 name: 4g-wifi-macro deployment: netChar: @@ -9,6 +9,8 @@ deployment: throughputUl: 1000 connectivity: model: OPEN + d2d: + d2dMaxDistance: 100 userMeta: mec-sandbox: '{"defaultStaticUeCount": 1, "defaultLowVelocityUeCount": 1, "defaultHighVelocityUeCount": 1, "highVelocitySpeedThreshold": 10}' network-info: '{"type": "local", "path":"4G-Macro-Network-Topology.png"}' diff --git a/networks/dual-mep-4g-5g-wifi-macro.yaml b/networks/dual-mep-4g-5g-wifi-macro.yaml index 0078c2e67ac7265b4d693f4b06bee367057f4a6f..2c07babee880e943f672e4124e1ff030c3f97e04 100644 --- a/networks/dual-mep-4g-5g-wifi-macro.yaml +++ b/networks/dual-mep-4g-5g-wifi-macro.yaml @@ -1,4 +1,4 @@ -version: 1.8.1 +version: 1.9.0 name: dual-mep-4g-5g-wifi-macro deployment: netChar: @@ -9,6 +9,8 @@ deployment: throughputUl: 1000 connectivity: model: OPEN + d2d: + d2dMaxDistance: 100 userMeta: mec-sandbox: '{"defaultStaticUeCount": 1, "defaultLowVelocityUeCount": 1, "defaultHighVelocityUeCount": 1, "highVelocitySpeedThreshold": 10}' network-info: '{"type": "local", "path":"4G-Macro-Network-Topology.png"}' @@ -3529,7 +3531,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: '404040404' + cellId: '04040404' geoData: location: type: Point @@ -3583,7 +3585,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: '707070707' + cellId: '07070707' geoData: location: type: Point @@ -3750,7 +3752,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: A0A0A0A0A + cellId: 0A0A0A0A geoData: location: type: Point @@ -3768,7 +3770,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: B0B0B0B0B + cellId: 0B0B0B0B geoData: location: type: Point @@ -3786,7 +3788,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: C0C0C0C0C + cellId: geoData: location: type: Point @@ -4433,7 +4435,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: D0D0D0D0D + cellId: 0D0D0D0D geoData: location: type: Point @@ -4451,7 +4453,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: E0E0E0E0E + cellId: 0E0E0E0E geoData: location: type: Point @@ -4469,7 +4471,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: F0F0F0F0F + cellId: 0F0F0F0F geoData: location: type: Point diff --git a/networks/dual-mep-short-path.yaml b/networks/dual-mep-short-path.yaml index 8a1e61d7bfe5d2888565fca90c0da16163759b4c..7b5ca2e1dd377295357b94cbafd7d735dd3d3ac9 100644 --- a/networks/dual-mep-short-path.yaml +++ b/networks/dual-mep-short-path.yaml @@ -1,4 +1,4 @@ -version: 1.8.1 +version: 1.9.0 name: dual-mep-short-path deployment: netChar: @@ -9,6 +9,8 @@ deployment: throughputUl: 1000 connectivity: model: OPEN + d2d: + d2dMaxDistance: 100 userMeta: mec-sandbox: '{"defaultStaticUeCount": 1, "defaultLowVelocityUeCount": 1, "defaultHighVelocityUeCount": 1, "highVelocitySpeedThreshold": 10}' network-info: '{"type": "local", "path":"4G-Macro-Network-Topology.png"}' @@ -1216,7 +1218,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: '404040404' + cellId: '04040404' geoData: location: type: Point @@ -1270,7 +1272,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: '707070707' + cellId: '07070707' geoData: location: type: Point @@ -1437,7 +1439,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: A0A0A0A0A + cellId: 0A0A0A0A geoData: location: type: Point @@ -1455,7 +1457,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: B0B0B0B0B + cellId: 0B0B0B0B geoData: location: type: Point @@ -1473,7 +1475,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: C0C0C0C0C + cellId: 0C0C0C0C geoData: location: type: Point @@ -1879,7 +1881,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: D0D0D0D0D + cellId: 0D0D0D0D geoData: location: type: Point @@ -1897,7 +1899,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: E0E0E0E0E + cellId: 0E0E0E0E geoData: location: type: Point @@ -1915,7 +1917,7 @@ deployment: throughputDl: 1000 throughputUl: 1000 poa5GConfig: - cellId: F0F0F0F0F + cellId: 0F0F0F0F geoData: location: type: Point