Spaces:
Running
Running
Upload 1048 files
Browse files- app.js +69 -1
- convert-event-html-to-csv.js +99 -26
- data/events-all.csv +211 -0
- index.html +1 -1
app.js
CHANGED
|
@@ -74,6 +74,24 @@ function parseSingleRowCsv(text) {
|
|
| 74 |
return row;
|
| 75 |
}
|
| 76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
function parseFirstNumber(s) {
|
| 78 |
const m = String(s || '').match(/[-+]?\d+(?:\.\d+)?/);
|
| 79 |
if (!m) return null;
|
|
@@ -232,6 +250,56 @@ async function loadEventImpactFromCsv(eventId) {
|
|
| 232 |
};
|
| 233 |
}
|
| 234 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 235 |
async function loadEventImpactFromHtml(eventId) {
|
| 236 |
const path = `data/event-${eventId}/event-${eventId}.html`;
|
| 237 |
const res = await fetch(path, { cache: 'no-store' });
|
|
@@ -494,7 +562,7 @@ function init() {
|
|
| 494 |
|
| 495 |
createMoon();
|
| 496 |
addStars();
|
| 497 |
-
|
| 498 |
.then((data) => {
|
| 499 |
impactsData = data;
|
| 500 |
updateMagnitudeRanges(data);
|
|
|
|
| 74 |
return row;
|
| 75 |
}
|
| 76 |
|
| 77 |
+
function parseMultiRowCsv(text) {
|
| 78 |
+
const lines = String(text || '')
|
| 79 |
+
.replace(/^\uFEFF/, '')
|
| 80 |
+
.split(/\r?\n/)
|
| 81 |
+
.map((l) => l.trim())
|
| 82 |
+
.filter(Boolean);
|
| 83 |
+
if (lines.length < 2) return [];
|
| 84 |
+
const keys = parseCsvLine(lines[0]).map((s) => s.trim());
|
| 85 |
+
const rows = [];
|
| 86 |
+
for (let i = 1; i < lines.length; i++) {
|
| 87 |
+
const values = parseCsvLine(lines[i]);
|
| 88 |
+
const row = {};
|
| 89 |
+
for (let k = 0; k < keys.length; k++) row[keys[k]] = (values[k] ?? '').trim();
|
| 90 |
+
rows.push(row);
|
| 91 |
+
}
|
| 92 |
+
return rows;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
function parseFirstNumber(s) {
|
| 96 |
const m = String(s || '').match(/[-+]?\d+(?:\.\d+)?/);
|
| 97 |
if (!m) return null;
|
|
|
|
| 250 |
};
|
| 251 |
}
|
| 252 |
|
| 253 |
+
async function loadAllImpactsFromCombinedCsv() {
|
| 254 |
+
const res = await fetch('data/events-all.csv', { cache: 'no-store' });
|
| 255 |
+
if (!res.ok) throw new Error(`Failed to fetch data/events-all.csv (${res.status})`);
|
| 256 |
+
const csvText = await res.text();
|
| 257 |
+
const rows = parseMultiRowCsv(csvText);
|
| 258 |
+
const impacts = [];
|
| 259 |
+
for (const row of rows) {
|
| 260 |
+
const eventId = parseInt(row.event_num, 10);
|
| 261 |
+
if (!Number.isFinite(eventId)) continue;
|
| 262 |
+
const latitude = parseFloat(row.lunar_lat_deg);
|
| 263 |
+
const longitude = parseFloat(row.lunar_long_deg);
|
| 264 |
+
if (!Number.isFinite(latitude) || !Number.isFinite(longitude)) continue;
|
| 265 |
+
|
| 266 |
+
const magRText = (row.mag_r || '').trim();
|
| 267 |
+
const magIText = (row.mag_i || '').trim();
|
| 268 |
+
const durationText = (row.duration_sec || '').trim();
|
| 269 |
+
|
| 270 |
+
const magR = parseFirstNumber(magRText);
|
| 271 |
+
const magI = parseFirstNumber(magIText);
|
| 272 |
+
const duration = parseFirstNumber(durationText);
|
| 273 |
+
|
| 274 |
+
impacts.push({
|
| 275 |
+
id: eventId,
|
| 276 |
+
csvId: (row.id || '').trim(),
|
| 277 |
+
dateTime: row.ut_date && row.ut_time ? `${row.ut_date} ${row.ut_time}` : '',
|
| 278 |
+
date: (row.ut_date || '').trim(),
|
| 279 |
+
time: (row.ut_time || '').trim(),
|
| 280 |
+
duration: Number.isFinite(duration) ? duration : null,
|
| 281 |
+
magR: Number.isFinite(magR) ? magR : null,
|
| 282 |
+
magI: Number.isFinite(magI) ? magI : null,
|
| 283 |
+
durationText: durationText || null,
|
| 284 |
+
magRText: magRText || null,
|
| 285 |
+
magIText: magIText || null,
|
| 286 |
+
peakMagR: Number.isFinite(magR) ? magR : null,
|
| 287 |
+
peakMagI: Number.isFinite(magI) ? magI : null,
|
| 288 |
+
observer: 'NELIOTA',
|
| 289 |
+
classification: '',
|
| 290 |
+
latitude,
|
| 291 |
+
longitude,
|
| 292 |
+
airmassText: (row.airmass || '').trim(),
|
| 293 |
+
altitudeDegText: (row.altitude_deg || '').trim(),
|
| 294 |
+
azimuthDegText: (row.azimuth_deg || '').trim(),
|
| 295 |
+
numberOfCamerasText: (row.number_of_cameras || '').trim(),
|
| 296 |
+
mediaSizeMbText: (row.media_size_mb || '').trim(),
|
| 297 |
+
size: 4
|
| 298 |
+
});
|
| 299 |
+
}
|
| 300 |
+
return impacts;
|
| 301 |
+
}
|
| 302 |
+
|
| 303 |
async function loadEventImpactFromHtml(eventId) {
|
| 304 |
const path = `data/event-${eventId}/event-${eventId}.html`;
|
| 305 |
const res = await fetch(path, { cache: 'no-store' });
|
|
|
|
| 562 |
|
| 563 |
createMoon();
|
| 564 |
addStars();
|
| 565 |
+
loadAllImpactsFromCombinedCsv()
|
| 566 |
.then((data) => {
|
| 567 |
impactsData = data;
|
| 568 |
updateMagnitudeRanges(data);
|
convert-event-html-to-csv.js
CHANGED
|
@@ -17,6 +17,7 @@ const header = [
|
|
| 17 |
'number_of_cameras',
|
| 18 |
'media_size_mb'
|
| 19 |
];
|
|
|
|
| 20 |
|
| 21 |
function decodeEntities(s) {
|
| 22 |
return String(s || '')
|
|
@@ -42,6 +43,54 @@ function escapeCsv(value) {
|
|
| 42 |
return s;
|
| 43 |
}
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
function findValue(html, label) {
|
| 46 |
const escaped = label.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
| 47 |
const re = new RegExp(
|
|
@@ -91,46 +140,70 @@ function main() {
|
|
| 91 |
let created = 0;
|
| 92 |
let skipped = 0;
|
| 93 |
let failed = 0;
|
|
|
|
| 94 |
|
| 95 |
for (const htmlPath of htmlFiles) {
|
| 96 |
const dir = path.dirname(htmlPath);
|
| 97 |
const base = path.basename(htmlPath, '.html');
|
| 98 |
const csvPath = path.join(dir, `${base}.csv`);
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
skipped++;
|
| 102 |
-
continue;
|
| 103 |
-
}
|
| 104 |
|
| 105 |
try {
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
} catch (e) {
|
| 127 |
failed++;
|
| 128 |
process.stderr.write(`FAILED ${htmlPath}: ${e.message}\n`);
|
| 129 |
}
|
| 130 |
}
|
| 131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 132 |
process.stdout.write(
|
| 133 |
-
`Done. Created: ${created}, Skipped(existing): ${skipped}, Failed: ${failed}, Total HTML: ${htmlFiles.length}\n`
|
| 134 |
);
|
| 135 |
}
|
| 136 |
|
|
|
|
| 17 |
'number_of_cameras',
|
| 18 |
'media_size_mb'
|
| 19 |
];
|
| 20 |
+
const combinedHeader = ['event_num', ...header];
|
| 21 |
|
| 22 |
function decodeEntities(s) {
|
| 23 |
return String(s || '')
|
|
|
|
| 43 |
return s;
|
| 44 |
}
|
| 45 |
|
| 46 |
+
function parseCsvLine(line) {
|
| 47 |
+
const out = [];
|
| 48 |
+
let current = '';
|
| 49 |
+
let inQuotes = false;
|
| 50 |
+
for (let i = 0; i < line.length; i++) {
|
| 51 |
+
const ch = line[i];
|
| 52 |
+
if (inQuotes) {
|
| 53 |
+
if (ch === '"') {
|
| 54 |
+
if (line[i + 1] === '"') {
|
| 55 |
+
current += '"';
|
| 56 |
+
i++;
|
| 57 |
+
} else {
|
| 58 |
+
inQuotes = false;
|
| 59 |
+
}
|
| 60 |
+
} else {
|
| 61 |
+
current += ch;
|
| 62 |
+
}
|
| 63 |
+
continue;
|
| 64 |
+
}
|
| 65 |
+
if (ch === '"') {
|
| 66 |
+
inQuotes = true;
|
| 67 |
+
continue;
|
| 68 |
+
}
|
| 69 |
+
if (ch === ',') {
|
| 70 |
+
out.push(current);
|
| 71 |
+
current = '';
|
| 72 |
+
continue;
|
| 73 |
+
}
|
| 74 |
+
current += ch;
|
| 75 |
+
}
|
| 76 |
+
out.push(current);
|
| 77 |
+
return out;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
function parseSingleRowCsv(text) {
|
| 81 |
+
const lines = String(text || '')
|
| 82 |
+
.replace(/^\uFEFF/, '')
|
| 83 |
+
.split(/\r?\n/)
|
| 84 |
+
.map((l) => l.trim())
|
| 85 |
+
.filter(Boolean);
|
| 86 |
+
if (lines.length < 2) return null;
|
| 87 |
+
const keys = parseCsvLine(lines[0]).map((s) => s.trim());
|
| 88 |
+
const values = parseCsvLine(lines[1]);
|
| 89 |
+
const row = {};
|
| 90 |
+
for (let i = 0; i < keys.length; i++) row[keys[i]] = (values[i] ?? '').trim();
|
| 91 |
+
return row;
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
function findValue(html, label) {
|
| 95 |
const escaped = label.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
| 96 |
const re = new RegExp(
|
|
|
|
| 140 |
let created = 0;
|
| 141 |
let skipped = 0;
|
| 142 |
let failed = 0;
|
| 143 |
+
const combinedRows = [];
|
| 144 |
|
| 145 |
for (const htmlPath of htmlFiles) {
|
| 146 |
const dir = path.dirname(htmlPath);
|
| 147 |
const base = path.basename(htmlPath, '.html');
|
| 148 |
const csvPath = path.join(dir, `${base}.csv`);
|
| 149 |
+
const eventNumMatch = base.match(/^event-(\d+)$/i);
|
| 150 |
+
const eventNum = eventNumMatch ? eventNumMatch[1] : '';
|
|
|
|
|
|
|
|
|
|
| 151 |
|
| 152 |
try {
|
| 153 |
+
let row = null;
|
| 154 |
+
if (fs.existsSync(csvPath)) {
|
| 155 |
+
skipped++;
|
| 156 |
+
row = parseSingleRowCsv(fs.readFileSync(csvPath, 'utf8'));
|
| 157 |
+
} else {
|
| 158 |
+
const html = fs.readFileSync(htmlPath, 'utf8');
|
| 159 |
+
row = {
|
| 160 |
+
id: findEventId(html),
|
| 161 |
+
airmass: toNumberOrEmpty(findValue(html, 'Airmass')),
|
| 162 |
+
altitude_deg: toNumberOrEmpty(findValue(html, 'Altitude (deg)')),
|
| 163 |
+
azimuth_deg: toNumberOrEmpty(findValue(html, 'Azimuth (deg)')),
|
| 164 |
+
ut_date: findValue(html, 'UT Date (DD/MM/YYYY)'),
|
| 165 |
+
ut_time: findValue(html, 'UT Time'),
|
| 166 |
+
mag_r: findValue(html, 'R (mag)'),
|
| 167 |
+
mag_i: findValue(html, 'I (mag)'),
|
| 168 |
+
lunar_long_deg: toNumberOrEmpty(findValue(html, 'Lunar Long (deg)')),
|
| 169 |
+
lunar_lat_deg: toNumberOrEmpty(findValue(html, 'Lunar Lat (deg)')),
|
| 170 |
+
duration_sec: toNumberOrEmpty(findValue(html, 'Duration (sec)')),
|
| 171 |
+
number_of_cameras: toNumberOrEmpty(findValue(html, 'Number of Cameras')),
|
| 172 |
+
media_size_mb: toNumberOrEmpty(findMediaSizeMb(html))
|
| 173 |
+
};
|
| 174 |
+
|
| 175 |
+
const csv = `${header.join(',')}\n${header.map((k) => escapeCsv(row[k])).join(',')}\n`;
|
| 176 |
+
fs.writeFileSync(csvPath, csv, 'utf8');
|
| 177 |
+
created++;
|
| 178 |
+
}
|
| 179 |
+
|
| 180 |
+
if (row && typeof row === 'object') {
|
| 181 |
+
combinedRows.push({ event_num: eventNum, ...row });
|
| 182 |
+
}
|
| 183 |
} catch (e) {
|
| 184 |
failed++;
|
| 185 |
process.stderr.write(`FAILED ${htmlPath}: ${e.message}\n`);
|
| 186 |
}
|
| 187 |
}
|
| 188 |
|
| 189 |
+
combinedRows.sort((a, b) => {
|
| 190 |
+
const an = parseInt(a.event_num, 10);
|
| 191 |
+
const bn = parseInt(b.event_num, 10);
|
| 192 |
+
if (Number.isFinite(an) && Number.isFinite(bn)) return an - bn;
|
| 193 |
+
return String(a.event_num).localeCompare(String(b.event_num));
|
| 194 |
+
});
|
| 195 |
+
|
| 196 |
+
const combinedPath = path.join(root, 'events-all.csv');
|
| 197 |
+
const combinedCsv =
|
| 198 |
+
`${combinedHeader.join(',')}\n` +
|
| 199 |
+
combinedRows
|
| 200 |
+
.map((row) => combinedHeader.map((k) => escapeCsv(row[k])).join(','))
|
| 201 |
+
.join('\n') +
|
| 202 |
+
'\n';
|
| 203 |
+
fs.writeFileSync(combinedPath, combinedCsv, 'utf8');
|
| 204 |
+
|
| 205 |
process.stdout.write(
|
| 206 |
+
`Done. Created: ${created}, Skipped(existing): ${skipped}, Failed: ${failed}, Total HTML: ${htmlFiles.length}, Combined: ${combinedRows.length} -> ${path.relative(__dirname, combinedPath)}\n`
|
| 207 |
);
|
| 208 |
}
|
| 209 |
|
data/events-all.csv
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
event_num,id,airmass,altitude_deg,azimuth_deg,ut_date,ut_time,mag_r,mag_i,lunar_long_deg,lunar_lat_deg,duration_sec,number_of_cameras,media_size_mb
|
| 2 |
+
61,20170201_171357,1.66,37,235.7,01/02/2017,17:13:57.863,10.2 ± 0.1,9.1 ± 0.1,-29.2,-1.5,0.033,2,91
|
| 3 |
+
62,20170301_170848,2.18,27.2,252.6,01/03/2017,17:08:46.573,6.7 ± 0.1,6.1 ± 0.1,-9.7,-10.3,0.132,2,98
|
| 4 |
+
65,20170301_171319,2.18,27.2,252.6,01/03/2017,17:13:17.360,9.2 ± 0.1,8.2 ± 0.1,29.9,4.5,0.033,2,84
|
| 5 |
+
66,20170304_205133,2.55,23,272.4,04/03/2017,20:51:31.853,9.5 ± 0.1,8.8 ± 0.1,-58.9,-12.7,0.033,2,94
|
| 6 |
+
67,20170401_194551,2.44,24.1,273.6,01/04/2017,19:45:51.650,10.2 ± 0.1,8.6 ± 0.0,-58.8,11.6,0.033,2,92
|
| 7 |
+
69,20170501_203101,2.45,24,274.3,01/05/2017,20:30:58.137,10.2 ± 0.2,8.8 ± 0.1,-43.2,4.7,0.066,2,97
|
| 8 |
+
85,20170627_185827,2.69,21.7,268.7,27/06/2017,18:58:26.680,11.1 ± 0.3,9.3 ± 0.1,-22.5,26.8,0.066,2,87
|
| 9 |
+
86,20170628_184527,1.93,31.1,255.3,28/06/2017,18:45:25.803,10.6 ± 0.4,9.5 ± 0.1,0,5.6,0.066,2,93
|
| 10 |
+
87,20170719_020036,2.31,25.5,267.9,19/07/2017,02:00:36.453,11.2 ± 0.4,9.3 ± 0.1,35,7.8,0.066,1,92
|
| 11 |
+
89,20170728_182145,2.04,29.2,239.9,28/07/2017,18:21:44.850,11.2 ± 0.3,9.3 ± 0.1,-40,-3.2,0.066,2,101
|
| 12 |
+
90,20170728_184258,2.24,26.5,243.1,28/07/2017,18:42:58.027,10.7 ± 0.2,9.6 ± 0.1,-30.6,28.5,0.033,2,96
|
| 13 |
+
91,20170728_185142,2.46,23.9,245.8,28/07/2017,18:51:41.683,10.8 ± 0.2,9.8 ± 0.1,-50.7,20.6,0.033,2,97
|
| 14 |
+
92,20170728_191719,2.76,21.1,248.6,28/07/2017,19:17:18.307,8.3 ± 0.0,6.3 ± 0.0,-18.7,18.1,0.132,2,121
|
| 15 |
+
93,20170816_010546,1.94,30.9,266.3,16/08/2017,01:05:46.763,10.2 ± 0.2,9.5 ± 0.1,47.5,32,0.066,2,100
|
| 16 |
+
95,20170816_021558,1.44,43.9,254.6,16/08/2017,02:15:58.813,10.7 ± 0.3,9.1 ± 0.1,68.1,6.7,0.066,2,100
|
| 17 |
+
96,20170816_024115,1.36,47.1,251,16/08/2017,02:41:15.113,10.8 ± 0.3,9.1 ± 0.1,34.6,-15.6,0.066,2,100
|
| 18 |
+
97,20170818_020221,2.78,20.9,278.1,18/08/2017,02:02:21.417,10.5 ± 0.0,9.0 ± 0.0,76.8,13.5,0.066,2,93
|
| 19 |
+
98,20170818_020308,2.78,20.9,278.1,18/08/2017,02:03:08.317,10.2 ± 0.1,8.8 ± 0.0,57.8,-25.9,0.066,2,93
|
| 20 |
+
100,20170914_031749,1.17,59.1,240,14/09/2017,03:17:49.737,9.2 ± 0.1,8.1 ± 0.0,70,-1.1,0.099,2,110
|
| 21 |
+
101,20170916_022624,2.2,26.8,271.9,16/09/2017,02:26:24.933,8.5 ± 0.0,7.0 ± 0.0,52.5,24.7,0.231,2,118
|
| 22 |
+
102,20171013_023343,1.26,52.2,248.7,13/10/2017,02:33:43.560,10.3 ± 0.2,9.9 ± 0.1,66.5,-12.5,0.099,2,92
|
| 23 |
+
103,20171016_024645,2.98,19.4,266.4,16/10/2017,02:46:45.613,10.7 ± 0.2,9.5 ± 0.1,72.5,-25.4,0.099,2,93
|
| 24 |
+
104,20171026_175942,2.48,23.7,215.2,26/10/2017,17:59:42.880,10.0 ± 0.3,9.4 ± 0.1,-33.8,-27.9,0.033,2,93
|
| 25 |
+
106,20171013_015421,1.42,44.5,257.7,13/10/2017,01:54:21.710,9.3 ± 0.1,8.4 ± 0.0,65.2,-17.3,0.132,2,106
|
| 26 |
+
107,20171114_033415,2.08,28.5,247.6,14/11/2017,03:34:15.203,10.3 ± 0.2,9.3 ± 0.1,64.4,-29.5,0.066,2,89
|
| 27 |
+
108,20171123_161732,2.29,25.8,211.8,23/11/2017,16:17:33.000,10.5 ± 0.2,10.1 ± 0.1,-30.5,-35,0.066,2,93
|
| 28 |
+
113,20171212_024808,1.92,31.2,239.5,12/12/2017,02:48:08.410,10.5 ± 0.2,9.0 ± 0.1,74,9,0.066,2,96
|
| 29 |
+
115,20171212_043000,1.41,45.2,213.1,12/12/2017,04:30:00.623,10.6 ± 0.3,9.8 ± 0.1,51.2,5.4,0.033,2,96
|
| 30 |
+
118,20171213_042657,1.72,35.3,224.5,13/12/2017,04:26:57.717,10.6 ± 0.2,10.0 ± 0.1,50,13,0.033,2,93
|
| 31 |
+
122,20171214_043509,2.14,27.7,229.1,14/12/2017,04:35:09.967,7.9 ± 0.1,6.8 ± 0.0,73.4,-36.9,0.132,2,95
|
| 32 |
+
123,20180112_035403,2.73,21.3,228.1,12/01/2018,03:54:03.027,10.0 ± 0.1,9.3 ± 0.1,79.2,-40.7,0.066,2,91
|
| 33 |
+
126,20180323_172419,1.14,61.3,234.7,23/03/2018,17:24:19.240,9.9 ± 0.3,8.6 ± 0.1,-52,-1.4,0.033,2,99
|
| 34 |
+
127,20180410_033657,2.49,23.6,219.5,10/04/2018,03:36:57.767,8.8 ± 0.1,8.1 ± 0.1,74.5,21.7,0.033,2,100
|
| 35 |
+
128,20180609_022918,2.41,24.3,251.1,09/06/2018,02:29:18.467,9.9 ± 0.2,9.0 ± 0.1,24.6,4.3,0.033,2,95
|
| 36 |
+
130,20180619_191209,1.56,39.8,242.8,19/06/2018,19:12:09.650,9.9 ± 0.2,9.0 ± 0.1,-59,3.6,0.033,2,90
|
| 37 |
+
131,20180619_200048,2.04,29.2,254.2,19/06/2018,20:00:48.490,9.9 ± 0.3,9.3 ± 0.1,-58.2,17.4,0.033,2,91
|
| 38 |
+
132,20180619_200409,2.04,29.2,254.2,19/06/2018,20:04:09.773,10.3 ± 0.6,8.6 ± 0.1,-20,2.5,0.033,2,91
|
| 39 |
+
133,20180709_014419,2.98,19.4,271,09/07/2018,01:44:19.410,11.2 ± 0.3,10.1 ± 0.1,46,24.9,0.033,2,91
|
| 40 |
+
135,20180806_015743,1.62,37.9,259,06/08/2018,01:57:43.687,9.7 ± 0.2,8.1 ± 0.0,10.6,-22.1,0.099,2,108
|
| 41 |
+
136,20180806_023814,1.4,45.5,251.2,06/08/2018,02:38:14.303,9.2 ± 0.1,7.7 ± 0.0,67.2,28.8,0.099,2,108
|
| 42 |
+
138,20180807_013354,2.46,23.8,274.6,07/08/2018,01:33:54.757,10.8 ± 0.3,9.3 ± 0.1,52.1,1.8,0.033,2,92
|
| 43 |
+
139,20180807_013545,2.36,24.9,273.8,07/08/2018,01:35:45.167,8.8 ± 0.1,7.7 ± 0.0,70,3.1,0.132,2,108
|
| 44 |
+
140,20180807_023318,1.7,35.9,265.4,07/08/2018,02:33:18.183,10.1 ± 0.2,9.5 ± 0.1,60.2,26.7,0.033,2,93
|
| 45 |
+
141,20180807_031033,1.47,42.9,259.2,07/08/2018,03:10:33.303,10.4 ± 0.3,9.8 ± 0.1,30.6,10.3,0.033,2,95
|
| 46 |
+
142,20180808_021955,2.53,23.1,277.7,08/08/2018,02:19:55.007,11.1 ± 0.3,9.9 ± 0.1,34.9,21.9,0.033,2,86
|
| 47 |
+
143,20180808_022823,2.43,24.1,276.9,08/08/2018,02:28:23.407,11.1 ± 0.2,10.4 ± 0.1,76.4,28,0.033,2,86
|
| 48 |
+
144,20180808_022944,2.36,24.9,276.4,08/08/2018,02:29:44.573,8.4 ± 0.0,7.3 ± 0.0,60.2,26.6,0.165,2,101
|
| 49 |
+
145,20180808_025225,2.07,28.7,273.6,08/08/2018,02:52:25.877,11.1 ± 0.3,9.7 ± 0.1,10.3,13.2,0.033,2,87
|
| 50 |
+
146,20180815_180816,2.6,22.5,244.7,15/08/2018,18:08:16.637,11.8 ± 0.4,9.6 ± 0.1,-62.4,11.7,0.033,2,90
|
| 51 |
+
149,20180904_013352,1.59,38.9,264.9,04/09/2018,01:33:52.977,9.9 ± 0.3,9.2 ± 0.1,29.2,-24.7,0.033,2,101
|
| 52 |
+
150,20180905_015137,1.9,31.6,272.2,05/09/2018,01:51:37.400,7.8 ± 0.1,6.6 ± 0.0,52.1,9.5,0.396,2,141
|
| 53 |
+
151,20180905_024754,1.48,42.5,263.4,05/09/2018,02:47:54.403,10.6 ± 0.4,9.1 ± 0.1,15.2,-15.5,0.066,2,95
|
| 54 |
+
152,20180906_020033,2.7,21.6,279,06/09/2018,02:00:33.053,11.0 ± 0.3,10.3 ± 0.1,72.5,-18.6,0.033,2,88
|
| 55 |
+
153,20180906_031004,1.74,34.9,268.9,06/09/2018,03:10:04.087,11.2 ± 0.3,9.9 ± 0.1,60.8,0,0.066,2,88
|
| 56 |
+
155,20181015_181749,2.89,20.1,217.9,15/10/2018,18:17:49.313,9.6 ± 0.2,8.8 ± 0.1,-53.3,5.5,0.066,2,95
|
| 57 |
+
162,20190209_172938,1.97,30.5,242.9,09/02/2019,17:29:38.337,10.3 ± 0.3,9.9 ± 0.1,-43.1,-36,0.033,2,92
|
| 58 |
+
163,20190209_181700,2.59,22.6,251.4,09/02/2019,18:17:00.010,10.4 ± 0.3,9.8 ± 0.1,-93.3,-21.6,0.067,2,100
|
| 59 |
+
166,20190410_195321,2.24,26.5,276.4,10/04/2019,19:53:21.200,9.5 ± 0.3,8.6 ± 0.1,-33.3,25.9,0.033,2,98
|
| 60 |
+
168,20190608_191458,1.71,35.7,260.5,08/06/2019,19:14:58.557,10.1 ± 0.4,8.6 ± 0.1,-57.4,28.7,0.033,2,98
|
| 61 |
+
169,20190608_192658,1.84,32.8,263,08/06/2019,19:26:58.337,9.2 ± 0.2,8.0 ± 0.1,-83.3,-7.6,0.066,2,98
|
| 62 |
+
172,20190628_015647,2.68,21.7,263.7,28/06/2019,01:56:47.677,8.9 ± 0.1,7.6 ± 0.0,15.5,4.3,0.099,2,101
|
| 63 |
+
173,20190628_021822,2.26,26.1,260.1,28/06/2019,02:18:22.900,10.1 ± 0.2,9.3 ± 0.1,21.2,33.2,0.099,2,101
|
| 64 |
+
174,20190706_191255,2.71,21.5,267.9,06/07/2019,19:12:55.227,10.1 ± 0.2,9.1 ± 0.1,-6.8,25.7,0.066,2,87
|
| 65 |
+
175,20190707_183255,1.78,34.2,249.3,07/07/2019,18:32:55.697,10.9 ± 0.3,9.6 ± 0.1,-77.5,35.7,0.066,2,95
|
| 66 |
+
176,20190707_184021_0,-1,-1,-1,07/07/2019,18:40:21.203,6.7 ± 0.1,5.5 ± 0.0,-57.5,34.4,0.297,2,118
|
| 67 |
+
177,20190707_184848,1.87,32.2,251.3,07/07/2019,18:48:48.083,11.9 ± 0.5,9.9 ± 0.1,-70.9,33.7,0.033,2,95
|
| 68 |
+
179,20190708_191144,1.76,34.7,239.4,08/07/2019,19:11:44.450,9.8 ± 0.2,8.2 ± 0.1,-83,8.6,0.099,2,99
|
| 69 |
+
180,20190726_001827,2.89,20.1,268.4,26/07/2019,00:18:27.627,10.8 ± 0.3,9.7 ± 0.1,53.5,-11,0.033,2,99
|
| 70 |
+
181,20190726_004135,2.45,24,265.4,26/07/2019,00:41:35.187,9.6 ± 0.1,8.2 ± 0.0,40.8,-9.3,0.099,2,110
|
| 71 |
+
182,20190727_011312,2.45,23.9,270.9,27/07/2019,01:13:12.237,10.7 ± 0.3,9.5 ± 0.1,60.5,18.5,0.033,2,96
|
| 72 |
+
183,20190727_011749,2.45,23.9,270.9,27/07/2019,01:17:49.790,9.0 ± 0.1,8.0 ± 0.0,50.4,42.3,0.132,2,112
|
| 73 |
+
184,20190727_021225,1.73,35.3,261.8,27/07/2019,02:12:25.050,9.7 ± 0.2,8.7 ± 0.1,35.7,26,0.099,2,96
|
| 74 |
+
185,20190727_023722,1.57,39.6,257.9,27/07/2019,02:37:22.717,10.2 ± 0.2,9.5 ± 0.1,49.4,0.5,0.066,2,97
|
| 75 |
+
186,20190727_025956,1.43,44.4,253,27/07/2019,02:59:56.457,9.5 ± 0.2,8.3 ± 0.1,49.8,19.9,0.099,2,107
|
| 76 |
+
187,20190727_030126,1.42,44.7,252.7,27/07/2019,03:01:26.127,8.9 ± 0.1,7.5 ± 0.0,60.8,17.4,0.099,2,103
|
| 77 |
+
188,20190728_013340,2.95,19.6,278.4,28/07/2019,01:33:40.120,10.1 ± 0.1,8.9 ± 0.1,24.2,31.7,0.067,2,95
|
| 78 |
+
189,20190728_015921,2.41,24.3,275,28/07/2019,01:59:21.347,10.8 ± 0.3,9.6 ± 0.1,4.2,21.2,0.066,2,89
|
| 79 |
+
190,20190728_020053,2.41,24.3,275,28/07/2019,02:00:53.887,11.4 ± 0.3,10.5 ± 0.1,60.5,11.2,0.033,2,89
|
| 80 |
+
191,20190728_022426,2.01,29.6,271.2,28/07/2019,02:24:26.087,11.0 ± 0.3,9.9 ± 0.1,74.2,2.9,0.066,2,90
|
| 81 |
+
193,20190806_181916,1.96,30.7,228.2,06/08/2019,18:19:16.023,10.4 ± 0.3,8.7 ± 0.1,-26.3,18.7,0.066,2,95
|
| 82 |
+
195,20190806_185636,2.41,24.4,236.7,06/08/2019,18:56:36.990,8.4 ± 0.1,7.4 ± 0.0,-7.3,23,0.066,2,96
|
| 83 |
+
196,20190806_185915,2.41,24.4,236.7,06/08/2019,18:59:15.737,9.3 ± 0.1,9.0 ± 0.1,-56,41,0.033,2,95
|
| 84 |
+
197,20190826_025056,1.55,40,267.7,26/08/2019,02:50:56.347,10.7 ± 0.2,9.1 ± 0.1,42.7,9.1,0.066,2,92
|
| 85 |
+
199,20190828_030330,3.1,18.6,281.9,28/08/2019,03:03:30.930,11.0 ± 0.3,9.8 ± 0.1,33.9,-17.2,0.033,2,81
|
| 86 |
+
200,20190905_181159,2.33,25.3,213.4,05/09/2019,18:11:59.277,10.1 ± 0.2,9.5 ± 0.1,-65.9,-22.5,0.033,2,93
|
| 87 |
+
201,20190905_185132,2.82,20.6,221.9,05/09/2019,18:51:32.997,10.3 ± 0.3,9.5 ± 0.1,-53,-4.8,0.033,2,93
|
| 88 |
+
203,20190923_033621,1.13,62.5,243.1,23/09/2019,03:36:21.557,10.2 ± 0.3,9.4 ± 0.1,25.6,-31.8,0.066,2,101
|
| 89 |
+
204,20190925_034011,1.54,40.3,263.4,25/09/2019,03:40:11.073,8.4 ± 0.1,7.4 ± 0.0,17.8,12.5,0.067,2,96
|
| 90 |
+
205,20191022_041136,1.08,67.6,222.9,22/10/2019,04:11:36.270,10.0 ± 0.2,9.3 ± 0.1,65.3,-1.6,0.066,2,93
|
| 91 |
+
206,20191024_023016,2.26,26.2,266.5,24/10/2019,02:30:16.187,9.5 ± 0.1,7.9 ± 0.0,55,-5.7,0.066,2,91
|
| 92 |
+
209,20191102_171919,2.59,22.6,209.1,02/11/2019,17:19:19.667,10.2 ± 0.3,9.3 ± 0.1,-48.3,-33.9,0.066,2,98
|
| 93 |
+
210,20191103_174938_0,-1,-1,-1,03/11/2019,17:49:38.487,9.6 ± 0.2,8.8 ± 0.1,-25.3,12.1,0.033,2,90
|
| 94 |
+
211,20191201_161430,2.18,27.3,203.7,01/12/2019,16:14:30.210,9.2 ± 0.1,8.5 ± 0.1,3.3,-16.7,0.033,2,95
|
| 95 |
+
212,20191201_162313,2.24,26.4,206.3,01/12/2019,16:23:13.797,8.4 ± 0.1,5.6 ± 0.0,-23.1,-13.1,0.132,2,111
|
| 96 |
+
213,20191201_163043,2.27,26.1,207.3,01/12/2019,16:30:43.410,10.8 ± 0.2,9.1 ± 0.1,-40.7,16.5,0.033,2,95
|
| 97 |
+
214,20191201_171441,2.6,22.5,215.6,01/12/2019,17:14:41.437,11.2 ± 0.4,9.4 ± 0.1,-32.4,-28.6,0.033,2,95
|
| 98 |
+
215,20191220_043416,1.3,50.2,200,20/12/2019,04:34:16.680,9.5 ± 0.2,8.5 ± 0.1,48.7,-39.8,0.099,2,99
|
| 99 |
+
217,20200130_171808,1.55,40.2,229.6,30/01/2020,17:18:08.540,11.0 ± 0.3,9.5 ± 0.1,-46.5,21.9,0.066,2,98
|
| 100 |
+
218,20200130_173538,1.65,37.2,234.6,30/01/2020,17:35:38.893,10.6 ± 0.2,9.8 ± 0.1,-40.4,-39.1,0.033,2,98
|
| 101 |
+
221,20200301_165424,1.12,63.4,221.3,01/03/2020,16:54:24.090,8.3 ± 0.1,7.2 ± 0.0,-45.1,-7.8,0.099,2,99
|
| 102 |
+
222,20200301_171006,1.14,61.8,226.3,01/03/2020,17:10:06.377,9.9 ± 0.3,9.4 ± 0.1,-31.3,-30.6,0.033,2,94
|
| 103 |
+
223,20200327_174025,2.57,22.8,267.5,27/03/2020,17:40:25.320,10.0 ± 0.1,8.7 ± 0.0,-32.1,-1.9,0.066,2,82
|
| 104 |
+
224,20200329_181410,1.63,37.9,265.6,29/03/2020,18:14:10.877,10.8 ± 0.2,9.7 ± 0.1,-91.3,15.1,0.066,2,93
|
| 105 |
+
226,20200329_191646,2.24,26.5,274.6,29/03/2020,19:16:46.510,10.2 ± 0.2,9.3 ± 0.1,-42.8,-22.7,0.033,2,93
|
| 106 |
+
227,20200428_191954,1.73,35.3,273.9,28/04/2020,19:19:54.527,9.0 ± 0.1,8.1 ± 0.0,-47.7,-26.6,0.067,2,103
|
| 107 |
+
230,20200625_182818,1.84,33,263.5,25/06/2020,18:28:18.340,7.9 ± 0.1,6.7 ± 0.0,-46.5,10.8,0.132,2,102
|
| 108 |
+
232,20200626_195231,2.38,24.7,263.1,26/06/2020,19:52:31.570,9.7 ± 0.1,8.2 ± 0.0,-24.9,12.7,0.033,2,97
|
| 109 |
+
233,20200626_195231,2.38,24.7,263.1,26/06/2020,19:52:31.570,9.7 ± 0.1,8.2 ± 0.0,-24.9,12.7,0.066,2,97
|
| 110 |
+
236,20200726_190821,2.26,26.2,238.2,26/07/2020,19:08:21.287,10.2 ± 0.1,9.1 ± 0.1,-28.6,14,0.033,2,90
|
| 111 |
+
237,20200726_191025_0,-1,-1,-1,26/07/2020,19:10:25.427,9.2 ± 0.0,7.8 ± 0.0,-35.2,11.3,0.067,2,97
|
| 112 |
+
238,20200813_005710,2.02,29.6,271.7,13/08/2020,00:57:10.703,10.2 ± 0.2,9.0 ± 0.1,40.9,2.3,0.033,2,100
|
| 113 |
+
239,20200814_005421,2.81,20.7,281.7,14/08/2020,00:54:21.133,9.3 ± 0.1,8.5 ± 0.1,35.7,-12,0.033,2,95
|
| 114 |
+
240,20200814_011536,2.45,23.9,279.5,14/08/2020,01:15:36.277,10.0 ± 0.2,9.5 ± 0.1,20.6,18,0.066,2,95
|
| 115 |
+
241,20201209_030958,1.53,40.6,235.5,09/12/2020,03:09:58.097,9.8 ± 0.2,9.3 ± 0.1,78.1,0.4,0.033,2,93
|
| 116 |
+
242,20210317_174652,1.93,31.2,263,17/03/2021,17:46:52.983,9.5 ± 0.1,8.0 ± 0.0,-12.3,-25.8,0.099,2,96
|
| 117 |
+
244,20210317_180718,2.21,26.9,266.6,17/03/2021,18:07:18.603,10.5 ± 0.2,9.2 ± 0.1,-28.7,28.1,0.033,2,88
|
| 118 |
+
245,20210418_191358,1.45,43.7,270.1,18/04/2021,19:13:58.703,9.4 ± 0.1,7.9 ± 0.0,-55.6,17.2,0.099,2,108
|
| 119 |
+
246,20210418_201924,1.98,30.4,279.6,18/04/2021,20:19:24.000,9.7 ± 0.2,8.6 ± 0.1,-35.6,-19.6,0.033,2,100
|
| 120 |
+
247,20210515_183840,2.29,25.8,282.8,15/05/2021,18:38:40.847,10.1 ± 0.2,9.4 ± 0.1,-15.7,0.3,0.033,2,85
|
| 121 |
+
248,20210518_200821,1.67,36.7,267.8,18/05/2021,20:08:21.743,9.9 ± 0.2,8.7 ± 0.1,-57.2,-6,0.066,2,94
|
| 122 |
+
249,20210615_190612,1.91,31.5,267.9,15/06/2021,19:06:12.913,10.0 ± 0.1,9.2 ± 0.1,-44.5,-3.6,0.066,2,95
|
| 123 |
+
251,20210615_192318,2.16,27.5,271,15/06/2021,19:23:18.620,10.9 ± 0.3,10.2 ± 0.2,-43.7,2.4,0.066,2,95
|
| 124 |
+
252,20210615_193852,2.34,25.3,272.6,15/06/2021,19:38:52.237,8.2 ± 0.1,6.7 ± 0.0,-78.8,22.5,0.165,2,110
|
| 125 |
+
255,20210706_021111,3.05,18.9,279.5,06/07/2021,02:11:11.360,10.8 ± 0.1,10.3 ± 0.2,82.1,-11.3,0.033,2,87
|
| 126 |
+
256,20210715_192229,2.34,25.2,252.6,15/07/2021,19:22:29.410,10.2 ± 0.3,8.8 ± 0.1,-43.4,13.9,0.033,2,94
|
| 127 |
+
257,20210716_184932,1.78,34.2,232.2,16/07/2021,18:49:32.113,10.0 ± 0.3,9.2 ± 0.1,-34.9,3.1,0.066,2,93
|
| 128 |
+
259,20210802_012606,1.78,34.1,266.7,02/08/2021,01:26:06.110,10.4 ± 0.3,9.9 ± 0.1,80.2,4.4,0.066,2,100
|
| 129 |
+
260,20210802_013428,1.71,35.7,265.4,02/08/2021,01:34:28.147,8.8 ± 0.2,8.3 ± 0.1,30.3,4.8,0.066,2,101
|
| 130 |
+
261,20210802_024436,1.34,48,253.9,02/08/2021,02:44:36.307,10.1 ± 0.3,9.7 ± 0.2,52.8,-4.8,0.066,2,101
|
| 131 |
+
262,20210802_025102,1.29,50.5,251,02/08/2021,02:51:02.647,8.9 ± 0.2,7.7 ± 0.0,16.3,28.4,0.099,2,110
|
| 132 |
+
263,20211003_031417,2.32,25.3,272.1,03/10/2021,03:14:17.080,10.2 ± 0.2,9.4 ± 0.1,33.9,-34.7,0.033,2,86
|
| 133 |
+
264,20211011_165700,2.84,20.5,206,11/10/2021,16:57:00.373,8.7 ± 0.1,7.7 ± 0.0,-71.8,-21.2,0.165,2,105
|
| 134 |
+
265,20211012_163115,2.37,24.8,185.5,12/10/2021,16:31:15.617,9.3 ± 0.2,8.3 ± 0.1,-32.5,-15.1,0.066,2,90
|
| 135 |
+
266,20211012_174217,2.69,21.7,201.6,12/10/2021,17:42:17.600,9.8 ± 0.2,8.8 ± 0.1,-77.3,11.2,0.066,2,91
|
| 136 |
+
268,20211208_161510,2.17,27.4,201.9,08/12/2021,16:15:10.807,8.6 ± 0.1,7.6 ± 0.0,-29.5,3.5,0.066,2,94
|
| 137 |
+
269,20211208_163421,2.27,26.1,206.3,08/12/2021,16:34:21.520,10.2 ± 0.3,8.2 ± 0.1,-56,14.1,0.033,2,94
|
| 138 |
+
271,20220405_173055,1.5,41.9,267.2,05/04/2022,17:30:55.890,8.9 ± 0.2,7.5 ± 0.1,-15.4,4.7,0.099,2,96
|
| 139 |
+
272,20220405_175437,1.67,36.9,271.2,05/04/2022,17:54:37.533,9.3 ± 0.1,8.0 ± 0.1,-43.2,-7.8,0.033,2,87
|
| 140 |
+
275,20220603_182131,1.86,32.5,277.3,03/06/2022,18:21:31.377,8.0 ± 0.1,6.6 ± 0.0,-28.8,-4,0.132,2,105
|
| 141 |
+
279,20220604_182050,1.55,40.3,267.5,04/06/2022,18:20:50.613,9.4 ± 0.3,8.3 ± 0.1,-25,-7.2,0.066,2,94
|
| 142 |
+
280,20220604_182246,1.55,40.3,267.5,04/06/2022,18:22:46.920,10.2 ± 0.4,9.2 ± 0.1,-19.9,16.2,0.033,2,94
|
| 143 |
+
281,20220604_194416,2.32,25.5,278.3,04/06/2022,19:44:16.807,10.1 ± 0.3,9.5 ± 0.1,-59.7,-9.4,0.033,2,92
|
| 144 |
+
282,20220623_014607_0,-1,-1,-1,23/06/2022,01:46:07.603,8.7 ± 0.1,7.2 ± 0.0,84.4,5.3,0.067,2,100
|
| 145 |
+
284,20220722_021327,1.52,41.1,257.5,22/07/2022,02:13:27.207,10.0 ± 0.2,8.7 ± 0.1,57.1,-4.6,0.066,2,98
|
| 146 |
+
285,20220722_024811,1.41,45.2,253.4,22/07/2022,02:48:11.223,10.3 ± 0.4,9.3 ± 0.1,51.1,10.7,0.066,2,98
|
| 147 |
+
286,20220722_024951,1.41,45.2,253.4,22/07/2022,02:49:51.367,9.4 �� 0.3,7.5 ± 0.1,12.7,13.1,0.132,2,106
|
| 148 |
+
288,20220801_182723,3.28,17.7,262.7,01/08/2022,18:27:23.337,9.9 ± 0.3,8.7 ± 0.1,-45.3,6.9,0.033,2,82
|
| 149 |
+
289,20220801_182818,3.28,17.7,262.7,01/08/2022,18:28:18.507,9.4 ± 0.2,7.6 ± 0.1,-67.7,-4.3,0.099,2,82
|
| 150 |
+
292,20220803_182342,2.27,26.1,237.4,03/08/2022,18:23:42.637,9.8 ± 0.1,8.4 ± 0.1,-73.1,28.5,0.066,2,98
|
| 151 |
+
294,20220804_184706,2.39,24.6,229.1,04/08/2022,18:47:06.667,9.3 ± 0.2,7.6 ± 0.1,-40.7,-21,0.066,2,92
|
| 152 |
+
299,20220901_183336,3.8,15.1,234.3,01/09/2022,18:33:36.493,10.7 ± 0.3,8.0 ± 0.1,-62,17.9,0.067,2,98
|
| 153 |
+
303,20221019_030344,1.3,50.4,259,19/10/2022,03:03:44.140,8.5 ± 0.1,8.3 ± 0.0,61.6,-3.3,0.099,2,101
|
| 154 |
+
304,20221020_011258,2.84,20.5,278,20/10/2022,01:12:58.150,8.6 ± 0.1,7.4 ± 0.0,21.4,-14.2,0.429,2,97
|
| 155 |
+
307,20221020_025637,1.6,38.6,263.5,20/10/2022,02:56:37.877,9.1 ± 0.1,8.6 ± 0.0,87.3,-7.2,0.033,2,97
|
| 156 |
+
310,20221021_025511,2.07,28.7,265,21/10/2022,02:55:11.697,10.2 ± 0.2,9.6 ± 0.1,68,-2.9,0.066,2,91
|
| 157 |
+
311,20221022_030756,2.95,19.6,265.1,22/10/2022,03:07:56.783,10.9 ± 0.2,10.3 ± 0.1,59.6,-26.1,0.033,2,85
|
| 158 |
+
312,20221022_032517,2.95,19.6,265.1,22/10/2022,03:25:17.830,10.4 ± 0.1,9.6 ± 0.1,21,-21.8,0.033,2,86
|
| 159 |
+
313,20221022_033955,2.45,23.9,261.4,22/10/2022,03:39:55.153,10.7 ± 0.1,9.9 ± 0.0,22.9,-26.4,0.033,2,86
|
| 160 |
+
314,20221022_035535,2.16,27.5,258.1,22/10/2022,03:55:35.517,9.5 ± 0.1,8.7 ± 0.1,49.2,-25,0.066,2,86
|
| 161 |
+
315,20221022_035650,2.16,27.5,258.1,22/10/2022,03:56:50.323,10.3 ± 0.2,9.5 ± 0.1,14.8,-4.7,0.066,2,86
|
| 162 |
+
316,20221029_170358,3.77,15.2,213.6,29/10/2022,17:03:58.477,9.3 ± 0.1,7.7 ± 0.0,-65.2,-7.7,0.099,2,97
|
| 163 |
+
318,20221030_164105,2.74,21.3,199.4,30/10/2022,16:41:05.647,10.1 ± 0.3,9.3 ± 0.1,-25.9,-16.9,0.033,2,96
|
| 164 |
+
320,20221030_164727,2.86,20.3,202.5,30/10/2022,16:47:27.613,9.7 ± 0.2,8.6 ± 0.1,-75.6,-1.3,0.066,2,97
|
| 165 |
+
321,20221030_165454,2.98,19.5,204.9,30/10/2022,16:54:54.930,9.7 ± 0.2,8.6 ± 0.1,-59,-27.6,0.066,2,96
|
| 166 |
+
324,20221030_173416_0,-1,-1,-1,30/10/2022,17:34:16.133,8.6 ± 0.1,8.0 ± 0.1,-45.2,-18.9,0.133,2,121
|
| 167 |
+
331,20221031_191717,3.72,15.4,218.5,31/10/2022,19:17:17.423,8.6 ± 0.2,7.5 ± 0.1,-35.2,7.1,0.066,2,94
|
| 168 |
+
332,20221119_023927,2.16,27.5,253.5,19/11/2022,02:39:27.787,8.8 ± 0.1,7.9 ± 0.1,21.6,-13.6,0.066,2,95
|
| 169 |
+
337,20221218_033748_0,-1,-1,-1,18/12/2022,03:37:48.470,9.1 ± 0.1,7.7 ± 0.0,51.7,-2.2,0.067,2,106
|
| 170 |
+
339,20221226_154616_0,-1,-1,-1,26/12/2022,15:46:16.570,7.8 ± 0.1,6.4 ± 0.1,-53.2,-15.9,0.198,2,118
|
| 171 |
+
341,20221226_164814,3.17,18.3,224.3,26/12/2022,16:48:14.320,10.3 ± 0.2,9.7 ± 0.1,-66.5,0.2,0.066,2,87
|
| 172 |
+
342,20221227_161850,1.84,32.8,207.5,27/12/2022,16:18:50.350,9.6 ± 0.2,9.1 ± 0.1,-8,-11.4,0.033,2,95
|
| 173 |
+
344,20221227_174737,2.48,23.7,226.7,27/12/2022,17:47:37.390,9.3 ± 0.1,8.0 ± 0.1,-11.2,-7.2,0.066,2,94
|
| 174 |
+
346,20221227_181132,2.79,20.9,230.8,27/12/2022,18:11:32.400,9.7 ± 0.0,8.5 ± 0.1,-6.6,-29.6,0.066,2,95
|
| 175 |
+
347,20230116_041121,1.75,34.8,199.5,16/01/2023,04:11:21.223,10.1 ± 0.3,9.0 ± 0.1,51.7,-36.9,0.066,2,93
|
| 176 |
+
348,20230222_174940,3.8,15.1,258,22/02/2023,17:49:40.667,10.4 ± 0.2,10.2 ± 0.1,-32,-41,0.033,2,77
|
| 177 |
+
349,20230222_175204_0,-1,-1,-1,22/02/2023,17:52:04.313,10.0 ± 0.1,8.7 ± 0.0,-16.7,-33.4,0.099,2,83
|
| 178 |
+
352,20230326_202528,2.89,20.1,286,26/03/2023,20:25:28.547,9.9 ± 0.2,8.8 ± 0.1,-72.5,18.4,0.066,2,96
|
| 179 |
+
355,20230423_180439,1.96,30.6,280.7,23/04/2023,18:04:39.827,10.6 ± 0.2,9.6 ± 0.1,-20.5,20,0.066,2,85
|
| 180 |
+
356,20230424_175830,1.38,46.3,271.8,24/04/2023,17:58:30.793,10.5 ± 0.3,9.1 ± 0.1,-26.5,-28.9,0.033,2,91
|
| 181 |
+
359,20230424_200242,2.76,21.2,288.9,24/04/2023,20:02:42.333,9.6 ± 0.2,8.3 ± 0.1,-32.3,-26.4,0.066,2,90
|
| 182 |
+
360,20230523_200614_0,-1,-1,-1,23/05/2023,20:06:14.793,8.9 ± 0.1,8.2 ± 0.0,-12.9,-12,0.067,2,92
|
| 183 |
+
361,20230524_201110_0,-1,-1,-1,24/05/2023,20:11:10.027,8.3 ± 0.1,6.4 ± 0.0,-67.3,23.3,0.33,2,130
|
| 184 |
+
362,20230524_210320_0,-1,-1,-1,24/05/2023,21:03:20.167,9.1 ± 0.1,7.5 ± 0.0,-36.1,10.9,0.132,2,104
|
| 185 |
+
363,20230525_203427,2.21,26.9,276.3,25/05/2023,20:34:28.000,7.5 ± 0.0,6.3 ± 0.0,-82.9,-5.9,0.231,2,122
|
| 186 |
+
364,20230526_181743,1.2,56.2,240.6,26/05/2023,18:17:43.623,9.8 ± 0.4,8.3 ± 0.1,-24.5,0.2,0.066,2,90
|
| 187 |
+
365,20230621_184744,2.68,21.9,281.5,21/06/2023,18:47:44.160,9.2 ± 0.1,9.0 ± 0.0,-45.4,20.4,0.033,2,83
|
| 188 |
+
366,20230622_195808,3.8,15.1,281.2,22/06/2023,19:58:08.963,11.0 ± 0.3,10.2 ± 0.1,-79,-3,0.033,2,86
|
| 189 |
+
367,20230622_200320,3.8,15.1,281.2,22/06/2023,20:03:20.187,10.2 ± 0.1,8.5 ± 0.0,-79.2,45.7,0.1,2,100
|
| 190 |
+
369,20230810_015323,1.55,40,271.4,10/08/2023,01:53:23.823,9.7 ± 0.2,8.5 ± 0.0,69.3,17.2,0.066,2,99
|
| 191 |
+
370,20230811_014353,2.05,29.1,282.4,11/08/2023,01:43:53.827,11.3 ± 0.4,9.9 ± 0.1,71.6,37.3,0.066,2,93
|
| 192 |
+
372,20230813_022901,2.95,19.6,289.7,13/08/2023,02:29:01.917,11.7 ± 0.6,10.1 ± 0.1,19.6,22.3,0.033,2,80
|
| 193 |
+
373,20230813_023329,2.95,19.6,289.7,13/08/2023,02:33:29.607,10.6 ± 0.2,10.0 ± 0.1,83.8,16.8,0.033,2,79
|
| 194 |
+
375,20230813_030554,2.24,26.4,285.1,13/08/2023,03:05:54.033,9.3 ± 0.1,8.8 ± 0.1,49.8,23.5,0.066,2,86
|
| 195 |
+
376,20250817_002847,1.93,31.1,279.9,17/08/2025,00:28:47.853,10.3 ± 0.3,9.2 ± 0.1,54.6,-7.9,0.066,2,102
|
| 196 |
+
384,20250914_235616,2.31,25.5,286.9,14/09/2025,23:56:16.150,8.3 ± 0.1,7.5 ± 0.0,72,6,0.165,2,112
|
| 197 |
+
390,20251028_183201,3.47,16.6,215.9,28/10/2025,18:32:01.270,7.6 ± 0.1,6.3 ± 0.0,-18,-18,0.066,2,106
|
| 198 |
+
392,20251113_022124,1.5,41.6,249.7,13/11/2025,02:21:24.303,10.9 ± 0.5,8.8 ± 0.1,70,9,0.066,2,106
|
| 199 |
+
393,20251113_031006,1.34,48.2,240.7,13/11/2025,03:10:06.033,10.0 ± 0.2,8.5 ± 0.1,44,-5,0.099,2,115
|
| 200 |
+
394,20251116_034915,2.5,23.4,241.1,16/11/2025,03:49:15.987,11.2 ± 0.3,10.0 ± 0.1,42.5,-2.5,0.033,2,89
|
| 201 |
+
396,20251116_042715,2.03,29.3,233.5,16/11/2025,04:27:15.940,10.7 ± 0.5,9.5 ± 0.2,50.8,19.5,0.066,2,90
|
| 202 |
+
401,20251214_023234_0,-1,-1,-1,14/12/2025,02:32:34.360,9.6 ± 0.2,8.1 ± 0.1,42,-14,0.099,2,106
|
| 203 |
+
402,20251214_024518_0,-1,-1,-1,14/12/2025,02:45:18.590,9.2 ± 0.1,8.2 ± 0.0,63,-24,0.067,2,107
|
| 204 |
+
403,20251214_025205,2.53,23.1,234.9,14/12/2025,02:52:05.253,10.1 ± 0.3,8.9 ± 0.1,77,12,0.033,2,98
|
| 205 |
+
405,20251215_035133,2.59,22.6,226.1,15/12/2025,03:51:33.930,10.7 ± 0.3,8.8 ± 0.1,12.5,-22,0.099,2,101
|
| 206 |
+
407,20251215_043342_0,-1,-1,-1,15/12/2025,04:33:42.043,9.2 ± 0.1,8.0 ± 0.0,58.2,-19.1,0.099,2,101
|
| 207 |
+
409,20260113_040955,2.58,22.6,209.9,13/01/2026,04:09:55.147,9.2 ± 0.1,8.4 ± 0.0,48.4,-42.8,0.066,2,98
|
| 208 |
+
411,20260221_173142,1.63,37.8,256.4,21/02/2026,17:31:42.570,9.0 ± 0.1,8.3 ± 0.1,-1.2,-33.8,0.066,2,93
|
| 209 |
+
412,20260223_175819,1.19,57.4,254,23/02/2026,17:58:19.747,9.6 ± 0.8,7.2 ± 0.0,-17.5,15.4,0.099,2,120
|
| 210 |
+
415,20260323_190739,1.78,34.1,278.4,23/03/2026,19:07:39.707,10.4 ± 0.3,9.2 ± 0.1,-83.7,-9.9,0.033,2,97
|
| 211 |
+
417,20260420_180717,1.85,32.8,280.9,20/04/2026,18:07:17.483,9.6 ± 0.2,8.8 ± 0.0,-70.8,-22.2,0.099,2,95
|
index.html
CHANGED
|
@@ -388,6 +388,6 @@
|
|
| 388 |
}
|
| 389 |
}
|
| 390 |
</script>
|
| 391 |
-
<script type="module" src="app.js"></script>
|
| 392 |
</body>
|
| 393 |
</html>
|
|
|
|
| 388 |
}
|
| 389 |
}
|
| 390 |
</script>
|
| 391 |
+
<script type="module" src="app.js?v=20260527"></script>
|
| 392 |
</body>
|
| 393 |
</html>
|