-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrincipal.py
More file actions
78 lines (57 loc) · 2.45 KB
/
Copy pathPrincipal.py
File metadata and controls
78 lines (57 loc) · 2.45 KB
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
import streamlit as st
import numpy as np
import pandas as pd
import pydeck as pdk
APP_TITLE = "Bienvenido a FireNet"
def main():
st.set_page_config(
page_title=APP_TITLE,
page_icon="🔥",
layout="centered",
initial_sidebar_state="auto",
)
st.image(
"https://raw.githubusercontent.com/leonsuarez24/FIRENET/refs/heads/main/figs/portada.png",
caption=None,
use_column_width=True,
)
st.title(APP_TITLE)
st.divider()
st.markdown(
"FireNet es una plataforma cuya principal función es contribuir a la gestión del riesgo de incendios forestales con tecnologías geoespaciales y de inteligencia artifical el cual incorpora datos abiertos meteorológicos y delitos ambientales en el departamento de Santander."
)
st.markdown("## **Datos empleados**")
st.markdown(
"""
* [Delitos contra el medio ambiente](https://www.datos.gov.co/Seguridad-y-Defensa/DELITOS-CONTRA-EL-MEDIO-AMBIENTE/9zck-qfvc/about_data)
* [Datos hidrometeorológicos (IDEAM) - Temperatura y precipitación](http://dhime.ideam.gov.co/atencionciudadano/)
"""
)
st.image(
"https://raw.githubusercontent.com/leonsuarez24/FIRENET/refs/heads/main/figs/DatosUsados.jpg",
caption=None,
use_column_width=True,
)
st.markdown("## **Metodos de Inteligencia Artificial empleados**")
st.markdown(
"""
* Regresión mediante splines
* [Red neuronal convolucional recurrente ConvLSTM](https://proceedings.neurips.cc/paper_files/paper/2015/file/07563a3fe3bbe7e3ba84431ad9d055af-Paper.pdf)
"""
)
st.markdown("## **Información adicional**")
st.markdown(
"* **Autores**: Ana Mantilla, León Suárez y Luis Rodríguez \n* **Contacto**: ana.mantilla@correo.uis.edu.co \n* **Repositorio**: https://github.com/leonsuarez24/FIRENET"
)
st.markdown("## **Visualización de la información**")
st.markdown(
"Para visualizar los datos de temperatura y precipitación, rediríjase a la pestaña visualizacion de datos en el menú lateral."
)
st.markdown(
"Para visualizar los datos sobre delitos ambientales, rediríjase a la pestaña delitos ambientales en el menú lateral."
)
st.markdown(
"Para visualizar las predicciones de temperatura y precipitación, rediríjase a la pestaña prendicción de datos en el menú lateral."
)
if __name__ == "__main__":
main()