Update the meas-web installation

Use new repo and add BTS definitions file
This commit is contained in:
Keith Whyte 2020-04-28 23:17:38 +02:00
parent 46eb3e89a6
commit be9d9573b8
2 changed files with 19 additions and 4 deletions

View file

@ -0,0 +1,8 @@
const bts_defs = [
// Index, Name, ARFCN, BSIC
<% @bts.each_with_index do |bts, index| -%>
<% bts["trx"].each_with_index do |trx, trx_i| -%>
[<%= index %>, <%= trx_i %>, "<%= bts["name"] %>", <%= trx["chan"]%>, <%= bts["bsic"]%>],
<% end -%>
<% end -%>
]