|
@ -29,7 +29,7 @@ var ID = 0; |
|
|
function partsePluviometer(row) { |
|
|
function partsePluviometer(row) { |
|
|
displacement += offset; |
|
|
displacement += offset; |
|
|
return { |
|
|
return { |
|
|
key: ++ID, |
|
|
|
|
|
|
|
|
ID: ++ID, |
|
|
title: "Pluviometro", |
|
|
title: "Pluviometro", |
|
|
coordinate: { |
|
|
coordinate: { |
|
|
latitude: row["Latitude"] + displacement, |
|
|
latitude: row["Latitude"] + displacement, |
|
@ -43,7 +43,7 @@ function partsePluviometer(row) { |
|
|
function parseFloodZones(row) { |
|
|
function parseFloodZones(row) { |
|
|
displacement += offset; |
|
|
displacement += offset; |
|
|
return { |
|
|
return { |
|
|
key: ++ID, |
|
|
|
|
|
|
|
|
ID: ++ID, |
|
|
title: row["Passable"] == 0 ? "Transponível" : "Intransponível", |
|
|
title: row["Passable"] == 0 ? "Transponível" : "Intransponível", |
|
|
coordinate: { |
|
|
coordinate: { |
|
|
latitude: row["Latitude"], |
|
|
latitude: row["Latitude"], |
|
@ -59,7 +59,7 @@ function parseRiverLevel(row) { |
|
|
const riverLevel = ["Baixo", "Rio normal", "Alto", "Transfordando"]; |
|
|
const riverLevel = ["Baixo", "Rio normal", "Alto", "Transfordando"]; |
|
|
const riverIdx = row["RiverIdx"]; |
|
|
const riverIdx = row["RiverIdx"]; |
|
|
return { |
|
|
return { |
|
|
key: ++ID, |
|
|
|
|
|
|
|
|
ID: ++ID, |
|
|
title: "Nível do rio", |
|
|
title: "Nível do rio", |
|
|
coordinate: { |
|
|
coordinate: { |
|
|
latitude: row["Latitude"], |
|
|
latitude: row["Latitude"], |
|
@ -82,7 +82,7 @@ function parseRainLevel(row) { |
|
|
]; |
|
|
]; |
|
|
const rainIdx = row["RainIdx"]; |
|
|
const rainIdx = row["RainIdx"]; |
|
|
return { |
|
|
return { |
|
|
key: ++ID, |
|
|
|
|
|
|
|
|
ID: ++ID, |
|
|
title: "Nível da chuva", |
|
|
title: "Nível da chuva", |
|
|
coordinate: { |
|
|
coordinate: { |
|
|
latitude: row["Latitude"], |
|
|
latitude: row["Latitude"], |
|
|