-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1363 lines (957 loc) · 39.5 KB
/
index.html
File metadata and controls
executable file
·1363 lines (957 loc) · 39.5 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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme" content="hugo-academic">
<meta name="generator" content="Hugo 0.40.3" />
<meta name="author" content="Jerónimo Carranza Carranza">
<meta name="description" content="Data Scientist, GIS & Environmental Consultant. Founder of ASTERIONAT.">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/atom-one-light.min.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/academicons.min.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:400,700%7CMerriweather%7CRoboto+Mono">
<link rel="stylesheet" href="/css/hugo-academic.css">
<link rel="stylesheet" href="/css/orange.css">
<link rel="alternate" href="https://JeronimoCarranza.github.io/index.xml" type="application/rss+xml" title="Jerónimo Carranza Carranza">
<link rel="feed" href="https://JeronimoCarranza.github.io/index.xml" type="application/rss+xml" title="Jerónimo Carranza Carranza">
<link rel="icon" type="image/png" href="/img/icon.png">
<link rel="apple-touch-icon" type="image/png" href="/img/apple-touch-icon.png">
<link rel="canonical" href="https://JeronimoCarranza.github.io/">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:400,700|Montserrat:300,400">
<title>Jerónimo Carranza Carranza</title>
<meta property="og:title" content="Jerónimo Carranza Carranza">
<meta property="og:type" content="website">
<meta property="description" content="Personal site & blog">
<meta property="og:description" content="Personal site & blog">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="http://xvrdm.github.io/images/" >
<meta name="twitter:creator" content="">
<meta name="twitter:site" content="">
<title>Jerónimo Carranza Carranza</title>
</head>
<body id="top" data-spy="scroll" data-target="#navbar-main" data-offset="71">
<nav class="navbar navbar-default navbar-fixed-top" id="navbar-main">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target=".navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Jerónimo Carranza Carranza</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="nav-item">
<a href="/#about" data-target="#about">
<span>Home</span>
</a>
</li>
<li class="nav-item">
<a href="/#publications" data-target="#publications">
<span>Publications</span>
</a>
</li>
<li class="nav-item">
<a href="/#works" data-target="#works">
<span>Projects</span>
</a>
</li>
<li class="nav-item">
<a href="/#talks" data-target="#talks">
<span>Talks & Workshops</span>
</a>
</li>
<li class="nav-item">
<a href="/#teaching" data-target="#teaching">
<span>Teaching</span>
</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true">
<i class="fa fa-globe" aria-hidden="true"></i>
<span>English</span>
</a>
<ul class="dropdown-menu">
<li class="nav-item">
<a href="/es/" data-target="/es/">
<span>Español</span>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<span id="homepage" style="display: none"></span>
<section id="about" class="home-section">
<div class="container">
<div class="row" itemprop="author" itemscope itemtype="http://schema.org/Person" itemref="person-email">
<div class="col-xs-12 col-md-4">
<div id="profile">
<div class="portrait" style="background-image: url('https://JeronimoCarranza.github.io/img/FotoJCC.jpg');">
</div>
<meta itemprop="image" content="https://JeronimoCarranza.github.io/img/FotoJCC.jpg">
<div class="portrait-title">
<h2 itemprop="name">Jerónimo Carranza Carranza</h2>
<h3 itemprop="jobTitle">Data Scientist, GIS & Environmental Consultant. Founder of ASTERIONAT.</h3>
<h3 itemprop="worksFor" itemscope itemtype="http://schema.org/Organization">
<a href="http://www.asterionat.com/" target="_blank" itemprop="url">
<span itemprop="name">ASTERION ASISTENCIA TÉCNICA, SLU</span>
</a>
</h3>
</div>
<link itemprop="url" href="https://JeronimoCarranza.github.io/">
<ul class="social-icon" aria-hidden="true">
<li>
<a itemprop="sameAs" href="mailto:jeronimo.carranza@asterionat.com" target="_blank">
<i class="fa fa-envelope big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="https://www.linkedin.com/in/jeronimocarranzacarranza/" target="_blank">
<i class="fa fa-linkedin big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="//twitter.com/JeronimoCarranz" target="_blank">
<i class="fa fa-twitter big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="//bitbucket.org/JeronimoCarranza2" target="_blank">
<i class="fa fa-bitbucket big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="//github.com/JeronimoCarranza" target="_blank">
<i class="fa fa-github big-icon"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-md-8" itemprop="description">
<h1 id="about-me">About me</h1>
<p>I am a <em><strong>consultant</strong></em>, based in Seville (Spain), with more than <em><strong>30 years experience</strong></em> working for private organizations and public administrations in the areas of <strong><em>Data Science, GIS and Environment</em></strong>.<br />
Since the end of 2016 I offer my professional services through my company, <a href = "http://www.asterionat.com"><b>ASTERIONAT</b></a>.<br />
Previously I worked for 15 years in an <em>engineering company</em>, <em>TYPSA</em>, as Head of the Department of Territorial Information, another 12 years as a partner and Technical Director in an <em>environmental consulting</em>, <em>Biocora Consultores</em>. I have also worked as fellow, three years, in the <em>Institute of Statistics of Andalusia</em> and in the <em>Department of Ecology</em> of the University of Seville.<br />
Throughout my professional career I have made more than 150 <em>projects</em> in very diverse subjects. Among them are especially significant for me, those related to: the maps of land cover and derivates of Andalusia, the environmental impact of the A381 highway, the information trataiment for hydrological planning in Guadiana and Guadalquivir basins, and the GIS and SDI (Spatial Data Infrastructure) developments for water management, project management and the environment.<br />
You can download my full curriculum vitae in pdf format at these links:
<a href="/pdf/CV-Jeronimo_Carranza_Carranza_ESP.pdf"><strong>CV Español</strong></a> and
<a href="/pdf/CV-Jeronimo_Carranza_Carranza_ENG.pdf"><strong>English CV</strong></a>.</p>
<div class="row">
<div class="col-sm-5">
<h3>Interests</h3>
<ul class="ul-interests">
<li>Geostatistics</li>
<li>Spatio-temporal analysis</li>
<li>GIS & SDI</li>
<li>Environmental planning</li>
<li>Environmental modelling</li>
<li>Open Source & Open Data</li>
</ul>
</div>
<div class="col-sm-7">
<h3>Education</h3>
<ul class="ul-edu fa-ul">
<li>
<i class="fa-li fa fa-graduation-cap"></i>
<div class="description">
<p class="course">MSc in Data Science & Big Data, 2017</p>
<p class="institution">University of Seville</p>
</div>
</li>
<li>
<i class="fa-li fa fa-graduation-cap"></i>
<div class="description">
<p class="course">BSc in Statistics, 1993</p>
<p class="institution">University of Seville</p>
</div>
</li>
<li>
<i class="fa-li fa fa-graduation-cap"></i>
<div class="description">
<p class="course">MSc in Biology, 1987</p>
<p class="institution">University of Seville</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="publications" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Recent Publications</h1>
<p class="view-all">
<a href="/publication/">
More Publications
<i class="fa fa-angle-double-right"></i>
</a>
</p>
</div>
<div class="col-xs-12 col-md-8">
<ul class="fa-ul">
<li itemscope itemtype="http://schema.org/CreativeWork">
<i class="fa-li fa fa-file-text-o pub-icon" aria-hidden="true"></i>
<span itemprop="name">SaneaCLM: Information System of Sanitation of Urban Wastewater Treatment in Castilla–La Mancha.</span>
<p>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/publication/2015-saneaclm/">
Details
</a>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/project/2015-saneaclm/">
Project
</a>
<a class="btn btn-primary btn-outline btn-xs" href="https://www.typsa.com/wp-content/uploads/Boletin44.pdf#page=45">
View Journal Article
</a>
</p>
</li>
<li itemscope itemtype="http://schema.org/CreativeWork">
<i class="fa-li fa fa-file-text-o pub-icon" aria-hidden="true"></i>
<span itemprop="name">Spatial Data Infrastructure of TYPSA Group.</span>
<p>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/publication/2014-idetypsa/">
Details
</a>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/project/2014-idetypsa/">
Project
</a>
<a class="btn btn-primary btn-outline btn-xs" href="https://www.typsa.com/wp-content/uploads/Boletin-41.pdf#page=87">
View Journal Article
</a>
</p>
</li>
<li itemscope itemtype="http://schema.org/CreativeWork">
<i class="fa-li fa fa-file-text-o pub-icon" aria-hidden="true"></i>
<span itemprop="name">Brocal: Geographic Information System of Groundwater Quality in the Guadalquivir River Basin.</span>
<p>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/publication/2012-brocal/">
Details
</a>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/pdf/2012-Brocal_SIAGA-2012.pdf">
PDF
</a>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/project/2011-brocal">
Project
</a>
</p>
</li>
<li itemscope itemtype="http://schema.org/CreativeWork">
<i class="fa-li fa fa-file-text-o pub-icon" aria-hidden="true"></i>
<span itemprop="name">Brocal System: Geographic Information System of Groundwater Quality in Guadalquivir River Basin.</span>
<p>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/publication/2009-brocal_noticiastypsa/">
Details
</a>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/project/2011-brocal">
Project
</a>
<a class="btn btn-primary btn-outline btn-xs" href="https://www.typsa.com/wp-content/uploads/Boletin-27.pdf#page=70">
View Journal Article
</a>
</p>
</li>
<li itemscope itemtype="http://schema.org/CreativeWork">
<i class="fa-li fa fa-file-text-o pub-icon" aria-hidden="true"></i>
<span itemprop="name">Guadalquivir in the Report of the Pilot River Basin Group on Agriculture</span>
<p>
<a class="btn btn-primary btn-outline btn-xs" href="https://JeronimoCarranza.github.io/publication/2007-guadalquivir_prb_report/">
Details
</a>
<a class="btn btn-primary btn-outline btn-xs" href="http://ec.europa.eu/environment/water/water-framework/pdf/report_phase_2.pdf">
View Report
</a>
</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="works" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Projects</h1>
</div>
<div class="col-xs-12 col-md-8">
<table>
<thead>
<tr>
<th>Year</th>
<th>Title</th>
<th>Recipients</th>
<th>Position</th>
</tr>
</thead>
<tbody>
<tr>
<td><td colspan 4> <strong>FEATURED PROJECTS</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2022</td>
<td><a href="/project/2022-bormes-ieca/">PROVISION OF INFORMATION ON SEVERAL STATISTICAL ACTIVITIES OF P.E.C.A. 2013- 2020. Lot 3. Databases of registrations of Andalusian Companies, December 2018 / January 2021.</a></td>
<td>Institute of Statistics and Cartography of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2022</td>
<td><a href="/project/2022-saneacv/">Computer technical assistance for the creation of a open spatial database to store and manage the data compiled in the catalog of hydraulic sanitation infrastructures of the Comunidad Valenciana.</a></td>
<td>TYPSA for the Department of Agriculture, Rural Development, Climate Emergencies and Ecological Transition. Government of Valencia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2022</td>
<td><a href="/project/2022-chgn-migracion-hhgis/">Migration of hydrological tools in GIS environment.</a></td>
<td>Guadiana River Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2021</td>
<td><a href="/project/2021-paradasbus-sevilla/">Analysis and diagnosis of the needs for bus shelters and proposals for improving accessibility and road safety at public transport stops in the province of Seville, excluding the sphere of competence of the Seville Metropolitan Transport Consortium. 015/2021- SERV.</a></td>
<td>Territorial Delegation of the Regional Ministry of Development, Infrastructure and Territory Planning in Seville. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2021</td>
<td><a href="/project/2021-helvetia-aemet/">Implementation of improvements in the prediction model of atmospheric phenomena of HELVETIA.</a></td>
<td>HELVETIA COMPAÑÍA SUIZA, S.A. DE SEGUROS Y REASEGUROS.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2020</td>
<td><a href="/project/2020-typsa-chj-archivopresas/">Computer Technical Assistance for updating and digitizing the technical files of thirteen state-owned dams of the Júcar River Basin.</a></td>
<td>TYPSA for the Júcar River Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2020</td>
<td><a href="/project/2020-webgis-jucar/">Computer technical assistance in the deployment, management and maintenance of servers, OGC map services and WebGIS viewer for the public exhibition of the review of floodplains of the Júcar River Basin District.</a></td>
<td>TYPSA for Júcar River Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2019</td>
<td><a href="/project/2019-vegabaja-segura/">Delineation of the water surface and its evolution after the floods of the September 13, 2019 in Vega Baja of the Segura River using remote sensing techniques.</a></td>
<td>TYPSA</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2019</td>
<td><a href="/project/2019-lagunas-donana/">Study of the evolution of the flooded surface of the Doñana lagoons between November 2017 and November 2018 [CU(PH)-6134].</a></td>
<td>Guadalquivir River Basin Authority. Hydrologic Planning Office.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2018</td>
<td><a href="/project/2018-tfm-sevici/">Smart Bike - Sevilla: Spatio-Temporal Patterns and Predictive Models of the use of Sevici’s bicycles.</a></td>
<td>University of Seville.</td>
<td>Author.</td>
</tr>
<tr>
<td>2015</td>
<td><a href="/project/2015-saneaclm/">SaneaCLM: Information System of Sanitation of Urban Wastewater Treatment in Castilla–La Mancha.</a></td>
<td>Water Agency of Castilla – La Mancha.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2014</td>
<td><a href="/project/2014-engiros">Development and Implementation of a Geographical Information System of the Ewaso Ng’Iro South River Basin.</a></td>
<td>Government of Kenya. Ministry of Regional Development Authorities (MoRDA).</td>
<td>Technical coordinator.</td>
</tr>
<tr>
<td>2014</td>
<td><a href="/project/2014-idetypsa/">Spatial Data Infrastructure of TYPSA Group.</a></td>
<td>TYPSA Group.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2011</td>
<td><a href="/project/2011-brocal/">Geographic Information System of Groundwater Quality in the Guadalquivir River.</a></td>
<td>Guadalquivir River Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td><td colspan 4> <strong>OTHERS RECENT PROJECTS</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2024</td>
<td>Computer application for Bathing Water Profiles of the Guadalquivir Hydrographic Demarcation.</td>
<td>TYPSA for Guadalquivir River Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2022</td>
<td>Application of Groundwater Reports of the Guadalquivir Hydrographic Demarcation.</td>
<td>TYPSA for Guadalquivir River Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2022</td>
<td>Web Application for the Report of Stations and Sampling Points of Surface and Underground Waters of the Júcar Hydrographic Demarcation.</td>
<td>TYPSA for the Júcar River Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2019</td>
<td>Analysis, design and development of the database and query application of Industrial Zones in the Júcar River Basin.</td>
<td>TYPSA for the Júcar River Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2019</td>
<td>Data update in the GIS J2EE Rustic3A application, on two servers; TYPSA office in Seville and Andalusian Agency for the Environment and Water in Huelva.</td>
<td>TYPSA for Andalusian Agency for the Environment and Water.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2019</td>
<td>Technical assistance in the development of the general aspects related to Geographic Information Systems in the Hydrological Plan offers of the Ministry of Ecological Transition.</td>
<td>TYPSA.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2018</td>
<td>Environmental technical assistance in the development of surveillance and inspection offers for dams in the hydrographic demarcations of the Andalusian intra-community basins.</td>
<td>TYPSA.</td>
<td>Consultant.</td>
</tr>
<tr>
<td>2018</td>
<td>Computer technical assistance for the adaptation and configuration of the J2EE application, SaneaCLM, for its deployment in production on the servers of the ICT Service Center of the Junta de Castilla - La Mancha.</td>
<td>TYPSA for the Castilla - La Mancha Water Agency.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2016</td>
<td>Installation, configuration and deployment of the GIS J2EE application, Rustic3A, on two servers; one at the TYPSA office in Seville and the other at the Andalusian Environment and Water Agency office in Huelva.</td>
<td>TYPSA for Andalusian Agency for the Environment and Water.</td>
<td>Head of project.</td>
</tr>
<tr>
<td><td colspan 4> <strong>OTHERS PROJECTS (In TYPSA)</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2014</td>
<td>Lower Ewaso Ng’iro South Multipurpose Development Project (LENSDEP): Study of Environmental Flows.</td>
<td>Government of Kenya. Ministry of Regional Development Authorities (MoRDA).</td>
<td>Head of activity.</td>
</tr>
<tr>
<td>2011</td>
<td>Analysis, design and development of a database application of Biological Water Quality of the reservoirs and lakes of the Duero Basin.</td>
<td>Tecnoma, S.A. for the Duero Basin Authority.</td>
<td>Developer.</td>
</tr>
<tr>
<td>2011</td>
<td>Geographic Information System of the Environmental Assessment of the Railway Corridor of the Costa del Sol.</td>
<td>Tecnoma, S.A. for Infrastructure Manager Agency of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2011</td>
<td>Inventory and registration of the Andalusian Water Agency rural land plots in Huelva. Development of Rustic3a System.</td>
<td>Andalusian Water Agency.</td>
<td>Developer.</td>
</tr>
<tr>
<td>2010</td>
<td>Integration and coordination of flood studies in Andalusia.</td>
<td>Andalusian Water Agency.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2010</td>
<td>Update and integration of socio-hydrological information database.</td>
<td>Guadiana Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2010</td>
<td>Information System of Sanitation and Urban Wastewater Treatment in Andalusia (Sanea).</td>
<td>Andalusian Water Agency.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2009</td>
<td>Standardize the Statistic Activity Technical Projects of the Department of Environment of the Andalusian Administration.</td>
<td>EGMASA.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2009</td>
<td>Map data correction of 2.882 hunting reserves of the provinces of Almería, Cádiz, Huelva, and Málaga.</td>
<td>EGMASA.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2009</td>
<td>Information Management and Integration in the project of Design and Evaluation of Continental Waters Quality in Andalusia.</td>
<td>Andalusian Water Agency.</td>
<td>Head of activity.</td>
</tr>
<tr>
<td>2008</td>
<td>Eco cartography study of the North Coast of Grand Canary Island (Las Palmas).</td>
<td>Ministry of Environment.</td>
<td>Consultant.</td>
</tr>
<tr>
<td>2008</td>
<td>Statistical summary of natural flow in the Guadalquivir river basin in the period 1940 – 2006 and allocation to hydrographical network.</td>
<td>Guadalquivir Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2007</td>
<td>Environmental impact assessment of agri-environmental measures for rural development in Andalusia main agricultural areas.</td>
<td>EC - Joint Research Centre - Institute for Environment and Sustainability. Ispra.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2007</td>
<td>Technical Assistance to the Public Works Directorate in updating the National Transport Plan of Mauritania. GIS database and statistics services.</td>
<td>Rep. Islamic of Mauritania – EC Delegation in Mauritania.</td>
<td>Head of activity.</td>
</tr>
<tr>
<td>2007</td>
<td>Technical Assistance to the Guadalquivir Basin Authority as European Pilot River Basin in the second phase of implementation of the Water Framework Directive.</td>
<td>Guadalquivir Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2006</td>
<td>Continuation of the works derived from the implementation of the Water Framework Directive.</td>
<td>Guadiana Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2006</td>
<td>Correction of the geographical information layer of the hydrographic network of the Guadiana Basin.</td>
<td>Guadiana Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2006</td>
<td>Water Framework Directive implementation in the Guadalquivir Basin at 2004 horizon.</td>
<td>Guadalquivir Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2004</td>
<td>Validation and Exploitation of alphanumeric data of Monitoring Networks.</td>
<td>Guadiana Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2003</td>
<td>Automation of spatial and statistical processes in the GIS of Guadiana Planning Office.</td>
<td>Guadiana Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2003</td>
<td>Compression of digital image files and load of alphanumeric databases to the GIS of the Office of Hydrological Planning.</td>
<td>Guadiana Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2004</td>
<td>Debugging of the geographic information layers of the Office of Hydrological Planning for the internal consultation network.</td>
<td>Guadiana Basin Authority.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2002</td>
<td>Visitor’s statistics in Natural Protected Areas of Andalusia. Pilot Study in Doñana.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project</td>
</tr>
<tr>
<td>2002</td>
<td>Integration of Taxonomy Information in Land Cover Map for some Natural Protected Areas of Andalusia.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>2002</td>
<td>Environmental monitoring of the Andévalo Dam works.</td>
<td>Guadiana Basin Authority.</td>
<td>Consultant.</td>
</tr>
<tr>
<td>2002</td>
<td>Manual of environmental prevention procedures in the field of activities of the Guadiana Basin Authority.</td>
<td>Guadiana Basin Authority.</td>
<td>Consultant.</td>
</tr>
<tr>
<td><td colspan 4> <strong>OTHERS PROJECTS (In BIOCORA)</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><td colspan 4> <strong>Geographic Information Systems, Cartography and Data Processing:</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2000</td>
<td>Update, statistical exploitation and validation of the cartography of land uses and land cover in Andalusia to the year 1.999.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>1999</td>
<td>Digitization and load to data base of the sheets E. 1: 50.000 of the map of land cover of Andalusia.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>1998</td>
<td>Adjustment of the map of land cover of Andalusia to the orthoimage Spot-Pan. E. 1: 50,000.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>1998</td>
<td>Design and production of a map of vegetation and forest resources of Andalusia from the forest map of spain.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project</td>
</tr>
<tr>
<td>1997</td>
<td>Methodological development for the production of the Andalusia forest map at scale 1: 400,000.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project</td>
</tr>
<tr>
<td>1997</td>
<td>Statistical exploitation of the data resulting from the update of the cartography of land cover of Andalusia to the year 1.995.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>1997</td>
<td>Adaptation of the map of land uses and vegetal coverage of Andalusia 1995 for its incorporation to the Atlas General de Andalucía.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>1997</td>
<td>Update of the map of land uses and vegetal coverage of Andalusia to year 1975 in the littoral of Andalusia. Project land changes in coastal zones.</td>
<td>D.G. XII, C.E.E. Join Research Center. Ispra. University of Seville, Department of Geography.</td>
<td>Consultant.</td>
</tr>
<tr>
<td>1997</td>
<td>Update of the cartography of land uses and vegetal coverages of andalusia to year 1.995.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project</td>
</tr>
<tr>
<td>1995</td>
<td>Analysis and assessment of the prototype Corine-Land Cover C.E.E., exploitation of the database of uses and vegetal coverages of the soil of Andalusia.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td>1994</td>
<td>Update of the database: cartography of land use. The Map of occupation of the soil of Andalusia 1.991.</td>
<td>Regional Ministry of Environment. Government of Andalusia.</td>
<td>Head of project.</td>
</tr>
<tr>
<td><td colspan 4> <strong>Planning in Protected Natural Areas:</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1998</td>
<td>Establishment of technical criteria for the planning of natural resources, use and management of the following protected spaces: South Córdoba Natural Reserves (lakes and lagoons), Lagoons of Cádiz Natural Reserves, Fuente de Piedra Lagoon/Saline Natural Reserve, La Breña y Marismas del Barbate’ Natural Park (Mountains and Marshes), Marismas del Odiel Marshes Natural Reserve.</td>
<td>PROSER for Regional Ministry of Environment. Government of Andalusia.</td>
<td>Consultant.</td>
</tr>
<tr>
<td><td colspan 4> <strong>Environmental impact. Infrastructures:</strong></td>