You are on page 1of 1

//Build script with C/C++/C# syntax.

//LTE Overlapping Sectors Script By Paletero


//Overlapping_Sectors is your metric to be displayed.
//10dBm is selected as the threshold, you can change it for other.
//The N1 to N7 variables are the cells ordered by RSRP Levels, you can add two
more.
//For example N1 is [LTE Serving/Intra-Freq Neighbor Cells].[RSRP (dBm)].[Sort By:
RSRP (dBm)].[Top #1]

if (N8+10>=N1)
Overlapping_Sectors=7;
else if (N7+10>=N1)
Overlapping_Sectors=6;
else if (N6+10>=N1)
Overlapping_Sectors=5;
else if (N5+10>=N1)
Overlapping_Sectors=4;
else if (N4+10>=N1 )
Overlapping_Sectors=3;
else if (N3+10>=N1)
Overlapping_Sectors=2;
else if (N2+10>=N1)
Overlapping_Sectors=1;
else
Overlapping_Sectors=0;

You might also like