Commit 1cdc329a authored by Yann Garcia's avatar Yann Garcia
Browse files

Add MEC simulator

parent 58b15bea
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
accessPointId,zoneId,connectionType,operationStatus,numberOfUsers,interestRealm,resourceURL
001010000000000000000000000000001,zone01,Macro,Serviceable,5,LA,http://example.com/exampleAPI/location/v1/zones/zone01/accessPoints/ap001
001010000000000000000000000000010,zone01,Macro,Unserviceable,0,DC,http://example.com/exampleAPI/location/v1/zones/zone01/accessPoints/ap002
001010000000000000000000000000011,zone01,Macro,Serviceable,5,NJ,http://example.com/exampleAPI/location/v1/zones/zone01/accessPoints/ap003
002010000000000000000000000000001,zone02,Macro,Serviceable,5,LA,http://example.com/exampleAPI/location/v1/zones/zone02/accessPoints/ap001
002010000000000000000000000000010,zone02,Macro,Unserviceable,0,DC,http://example.com/exampleAPI/location/v1/zones/zone02/accessPoints/ap002
002010000000000000000000000000011,zone02,Macro,Serviceable,5,NJ,http://example.com/exampleAPI/location/v1/zones/zone02/accessPoints/ap003
+3 −0
Original line number Diff line number Diff line
cellId,appInst,type,address
134217738,appInst01,1,192.0.0.1
134217739,appInst02,1,192.0.0.2

simu/data/cells.csv

0 → 100644
+3 −0
Original line number Diff line number Diff line
cellId,mcc,mnc,hoStatus,seconds,nanoseconds
134217738,1,1,COMPLETED,1577836800,0
134217739,1,1,COMPLETED,1577836800,0
+4 −0
Original line number Diff line number Diff line
accessPointId,latitude,longitude,altitude,accuracy
001010000000000000000000000000001,90.123,80.123,10.0,0
001010000000000000000000000000010,91.123,81.123,12.0,1
001010000000000000000000000000011,93.123,83.123,16.0,3
+6 −0
Original line number Diff line number Diff line
id,address,accessPointId,zoneId,resourceURL,seconds,nanoSeconds,ueTag
toto1,acr:192.0.0.1,001010000000000000000000000000001,zone01,http://example.com/exampleAPI/location/v2/users?address:acr:192.0.0.1,1483231138,0,UeTagA
toto2,acr:192.0.2.2,001010000000000000000000000000001,zone01,http://example.com/exampleAPI/location/v1/users?address:acr:192.0.2.2,1483231138,0,UeTagB
toto3,acr:192.0.2.3,001010000000000000000000000000010,zone01,http://example.com/exampleAPI/location/v1/users?address:acr:192.0.2.3,1483231138,0,UeTagC
toto4,acr:192.0.2.4,001010000000000000000000000000001,zone02,http://example.com/exampleAPI/location/v1/users?address:acr:192.0.2.4,1483231138,0,UeTagD
toto5,acr:192.0.2.5,001010000000000000000000000000010,zone02,http://example.com/exampleAPI/location/v1/users?address:acr:192.0.2.5,1483231138,0,UeTagE
Loading