puppet/modules/rhizo_base/templates/bts_defs.js.erb
Keith Whyte be9d9573b8 Update the meas-web installation
Use new repo and add BTS definitions file
2020-04-28 23:17:38 +02:00

8 lines
256 B
Text

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 -%>
]