-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
188 lines (158 loc) · 4.96 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
var customUi = require("users/irtharles/gpw-view-tool:ui.js");
var map = require("users/irtharles/gpw-view-tool:map.js");
var layers = require("users/irtharles/gpw-view-tool:layers.js");
// Carregar as imagens
var LAYERS = layers.LAYERS;
/**
* Adiciona as camadas ao mapa.
* @param {ui.Map} mapLayer - O mapa onde as camadas serão adicionadas.
*/
function addLayersToMap(mapLayer) {
LAYERS.forEach(function (layer) {
mapLayer.addLayer(
layer.imagem,
{
palette: layer.palette,
bands: layer.bands.length > 0 ? layer.bands : null,
},
layer.layerName,
layer.visible
);
});
}
/**
* Cria um painel de inspeção que mostra o nome das classes ao clicar no mapa e adiciona histogramas.
* @param {ui.Map} mapLayer - O mapa no qual configurar o evento de clique.
* @param {ui.Panel} histogramPanel - O painel de histogramas onde os histogramas serão adicionados.
*/
function createInspector(mapLayer, histogramPanel) {
var inspector = ui.Panel([ui.Label("Click to get class names")]);
inspector.style().set({
fontSize: "50",
fontWeight: "bold",
textAlign: "center",
position: "top-left",
});
mapLayer.add(inspector);
// Configurar evento de clique no mapa
mapLayer.onClick(function (coords) {
inspector.widgets().set(
0,
ui.Label({
value: "Loading...",
style: { color: "gray" },
})
);
var point = ee.Geometry.Point(coords.lon, coords.lat);
// Adicionar ponto selecionado ao mapa
mapLayer.layers().set(
4,
ui.Map.Layer(point, { color: "blue" }, "Selected Point")
);
// Limpar o painel de histogramas antes de adicionar novos histogramas
histogramPanel.clear();
// Iterar sobre cada camada para amostrar o ponto e gerar histogramas
LAYERS.forEach(function (layer, index) {
var sample = layer.imagem.sample(point, 30);
var value = sample.first().get(layer.bands[0] || "default_band");
value.evaluate(function (result) {
var className = layer.imagemDictDataset[result] || "Unknown";
inspector.widgets().set(
index + 1,
ui.Label({
value: layer.layerName + ": " + className,
style: { color: "black" },
})
);
});
// Criar histogramas para as camadas no ponto selecionado
var region = point.buffer(100); // Buffer de 100 metros para gerar um histograma mais representativo
var histogram = layer.imagem.reduceRegion({
reducer: ee.Reducer.histogram(),
geometry: region,
scale: 30,
maxPixels: 1e8,
});
histogram.evaluate(function (histogramData) {
if (histogramData && histogramData[layer.bands[0]]) {
var hist = ui.Chart.array.values(
histogramData[layer.bands[0]].histogram,
0,
histogramData[layer.bands[0]].bucketMeans
).setOptions({
title: 'Histogram for ' + layer.layerName,
hAxis: { title: 'Value' },
vAxis: { title: 'Frequency' },
series: {
0: { color: 'blue' },
},
});
histogramPanel.add(hist);
} else {
histogramPanel.add(ui.Label({
value: 'No histogram data for ' + layer.layerName,
style: { color: 'red' }
}));
}
});
});
inspector.widgets().set(
LAYERS.length + 1,
ui.Label({
value: "Coordinates: " + coords.lat + ", " + coords.lon,
})
);
});
return inspector;
}
/**
* Cria o painel de histogramas que será adicionado ao rodapé da página.
* @return {ui.Panel} O painel de histogramas.
*/
function createHistogramPanel() {
var histogramPanel = ui.Panel({
layout: ui.Panel.Layout.Flow('horizontal'),
style: {
width: '100%',
padding: '10px',
backgroundColor: 'rgba(255, 255, 255, 0.9)',
},
});
histogramPanel.add(ui.Label('Histogram Panel', {
fontSize: '20px',
fontWeight: 'bold',
textAlign: 'center'
}));
return histogramPanel;
}
/**
* Inicializa o app.
*/
function initializeApp() {
// Criar o mapa
var mapLayer = map.createMap();
// Adicionar camadas ao mapa
addLayersToMap(mapLayer);
// Criar o painel de controle
var mainPanel = customUi.createControlPanel(mapLayer);
// Criar e adicionar as legendas ao painel de controle
var legends = LAYERS.map(function (layer) {
return customUi.createLegend(
layer.layerName,
layer.palette,
layer.classNames
);
});
mainPanel.add(customUi.createLegendPanel(legends));
// Criar o painel de histogramas
var histogramPanel = createHistogramPanel();
// Adicionar painel ao layout do mapa
var mapGrid = customUi.createMapGrid(mapLayer, mainPanel, histogramPanel);
// Limpar o ui.root e adicionar o contêiner principal
ui.root.clear();
ui.root.add(mapGrid);
// Adicionar o painel de inspeção ao mapa
createInspector(mapLayer, histogramPanel);
}
// Inicializar o app
initializeApp();