8 lines
256 B
Text
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 -%>
|
|
]
|