Skip to content
This repository has been archived by the owner on Aug 7, 2018. It is now read-only.

Commit

Permalink
Modificando metodo para filtrar partidos
Browse files Browse the repository at this point in the history
Signed-off-by: Brenddon Gontijo <[email protected]>
Signed-off-by: Ana Carolina Lopes <[email protected]>
Signed-off-by: Elaine Cristina Meirelles <[email protected]>
  • Loading branch information
ecmeirelles committed Jun 16, 2015
1 parent f065ced commit b2f68e7
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions radar_parlamentar/static/files/codes/js/radar_plot.js
Original file line number Diff line number Diff line change
Expand Up @@ -649,10 +649,38 @@ Plot = (function ($) {
// });
// }


// Retorna partidos excluindo partidos ausentes no período
function get_partidos_no_periodo(period) {
return partidos.filter(function(d){ return d.t[period] > 0;});
var partidos_periodo = partidos.filter(function(d){ return d.t[period] > 0;});

var partidos_filtrados = [];

for(var contador_partidos = 0; contador_partidos < partidos_periodo.length; contador_partidos++)
{
if(partidos_filtrados.length == 0)
{
partidos_filtrados.push(partidos_periodo[contador_partidos]);
}
else
{
var encontrou_partido_igual = false;

for(var i = 0; i < partidos_filtrados.length; i++)
{
if(partidos_filtrados[i].nome == partidos_periodo[contador_partidos].nome)
{
encontrou_partido_igual = true;
}
}

if(encontrou_partido_igual == false)
{
partidos_filtrados.push(partidos_periodo[contador_partidos]);
}
}
}

return partidos_filtrados;
}

function get_partidos_ausentes_no_periodo(period) {
Expand Down

0 comments on commit b2f68e7

Please sign in to comment.