-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
263 lines (237 loc) · 9.41 KB
/
index.html
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SGSK3F2B0N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SGSK3F2B0N');
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WVSDNQHV');</script>
<!-- End Google Tag Manager -->
<script>
// Define dataLayer y la función gtag.
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
// IMPORTANTE: NO COPIES NI PEGUES SIN MODIFICAR LA LISTA DE REGIONES
// Configura el consentimiento predeterminado para regiones concretas según tus requisitos
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'analytics_storage': 'denied',
'regions':[<list of ISO 3166-2 region codes>]
});
// Define el consentimiento predeterminado para el resto de las regiones según tus requisitos
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'analytics_storage': 'denied'
});
</script>
<script type="text/javascript" charset="UTF-8" src="//cdn.cookie-script.com/s/909cbcee60c9136963ec06d3ad0e5994.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Python Applied to GIS for Analytics">
<meta name="author" content="Gaston Echenique">
<meta name="keywords" content="python,gis,analytics,spatial">
<meta property="og:title" content="GeoAnalytics">
<meta property="og:description" content="Unlock the power of Python in Geographic Information Systems (GIS) for advanced Analytics">
<meta property="og:image" content="img/web_view.webp">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="img/web_view.webp">
<meta property="linkedin:title" content="GeoAnalytics">
<meta property="linkedin:description" content="Unlock the power of Python in Geographic Information Systems (GIS) for advanced Analytics">
<meta property="linkedin:image" content="img/web_view.webp">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap">
<style>
body, html {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}
.row {
display: flex;
height: 300px; /* Establece una altura fija para las filas */
}
.col {
flex: 1;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
margin: 0px; /* Espacio entre columnas */
}
img {
width: 100%;
height: 100%;
object-fit: cover;
}
.button-container {
position: absolute;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.button {
padding: 10px 20px;
background-color: #3498db;
color: #fff;
text-decoration: none;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.button:hover {
background-color: #2980b9;
}
@media only screen and (max-width: 600px) {
.row {
flex-direction: column;
height: auto; /* Altura automática en dispositivos móviles */
}
.col {
margin: 0px 0; /* Agrega espacio entre las columnas en dispositivos móviles */
}
}
img {
width: 100%;
height: auto; /* Ajusta automáticamente la altura para mantener la proporción original */
object-fit: cover;
}
.button {
padding: 8px 16px; /* Reduce el tamaño del botón en dispositivos móviles */
font-size: 14px; /* Reduce el tamaño de la fuente en dispositivos móviles */
}
.invisible-cell {
position: absolute;
bottom: 10;
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 350px; /* Ajusta la altura según tus necesidades */
}
.social-icon {
width: 50px; /* Tamaño más grande */
height: 50px;
margin: 0 1px; /* Espacio entre iconos */
object-fit: contain; /* Mantiene proporción */
background: transparent; /* Elimina fondo blanco */
}
.invisible-cell {
display: flex;
align-items: center;
justify-content: center;
}
.text-container {
position: absolute;
top: 50%;
transform: translateY(-50%);
text-align: center;
color: #fff;
}
.name {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.email {
font-size: 16px;
}
.col:hover img {
filter: brightness(70%);
}
.col img {
transition: transform 0.3s ease;
}
.col:hover img {
transform: scale(1.1);
}
.button {
background-color: rgba(54, 69, 79, 0.8); /* Blanco con 90% de opacidad */
color: #00FFFF; /* Cyan fluor - puedes ajustar el código de color según tus preferencias */
}
.title {
color: #00FFFF; /* Color igual al de los botones */
}
body {
font-family: 'Roboto', sans-serif;
}
</style>
</head>
<body>
<div class="row">
<div class="col">
<img src="img\tokyo_toner_map.webp" alt="tokyo">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/boundaries.git" target="_blank">Boundaries</a>
</div>
</div>
<div class="col">
<img src="img\map_compass.webp" alt="compass">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/geocoding" target="_blank">Geocoding</a>
</div>
</div>
</div>
<div class="row">
<div class="col">
<img src="img\gis_analytical.webp" alt="data_geo">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/analytics" target="_blank">Analytics</a>
</div>
</div>
<div class="col">
<img src="img\remote_sensing.webp" alt="forest_ndvi">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/remote_sensing" target="_blank">Remote Sensing</a>
</div>
</div>
</div>
<div class="row">
<div class="col">
<img src="img\contour_up.webp" alt="link_social">
<!-- Celda invisible con tres iconos -->
<div class="invisible-cell">
<!-- Cambia los enlaces y los íconos según tus necesidades -->
<a class="social-icon" href="https://www.linkedin.com/in/gaston-echenique/" target="_blank">
<img src="https://freelogopng.com/images/all_img/1656994981linkedin-icon-png.png" alt="LinkedIn">
</a>
<a class="social-icon" href="https://twitter.com/GastonEchenique" target="_blank">
<img src="https://freelogopng.com/images/all_img/1690643591twitter-x-logo-png.png" alt="X">
</a>
<a class="social-icon" href="https://github.com/oechenique" target="_blank">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4ExGUTEwAQn95uM4KUU-OZ7Zz1n2lDrnXfw&s" alt="GitHub">
</a>
<a class="social-icon" href="https://discord.com/users/gastonechenique" target="_blank">
<img src="https://static.vecteezy.com/system/resources/previews/006/892/625/non_2x/discord-logo-icon-editorial-free-vector.jpg" alt="Discord">
</a>
</div>
</div>
<div class="col">
<img src="img\contour_down.webp" alt="personal_info">
<div class="text-container">
<div class="name">Gastón Echenique</div>
<div class="email title">GIS Data Scientist | AI & ML Instructor</div>
</div>
</div>
</div>
</body>
</html>