-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_def.js
798 lines (762 loc) · 34.6 KB
/
index_def.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
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
import { SunCalc } from "./suncalc.js"
import sunCalc from "./SunCalc_function.js";
//importo algunas funciones trigonometricas y matematicas que he creado aparte
import { getNewCoords, getAbsoluteDiff, getAngularDistance } from "./trigo.js";
import { Spinner } from "./spinner.js";
import city_data from "./city_data.js";
//con la funcion getTimes sacamos el MediodiaSolar
let { getTimes } = SunCalc;
//con la funcion getDayInfo sacamos el amanaecer y el anochecer (entre otros datos)
let { preventDefault } = window.Event.prototype;
let { getDayInfo } = sunCalc();
/** Ajuste de las horas en las fechas por defecto:
suelen empezar a las 10:42 por algun motivo*/
const DATE_ADJUSTMENT = (34 * 60 + 42) * 60000;
/** 24 horas en milisegundos */
const ONE_DAY = 24 * 60 * 60 * 1000;
/** 1 hora en milisegundos */
const ONE_HOUR = 60 * 60 * 1000;
/**Puramente ornamental */
let Solete = new Spinner();
/** Info relativa a coordenadas y posiciones solares |
* start - inicio espacio/tiempo del viaje |
* end - final espacio/tiempo del viaje |
* NaS - Norte A Sur? (true/false) */
const specialData = ["start", "end", "NaS"];
/** Info relativa a horas y minutos */
const horas = ["horasalida", "minutosalida", "horallegada", "minutollegada"];
/** Info recogida en el formulario servido en la web */
const form = ["cambio", "sun", ...horas, "origen", "destino", "diasalida", "diallegada", ...specialData, "local", "paisOrigen", "paisDestino"];
const ID = [...form, "formulario", "submit", "reset", "resetea", "result", "render"];
/** Array de subsecciones del tramo Principal entre las coordenadas iniciales y finales del array datos */
let subSection = [{}];
/** Array de información principal con la que trabajar */
let datos = [{}];
datos['valid_start'] = false;
datos['valid_end'] = false;
window.addEventListener('DOMContentLoaded', () => {
reloadId(ID);
let paises = [];
for (let key in city_data.countries) paises.push(key);
const countries = paises;
countries.forEach((el) => {
paisOrigen.innerHTML += `<option value="${el}" ${el == 'Spain' ? 'selected' : ''}>${el}</option>`;
paisDestino.innerHTML += `<option value="${el}" ${el == 'Spain' ? 'selected' : ''}>${el}</option>`;
});
onClick(submit, async () => {
formulario.style.display = "none";
Solete.spin(document.querySelector('body'));
if (await checkForm()) {
datos.push({ ...form.forEach((el) => datos[el] = valor(el)) });
await updateSubsections();
renderResults();
} else {
formulario.style.display = "block";
};
Solete.stop();
});
onClick(reset, () => {
window.location.reload();
});
});
/** Esta función comprueba que la opción LOCAL sólo puedda
ser marcada si el origen y el destino tienen diferencia horaria */
async function checkLocal() {
if (datos['local'] === true) {
let startOffset, endOffset;
startOffset = await getOffset(datos['start']);
endOffset = await getOffset(datos['end']);
datos['local'] = startOffset === endOffset ? false : true;
};
};
/** Actualiza el numero de subSecciones del trayecto principal */
async function updateSubsections() {
//limpio el array 'datos' de algunos elementos que ya no necesitamos
horas.forEach((el) => delete datos[el.toString()]);
let salida = new Date(datos.diasalida.getTime());
let llegada = new Date(datos.diallegada.getTime());
let coordenadas = {};
let latitudOrigen = 0.0, longitudOrigen = 0.0, latitudDestino = 0.0, longitudDestino = 0.0;
try {
coordenadas = await updateCoords();
datos.NaS = coordenadas.latDest < coordenadas.latOrig ? true : false;
if (coordenadas !== undefined && coordenadas !== null) {
latitudOrigen = coordenadas.latOrig;
longitudOrigen = coordenadas.lonOrig;
latitudDestino = coordenadas.latDest;
longitudDestino = coordenadas.lonDest;
} else {
window.alert("Error al actualizar las coordenadas");
return;
};
} catch (error) {
console.log(error);
};
//adquirimos amaneceres y anocheceres en origen y destino
let tiempo1 = getDayInfo(salida, latitudOrigen, longitudOrigen);
let tiempo2 = getDayInfo(llegada, latitudDestino, longitudDestino);
//adquirimos el mediodia solar en origen
let times = getTimes(salida, latitudOrigen, longitudOrigen);
datos.start = {
lat: coordenadas.latOrig,
lon: coordenadas.lonOrig,
sunset: tiempo1.sunset.end,
sunrise: tiempo1.sunrise.start,
solarnoon: times.solarNoon,
};
//...y en destino
times = getTimes(llegada, latitudDestino, longitudDestino);
datos.end = {
lat: coordenadas.latDest,
lon: coordenadas.lonDest,
sunset: tiempo2.sunset.end,
sunrise: tiempo2.sunrise.start,
solarnoon: times.solarNoon,
};
try {
await checkLocal();
await updateSingleSections();
await sectionFormatter();
sectionAdapter();
datos["secciones"] = subSection;
} catch (error) {
window.alert(error.message);
console.log(error);
};
};
/** Devuelve el huso horario de las coordenadas dadas */
async function getOffset(coords) {
const proxyEndpoint = window.location.origin;
const { lat, lon } = coords;
let huso = 0;
try {
const response = await fetch(`${proxyEndpoint}/api/timezone?lat=${lat}&lon=${lon}`);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
if (data !== undefined || data !== null) {
huso = data.timezone_offset.valueOf();
return huso;
} else {
throw new Error('No se pudo hacer fetch');
}
} catch (error) {
console.log(error);
try {
const response = await fetch(`${proxyEndpoint}/api/backup-timezone?lat=${lat}&lon=${lon}`);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const backupData = await response.json();
if (backupData.status === 'OK') {
huso = backupData.gmtOffset;
} else {
throw new Error('No se pudo obtener datos de TimeZoneDB API');
}
return huso;
} catch (backupError) {
console.log(backupError);
window.alert(backupError);
}
}
}
/** Renderiza los datos en pantalla*/
function renderResults() {
let { secciones, cambio, sun, local, night } = datos;
let leftSeat;
formulario.style.display = "none";
let someInfo = document.createElement('div');
someInfo.setAttribute('id', 'someInfo');
let destino = datos["destino"], origen = datos["origen"],
paisOrigen = datos["paisOrigen"], paisDestino = datos["paisDestino"];
[destino, origen, paisOrigen, paisDestino].forEach((e) => { e = e.replaceAll("%20", " ") });
someInfo.innerHTML =
`<b>Salida:</b> ${datos["diasalida"]} <br>
<b>Llegada:</b> ${datos["diallegada"]} <br>
<b>Origen:</b> ${origen} , ${paisOrigen}<br>
<b>Destino:</b> ${destino}, ${paisDestino} <br>`;
document.querySelector('header').appendChild(someInfo);
/** Analiza la propiedad AnteMeridiana y devuelve
* izquierda (true), o derecha (false)
* @param {Boolean} ams True-Antes | False-Despues
* @param {Boolean} NaS True-NorteASur | False-SurANorte
* @returns {Boolean} True-Izquierda | False-Derecha*/
let getLeftSeat = (ams, NaS) => {
let leftSeat = true;
if (!ams) { leftSeat = !leftSeat; };
if (!datos["sun"]) { leftSeat = !leftSeat; };
if (!NaS) { leftSeat = !leftSeat; };
return leftSeat;
};
secciones.forEach((el, i) => {
let hours2, minutes2, noonHour, noonMin, hours1, minutes1, day, month, year;
if (local) { /* Ajuste a los husos horarios locales */
let originalOffset = secciones[0].sunriseOffset;
el.sunset = (el.sunset != null && el.sunsetOffset != originalOffset) ? new Date(el.sunset.getTime() + (el.sunsetOffset.valueOf() - originalOffset) * ONE_HOUR) : el.sunset;
el.sunrise = (el.sunrise != null && el.sunrisetOffset != originalOffset) ? new Date(el.sunrise.getTime() + (el.sunriseOffset.valueOf() - originalOffset) * ONE_HOUR) : el.sunrise;
el.noon = (el.noon != null && el.noonOffset != originalOffset) ? new Date(el.noon.getTime() + (el.noonOffset.valueOf() - originalOffset) * ONE_HOUR) : el.noon;
};
hours2 = (null != el.sunset) ? el.sunset.getHours() : el.noon?.getHours(),
minutes2 = (null != el.sunset) ? el.sunset.getMinutes() : el.noon?.getMinutes(),
noonHour = el.noon?.getHours(),
noonMin = el.noon?.getMinutes(),
hours1 = (null != el.sunrise) ? el.sunrise.getHours() : el.noon?.getHours(),
minutes1 = (null != el.sunrise) ? el.sunrise.getMinutes() : el.noon?.getMinutes(),
day = el.sunrise?.getDate().toString(),
month = el.sunrise?.getMonth(),
year = el.sunrise?.getFullYear();
let adapt = (num) => num >= 9 ? num.toString() : "0" + num.toString();
let texto = ``;
if (!night) {
texto = `<b>Dia ${day + "/" + (month + 1) + "/" + year}:</b>`;
};
if (secciones.length > 1) {
texto += `\n\t Tramo (${i + 1}/${secciones.length})`
};
texto += `<br>`;
if (el.night) {
texto += `🌙 El viaje va a producirse enteramente de noche 🌙`;
} else if (el["AM"] == null && el["noon"] != null) {
if (cambio) { /* Es posible cambiar de asiento */
let sameTime = !(hours1 == noonHour && minutes1 == noonMin);
if (sameTime) {
texto += `Siéntate en el lado ${getLeftSeat(true, el.NaS) ? "<b>izquierdo</b>" : "<b>derecho</b>"} del vehículo de ${adapt(hours1) + ":" + adapt(minutes1)} ` +
`a ${adapt(noonHour) + ":" + adapt(noonMin)}, y luego`;
};
texto += `\t ${sameTime ? 's' : 'S'}iéntate al lado ${getLeftSeat(false, el.NaS) ? "<b>izquierdo</b>" : "<b>derecho</b>"} del vehículo `;
texto += sameTime
? `de ${adapt(noonHour) + ":" + adapt(noonMin)} a ${adapt(hours2) + ":" + adapt(minutes2)} `
: `durante todo el trayecto `;
} else { /* No es posible cambiar de asiento */
if (el["sunrise"] != null) {
let morning = el["noon"].getTime() - el["sunrise"].getTime(),
afternoon = el["sunset"].getTime() - el["noon"].getTime();
leftSeat = getLeftSeat(morning >= afternoon, el.NaS);
texto += `Siéntate en el lado ${leftSeat ? "<b>izquierdo</b>" : "<b>derecho</b>"} del vehículo de ${adapt(hours1) + ":" + adapt(minutes1)} ` +
`a ${adapt(hours2) + ":" + adapt(minutes2)} `;
} else if (el["sunrise"] == null) {
texto += `Siéntate en el lado ${getLeftSeat(false, el.NaS) ? "<b>izquierdo</b>" : "<b>derecho</b>"} del vehículo de ${adapt(hours1) + ":" + adapt(minutes1)} ` +
`a ${adapt(hours2) + ":" + adapt(minutes2)} `;
} else if (el["sunset"] == null) {
texto += `Siéntate en el lado ${getLeftSeat(true, el.NaS) ? "<b>izquierdo</b>" : "<b>derecho</b>"} del vehículo de ${adapt(hours1) + ":" + adapt(minutes1)} ` +
`a ${adapt(hours2) + ":" + adapt(minutes2)} `;
};
};
} else { /* No es necesario cambiarse: todo el trayecto courre ANTES o DESPUÉS del Mediodia Solar */
leftSeat = getLeftSeat(el["AM"], el.NaS);
texto += `Siéntate en el lado ${leftSeat ? "<b>izquierdo</b>" : "<b>derecho</b>"} del vehículo durante todo el trayecto `;
};
texto += '<br>'
if (!el.night) texto += `${sun ? '<span>☀️</span>' : '<span>⛅</span>'}`;
let div = document.createElement("div");
div.setAttribute('id', `${i % 2 == 0 ? 'light' : 'dark'}`);
div.setAttribute('class', 'card');
let p = document.createElement("p");
p.innerHTML = texto;
div.appendChild(p);
render.appendChild(div);
});
let boton = document.createElement("button");
boton.innerHTML = "Refrescar";
boton.setAttribute("class", "preferencia");
boton.setAttribute("id", "resetea");
render.appendChild(boton);
render.style.display = 'inherit';
reloadId(ID);
onClick(resetea, () => { window.location.reload(); });
let camera = getID('camera');
camera.style.display = 'flex';
onClick(camera, () => { printAsPDF(); });
};
/** Adapta las secciones para facilitar su posterior interpretación
* y renderización en pantalla */
function sectionAdapter() {
let { diasalida, diallegada } = datos;
let fechas = [diasalida, diallegada];
/**Antes del Mediodia Solar? true: false: null*/
let AM;
let cosa = [{}, {}];
let indices = [0, (subSection.length - 1)];
for (let j = 0; j < fechas.length; j++) {
let sunset = subSection[indices[j]]["sunset"],
sunrise = subSection[indices[j]]["sunrise"],
noon = subSection[indices[j]]["noon"];
let night = datos.night;
if (!night) {
if (subSection.length > 1) {
if (j == 0) {
sunrise = sunrise.getTime() > diasalida.getTime() ? sunrise : diasalida;
noon = noon?.getTime() > diasalida.getTime() ? noon : diasalida;
} else {
sunset = sunset.getTime() < diallegada.getTime() ? sunset : diallegada;
noon = noon?.getTime() < diallegada.getTime() ? noon : diallegada;
};
} else {
sunrise = sunrise.getTime() > diasalida.getTime() ? sunrise : diasalida;
sunset = sunset.getTime() < diallegada.getTime() ? sunset : diallegada;
};
if ((noon > sunrise && noon > sunset) || (noon == diallegada)) {
AM = true;
} else if ((noon < sunrise && noon < sunset) || (noon == diasalida)) {
AM = false;
} else {
AM = null;
};
};
cosa[indices[j]] = {
sunrise: sunrise,
sunriseCoords: sunrise != null ? subSection[indices[j]]["sunriseCoords"] : null,
sunriseOffset: sunrise != null ? subSection[indices[j]]["sunriseOffset"] : null,
sunset: sunset,
sunsetCoords: sunset != null ? subSection[indices[j]]["sunsetCoords"] : null,
sunsetOffset: sunset != null ? subSection[indices[j]]["sunsetOffset"] : null,
NaS: subSection[indices[j]].NaS,
noon: noon,
noonCoords: subSection[indices[j]]["noonCoords"],
noonOffset: subSection[indices[j]]["noonOffset"],
/* Datos adicionales: */
night: night,
AM: AM
};
subSection[indices[j]] = cosa[indices[j]];
};
console.log("Secciones adaptadas");
console.log(subSection);
};
/** Formatea las secciones para que sean entidades separadas, cada una con su
* amanecer, ocaso y mediodía solar */
async function sectionFormatter() {
let { start, end, local } = datos;
try {
let formatted = [{}]; //Eliminamos elementos sobrantes
while (!subSection[0].date) subSection.shift(); //ordenamos
subSection.sort((e, f) => { return e["date"].getTime() > f["date"].getTime() ? 1 : -1 });
//eliminamos o actualizamos la primera y la última posición,
//según sea de día o no en la segunda y la penúltima posición
//RECUERDA: debe empezar por 'sunrise'. Debe acabar por 'sunset'
let eventos = ["sunrise", "sunset"];
let propiedades = [start, end];
for (let j = 0; j < eventos.length; j++) {
let indices = [1, (subSection.length - 2)];
if (eventos[j] == subSection[indices[j]]["event"]) {
(j > 0) ? subSection.pop() : subSection.shift();
} else {
subSection[j > 0 ? indices[j] + 1 : 0] = {
event: eventos[j],
date: propiedades[j][eventos[j]],
coords: getNewCoords(datos["start"], datos["end"], (j > 0 ? 1 : 0)),
offset: local ? await getOffset(j > 0 ? datos["end"] : datos["start"]) : null,
rate: j > 0 ? 1 : 0,
};
};
};
//comprobamos que el número de elementos sea par
if (subSection.length % 2 != 0) {
throw new Error("Error en el formateo de las secciones");
};
//formateamos - PASO FINAL
for (let i = 0; i < subSection.length; i += 2) {
let noon, sunrise, sunset, sunriseCoords, sunsetCoords, noonCoords, sunriseOffset, sunsetOffset, noonOffset, NaS;
sunrise = subSection[i]["date"];
sunset = subSection[i + 1]["date"];
noon = new Date(Math.floor((sunset.getTime() - sunrise.getTime()) / 2) + sunrise.getTime());
sunriseCoords = subSection[i]["coords"];
sunsetCoords = subSection[i + 1]["coords"];
noonCoords = {
lat: (((sunsetCoords.lat - sunriseCoords.lat) / 2) + sunriseCoords.lat),
lon: (((sunsetCoords.lon - sunriseCoords.lon) / 2) + sunriseCoords.lon)
};
sunriseOffset = subSection[i]["offset"];
sunsetOffset = subSection[i + 1]["offset"];
noonOffset = local ? await getOffset(noonCoords) : null;
NaS = subSection[i]["coords"].lat > subSection[i + 1]["coords"].lat;
formatted[i / 2] = {
sunrise: sunrise,
sunriseCoords: sunriseCoords,
sunriseOffset: sunriseOffset,
sunset: sunset,
sunsetCoords: sunsetCoords,
sunsetOffset: sunsetOffset,
noon: noon,
noonCoords: noonCoords,
noonOffset: noonOffset,
NaS: NaS
};
};
subSection = formatted;
console.log("Subsecciones formateadas: \n");
console.log(subSection);
} catch (error) {
console.log(error);
}
};
/** Establece amaneceres y anocheceres con un rango de exactitud determinado,
* a lo largo del trayecto (se mueve tanto el vehículo como la tierra alrededor del sol),
* y marca sus coordenadas, su hora, el tipo de evento (amanecer o anochecer) y la
* tasa de avance respecto al trayecto total. */
async function updateSingleSections() {
/** Máxima diferencia aceptable (milisegundos) */
let MAX_DIFF = 2500;
/**Tasa de avance a lo largo del trayecto*/
let RATE = 0;
let { start, end, diasalida, diallegada, local } = datos;
let datePointer = diasalida;
let diff = ONE_HOUR;
let time = new Date(new Date().getTime() - ONE_DAY), tiempo = new Date();
let total_time = diallegada.getTime() - diasalida.getTime();
let limit = (Math.floor(total_time * 2 / ONE_DAY) >= 1) ? Math.floor(total_time * 2 / ONE_DAY) : 2;
/** Máxima cantidad de iteraciones en el bucle */
let MAX_LOOPS = limit ** 2;
let increase = MAX_DIFF / total_time;
let loops = 0, cont = 0;
let { lat, lon } = start, coordPoint = { lat, lon };
let seekSunset = isThereDaylightNow(coordPoint, datePointer);
subSection = [{}];
subSection.push({ date: diasalida, rate: 0, timeZone: local ? await getOffset(coordPoint) : null });
let iteraciones = 0, dayInfo;
/* Funciones auxiliares */
let getNewDatePointer = () => new Date(diasalida.getTime() + (Math.floor(RATE * total_time))),
newCoords = () => getNewCoords(start, end, RATE),
getRateOfDate = (date) => (date - diasalida.getTime()) / total_time,
updateTime = () => {
dayInfo = getDayInfo(datePointer, coordPoint.lat, coordPoint.lon);
tiempo = seekSunset ? dayInfo.sunset.start : dayInfo.sunrise.end;
return new Date(tiempo.getTime());
};
let nextDay = Math.floor(diasalida.getTime() / ONE_DAY) == Math.floor(diallegada.getTime() / ONE_DAY) - 1;
datos.night = (nextDay &&
getDayInfo(diasalida, start.lat, start.lon).sunset.start.getTime() <= diasalida.getTime() &&
getDayInfo(diallegada, start.lat, start.lon).sunrise.end.getTime() >= diallegada.getTime());
while (!datos.night && cont <= limit + 1 && datePointer.getTime() < diallegada.getTime() && loops < MAX_LOOPS) {
loops++;
if (!seekSunset && cont >= 0) {
datePointer = new Date(datePointer.getTime() + ONE_DAY);
};
while (!(time.getTime() > subSection[subSection.length - 1].date.getTime()) || !(diff <= MAX_DIFF)) {
iteraciones++;
time = updateTime();
RATE = getRateOfDate(time.getTime());
coordPoint = newCoords();
if ((seekSunset && isThereDaylightNow(coordPoint, datePointer)) ||
(!seekSunset && !isThereDaylightNow(coordPoint, datePointer))) {
RATE += increase
} else {
RATE -= increase
};
coordPoint = newCoords();
datePointer = getNewDatePointer();
datePointer = updateTime();
diff = getAbsoluteDiff(time.getTime(), datePointer.getTime());
};
if (RATE < 1 && RATE > subSection[subSection.length - 1].rate) {
subSection.push({
event: seekSunset ? "sunset" : "sunrise",
date: datePointer,
coords: coordPoint,
offset: local ? await getOffset(coordPoint) : null,
rate: RATE
});
diff = ONE_HOUR;
cont++;
seekSunset = !seekSunset;
};
};
subSection.push({ date: diallegada, rate: 1, timeZone: local ? await getOffset(coordPoint) : null });
console.log('datos: \n', datos)
console.log("se han necesitado " + iteraciones + " iteraciones para una "
+ "precisión de +/- " + MAX_DIFF + " milisegundos en los cálculos");
console.log(subSection);
//comprobamos que No haya salido una cosa muy loca:
if (checkForDuplicates(subSection, 'date')) {
throw new Error('Ha habido algún error con las fechas!');
};
};
/** Función que comprueba si hay duplicados en un array,
* para al menos una de sus propiedades
* @param {Array} array donde buscar
* @param {String} property propiedad que comparar
* @returns True si hay duplicados // False si no los hay */
function checkForDuplicates(array, property) {
if (array.length > 1) {
if (array.some(el => el[property])) {
for (let i = 0; i < array.length; i++) {
for (let j = 0; j < array.length; j++) {
if (array[i][property] == array[j][property]
&& i != j) {
return true;
};
};
};
return false;
} else {
console.log("Propiedad no encontrada en ningún elemento del array");
};
};
};
/** Nos dice si es de día en un momento dado, en un lugar dado
* @param {Object} here coordenadas actuales
* @param {Date} now momento actual
* @returns {Boolean} True si es de dia, false si es de noche */
function isThereDaylightNow(here, now) {
let amanecer = getDayInfo(now, here.lat, here.lon).sunrise.end;
let ocaso = getDayInfo(now, here.lat, here.lon).sunset.start;
return (now.getTime() >= amanecer.getTime() && now.getTime() < ocaso.getTime());
};
/** Consigue las coordenadas de las ciudades y las devuelve en forma de objeto
* @returns {Object} Objeto con las coordenadas recién obtenidas */
async function updateCoords() {
let coordenadas1, coordenadas2;
coordenadas1 = datos.prov_start;
coordenadas2 = datos.prov_end;
let coord = {
latOrig: coordenadas1.lat,
lonOrig: coordenadas1.lon,
latDest: coordenadas2.lat,
lonDest: coordenadas2.lon
};
if (coordenadas1 && coordenadas2) {
return coord;
} else {
return null;
};
};
/** Conseguimos las coordenadas de las ciudades que le
* pasemos como parámetros. Para ello, usaremos la API de OpenStreetMap, que nos devuelve
* las coordenadas de una ciudad a partir de su nombre.
* En caso de que la API de OpenStreetMap no funcione, usaremos la API de OpenCageData.
* @param {String} city @param {String} country /país
* @return {JSON} JSON con los datos Lon(gitud) y Lat(itud)*/
async function getCoords(city, country) {
const proxyEndpoint = window.location.origin;
try {
const apiKey = '46612f62f2db46ac939d531e37c01c94';
const response = await fetch(`${proxyEndpoint}/api/coords?city=${city}&country=${country}&apiKey=${apiKey}`);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const backupData = await response.json();
if (backupData.results.length > 0) {
const { lng, lat } = backupData.results[0].geometry;
return { lon: parseFloat(lng), lat: parseFloat(lat) };
} else {
throw new Error('No se pudo obtener datos de OpenCage Data API');
}
} catch (backupError) {
console.log(backupError);
}
}
/** Retorna el valor "cocinado" de un elemento del DOM, listo para ser usado
* @param {String} id
* @returns {*} */
function valor(id) {
let valor = null;
switch (id) {
case "minutosalida":
valor = parseInt(getVal(id), 10) + parseInt(getVal("horasalida"), 10) * 60;
break;
case "minutollegada":
valor = parseInt(getVal(id), 10) + parseInt(getVal("horallegada"), 10) * 60;
break;
case "diasalida":
valor = parseInt(getVal(id), 10) + parseInt(getVal("horasalida"), 10) * 60;
valor = new Date(new Date(getVal(id)).getTime() + valor * 60000 + (parseInt(getVal("minutosalida"), 10)) * 60000 - DATE_ADJUSTMENT);
break;
case "diallegada":
valor = parseInt(getVal(id), 10) + parseInt(getVal("horallegada"), 10) * 60;
valor = new Date(new Date(getVal(id)).getTime() + valor * 60000 + (parseInt(getVal("minutollegada"), 10)) * 60000 - DATE_ADJUSTMENT);
break;
case "origen":
case "destino":
case "paisOrigen":
case "paisDestino":
valor = getVal(id).trim().replaceAll(" ", "%20").replaceAll("_","%20").toLowerCase();
valor = quitaTildes(valor);
break;
default:
valor = getVal(id);
break;
}
if (valor == "true") {
valor = true;
} else if (valor == "false") {
valor = false;
}
return valor;
}
/** Añade un escuchador de eventos click a un elemento DOM,
* lo cual ejecuta una función de forma SEGURA en caso de click
* @param {Object} elem Nombre del elemento DOM
* @param {Function} fun Nombre de la función a ejecutar */
function onClick(elem, fun) {
elem.addEventListener("click", (e) => {
e.preventDefault();
fun();
})
}
/**Añade a cada elemento del array ID su elemento del DOM correspondiente*/
function reloadId(IDES) {
//imprescindible
IDES.forEach((el) => (window[el] = getID(el) ? getID(el) : null));
//UIX: ajuste de paleta de colores
let colorToggle = getID('color-toggle');
colorToggle.classList.add('rotate');
onClick(colorToggle, () => {
colorToggle.textContent = colorToggle.textContent === '🌙' ? '☀️' : '🌙';
document.body.classList.toggle('invert-colors');
const allTextElements = document.querySelectorAll('h1, a, label, small, button, input, select');
allTextElements.forEach(nodo => nodo.classList.toggle('invert-text-colors'));
});
//ajuste de horas en caso de error
[...horas, "diasalida", "diallegada"].forEach((inputId) => {
getID(inputId).addEventListener("change", updateArrivalTime());
});
let header = document.querySelector('header');
header.addEventListener('mouseenter', () => { getID('info-text').style.display = 'inline'; });
header.addEventListener('mouseleave', () => { getID('info-text').style.display = 'none'; });
}
/** Función que devuelve un elemento del DOM
* @param {String} id ID del elemento DOM a seleccionar
* @returns {Object} Elemento DOM */
function getID(id) {
return document.getElementById(id);
}
/** Función que devuelve el valor de un elemento del DOM
* @param {String} id ID del elemento DOM a seleccionar
* @returns {*} Valor del elemento */
let getVal = (id) => typeof id == "string" ? getID(id)?.value : id?.value;
/** Comprueba si una ciudad pertenece a un país
* @param {String} city
* @param {String} country
* @returns {Boolean} */
function checkCorrespondence(city, country) {
let citiesInCountry = city_data.countries[country];
if (citiesInCountry == undefined) return false;
city = quitaTildes(city).toLowerCase().trim();
citiesInCountry = citiesInCountry.map((c)=>quitaTildes(c).toLowerCase())
console.log(`La ciudad ${city} ${citiesInCountry.includes(city) ? "sí" : "no"} está en el país ${country}`);
return citiesInCountry.includes(city);
}
/**Quita las tildes y las cedillas */
function quitaTildes(string) {
return string.replaceAll("á", "a").replaceAll("é", "e").replaceAll("í", "i").replaceAll("ó", "o").replaceAll("ú", "u").replaceAll("ñ", "n").replaceAll("ü", "u").replaceAll("ç", "c").replaceAll("à", "a").replaceAll("è", "e").replaceAll("ì", "i").replaceAll("ò", "o").replaceAll("ù", "u");
}
/** Comprueba que todos los campos del formulario están correctamente
* rellenos, y si no lo están, muestra un mensaje de error
* @returns {Boolean} True si NO hay ningún error en el formulario*/
async function checkForm() {
let NoErr = true, msg = "";
form.forEach((el) => {
if ((getVal(el) == "" || getVal(el) == null) && !specialData.includes(el)) {
msg += `El campo ${el} está vacío \n`;
NoErr = false;
}
});
if (valor("origen") == valor("destino") &&
valor("paisOrigen") == valor("paisDestino")) {
msg += "El origen y el destino no pueden ser iguales \n";
NoErr = false;
}
if (getVal("minutosalida") > 59 || getVal("minutosalida") < 0
|| getVal("minutollegada") > 59 || getVal("minutollegada") < 0) {
msg += "El campo de minutos no es correcto \n";
NoErr = false;
}
if (getVal("horallegada") > 23 || getVal("horasalida") > 23 || getVal("horasalida") < 0 || getVal("horallegada") < 0) {
msg += "El campo de horas no es correcto \n";
NoErr = false;
}
if (valor("diasalida") >= valor("diallegada")) {
msg += "La fecha de llegada no puede ser anterior o igual a la de salida \n";
NoErr = false;
}
if (valor("diasalida") < Date.now() / 1000 / 60 / 60 / 24) {
msg += "La fecha de salida no puede ser anterior al día de hoy \n";
NoErr = false;
}
datos['valid_start'] = checkCorrespondence(getVal("origen"), getVal("paisOrigen"));
datos['valid_end'] = checkCorrespondence(getVal("destino"), getVal("paisDestino"));
if (datos.valid_start !== true) {
let confirm_start = window.confirm(`La ciudad de origen no se encuentra en el país indicado. ¿Desea continuar? \n Los resultados serán menos fiables`);
if (!confirm_start) {
NoErr = false;
return;
}
}
if (datos.valid_end !== true) {
let confirm_end = window.confirm(`La ciudad de destino no se encuentra en el país indicado. ¿Desea continuar? \n Los resultados serán menos fiables`);
if (!confirm_end) {
NoErr = false;
return;
}
}
if (NoErr) {
datos['prov_end'] = await getCoords(valor("destino"), valor("paisDestino"));;
datos['prov_start'] = await getCoords(valor("origen"), valor("paisOrigen"));
}
if (NoErr) {
let diaLlegada = valor("diallegada");
let diaSalida = valor("diasalida");
let speed = getAngularDistance(datos['prov_start'], datos['prov_end']) / ((diaLlegada - diaSalida) / (1000 * 60 * 60));
if (speed > 830) {
let valido_provisional = window.confirm(
"La velocidad del vehículo es muy alta. ¿Es esto un error? \n" +
"Si es así, pulsa 'Cancelar' y corrige los datos. \n" +
"Si no, pulsa 'Aceptar' para continuar. \n");
if (!valido_provisional) {
NoErr = false;
datos['valid_start'] = false;
datos['valid_end'] = false;
}
}
}
if (!NoErr) { window.alert(msg); }
return NoErr;
}
/** Comprueba que la hora de salida no sea posterior a la de llegada,
* y si es así, iguala ambas */
function updateArrivalTime() {
const horasalida = parseInt(getID("horasalida").value);
const minutosalida = parseInt(getID("minutosalida").value);
const horallegada = parseInt(getID("horallegada").value);
const minutollegada = parseInt(getID("minutollegada").value);
const diasalida = new Date(getID("diasalida").value);
const diallegada = new Date(getID("diallegada").value);
diasalida.setHours(horasalida, minutosalida);
diallegada.setHours(horallegada, minutollegada);
if (diasalida > diallegada) {
getID("horallegada").value = horasalida;
getID("minutollegada").value = minutosalida;
getID("diallegada").value = getID("diasalida").value;
}
}
/** Imprime la página como PDF para facilitarle la vida al usuario final */
async function printAsPDF() {
let fecha = new Date().getHours();
fecha = JSON.stringify(fecha).substring(0, 10).replaceAll(/ /g, '_');
let filename = `HELIOS_${fecha}_origen#${valor(datos['origen'])}_${valor(datos['paisOrigen'])}_destino#${valor(datos['destino'])}_${valor(datos['paisDestino'])}`;
filename += '.pdf';
let header = getID('header');
header.style.position = 'absolute';
getID('HELIOS').style.display = 'none';
getID('footer').style.display = 'none';
getID('resetea').style.display = 'none';
printJS({
printable: 'container',
type: 'html',
css: [
"./styles.css",
"./secundario.css"
],
scanStyles: true,
header: null,
targetStyles: ['*'],
onLoadingEnd: null,
orientation: 'portrait',
fileName: filename,
});
header.style.position = 'fixed';
getID('HELIOS').style.display = 'block';
getID('footer').style.display = 'block';
getID('resetea').style.display = 'block';
}