Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit fd91671

Browse files
committed
Fix node id > 250
1 parent 4ff14f2 commit fd91671

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

4.9 MB
Binary file not shown.

split_channel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from datetime import timedelta
99

1010

11-
channel = [dict() for _ in range(250)]
11+
channel = [dict() for _ in range(255)]
1212

1313

1414
def view_params(lat1D, lon1D, alt1, lat2D, lon2D, alt2):
@@ -139,7 +139,7 @@ def readdata(data):
139139
station_height = 0
140140

141141

142-
for x in range(0,250):
142+
for x in range(0,255):
143143
channeldata = sorted(channel[x])
144144
if len(channeldata) < 100:
145145
continue

0 commit comments

Comments
 (0)