-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
273 lines (241 loc) · 9.15 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
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE html>
<html lang="en">
<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);}
// Configura el consentimiento predeterminado para Europa (GDPR).
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'analytics_storage': 'denied',
'regions': ['EU']
});
// Configura el consentimiento predeterminado para el resto de las regiones.
gtag('consent', 'default', {
'ad_storage': 'granted',
'analytics_storage': 'granted'
});
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Python and GIS for Data Science and AI">
<meta name="author" content="Gaston Echenique">
<title>GIS and Python</title>
<!-- Open Graph Metadata -->
<meta property="og:title" content="GIS and Python: Exploring Spatial Data">
<meta property="og:description" content="Learn how Python empowers Geographic Information Systems (GIS) for advanced analytics and AI.">
<meta property="og:image" content="https://oechenique.github.io/geoanalytics/img/terrain_hologram_cyberpunk.webp">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:url" content="https://oechenique.github.io/geoanalytics/">
<meta property="og:type" content="website">
<!-- Twitter Metadata -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="GIS and Python: Exploring Spatial Data">
<meta name="twitter:description" content="Learn how Python empowers Geographic Information Systems (GIS) for advanced analytics and AI.">
<meta name="twitter:image" content="https://oechenique.github.io/geoanalytics/img/terrain_hologram_cyberpunk.webp">
<!-- Linkedin Metadata -->
<meta name="linkedin:title" content="GIS and Python: Exploring Spatial Data">
<meta name="linkedin:description" content="Learn how Python empowers Geographic Information Systems (GIS) for advanced analytics and AI.">
<meta name="linkedin:image" content="https://oechenique.github.io/geoanalytics/img/terrain_hologram_cyberpunk.webp">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap">
<style>
body, html {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
display: flex;
flex-direction: column;
}
.row {
display: flex;
flex-wrap: wrap;
}
.col {
flex: 1 1 50%;
height: 300px; /* altura fija */
min-height: 300px; /* asegura altura mínima */
position: relative;
overflow: hidden;
}
.col img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s, filter 0.3s;
}
.col img[src=""] {
content: url('img/placeholder.png'); /* Default image if none provided */
}
.col:hover img {
transform: scale(1.1);
filter: brightness(70%);
}
.button-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.button {
padding: 10px 20px;
background-color: rgba(0, 0, 0, 0.8);
color: #00FFFF;
text-decoration: none;
font-size: 18px;
border-radius: 5px;
}
.button:hover {
background-color: #001F3F;
}
.hover-description {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
padding: 10px;
font-size: 14px;
text-align: center;
transform: translateY(100%);
transition: transform 0.3s ease-in-out;
}
.col:hover .hover-description {
transform: translateY(0);
}
.footer {
display: flex;
justify-content: space-around;
padding: 40px 20px;
background-color: #222;
color: #fff;
text-align: center;
}
.footer-section {
flex: 1;
}
.footer-section p {
margin: 10px 0;
}
.footer img {
width: 40px;
height: 40px;
margin: 5px;
}
.footer-section a {
text-decoration: none; /* Elimina el subrayado */
}
.footer-section a:hover {
text-decoration: none; /* También asegura que no aparezca al pasar el mouse */
}
@media (max-width: 600px) {
.col {
flex: 1 1 100%;
}
.button {
font-size: 16px;
padding: 8px 16px;
}
.footer {
flex-direction: column;
text-align: center;
}
}
</style>
</head>
<body>
<div class="row">
<div class="col">
<img src="img\osaka_map.webp" alt="Python Basics">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/python-gis-basics">Python Basics</a>
</div>
<div class="hover-description">Learn the foundations of Python and set up your environment for GIS.</div>
</div>
<div class="col">
<img src="img\torii_geocoding.webp" alt="Geocoding">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/Geocoding">Geocoding</a>
</div>
<div class="hover-description">Explore geocoding and integrate location data into your workflows.</div>
</div>
</div>
<div class="row">
<div class="col">
<img src="img\gis_analytical.webp" alt="Spatial Analysis">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/analytics">Spatial Analysis</a>
</div>
<div class="hover-description">Analyze spatial data with Python using GeoPandas.</div>
</div>
<div class="col">
<img src="img\data_modeler.webp" alt="Data Engineering">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/data-engineering">Data Engineering</a>
</div>
<div class="hover-description">Build and manage spatial data pipelines and databases efficiently.</div>
</div>
</div>
<div class="row">
<div class="col">
<img src="img\remote_sensing.webp" alt="Remote Sensing">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/remote_sensing">Remote Sensing</a>
</div>
<div class="hover-description">Apply remote sensing techniques and machine learning to satellite data.</div>
</div>
<div class="col">
<img src="img\smart_urban.webp" alt="AI & Predictions">
<div class="button-container">
<a class="button" href="https://github.com/oechenique/ai-predictions">AI & Predictions</a>
</div>
<div class="hover-description">Use AI and machine learning to solve complex spatial problems.</div>
</div>
</div>
<div class="footer">
<div class="footer-section">
<p style="color: #00FFFF; font-size: 32px; margin: 0 0 2px 0;">Gastón Echenique</p>
<p style="color: #00FFFF; font-size: 16px;">GIS Data Scientist | AI & ML Instructor</p>
</div>
<div class="footer-section">
<a href="https://www.linkedin.com/in/gaston-echenique/" target="_blank">
<img src="img\linkedin.webp" alt="LinkedIn">
</a>
<a href="https://github.com/oechenique" target="_blank">
<img src="img\github.webp" alt="GitHub">
</a>
<a class="social-icon" href="https://twitter.com/GastonEchenique" target="_blank">
<img src="img\twitter.webp" alt="X">
</a>
<a href="https://discord.com/users/gastonechenique" target="_blank">
<img src="img\discord.webp" alt="Discord">
</a>
</div>
</div>
</body>
</html>