1648 lines
29 KiB
JavaScript
1648 lines
29 KiB
JavaScript
async function createPDFV1(_alarmData) {
|
|
const doc = new jsPDF();
|
|
//Header
|
|
doc.addImage(
|
|
Logo,
|
|
"PNG",
|
|
150,
|
|
5,
|
|
44.35, 15.25
|
|
);
|
|
|
|
doc.setFontSize(20);
|
|
doc.text("Alarmdepesche", 10, 15);
|
|
|
|
//Body
|
|
//labels
|
|
doc.setDrawColor(0);
|
|
doc.setFillColor(87, 85, 81);
|
|
doc.rect(9, 37, 40, 8, 'FD');
|
|
|
|
doc.setFontSize(10);
|
|
doc.setTextColor(255, 255, 255);
|
|
doc.text(
|
|
"Einsatznummer",
|
|
10,
|
|
40
|
|
);
|
|
doc.setFontSize(12);
|
|
doc.text(_alarmData.foreign_id,
|
|
47,
|
|
44, { align: "right" }
|
|
)
|
|
|
|
|
|
doc.setDrawColor(0);
|
|
doc.setFillColor(87, 85, 81);
|
|
doc.rect(59, 37, 40, 8, 'FD');
|
|
|
|
doc.setFontSize(10);
|
|
doc.setTextColor(255, 255, 255);
|
|
doc.text(
|
|
"Alarmzeitpunkt",
|
|
60,
|
|
40
|
|
);
|
|
doc.setFontSize(12);
|
|
doc.text(new Date(_alarmData.ts_create * 1000).toLocaleString().slice(0, -3),
|
|
97,
|
|
44, { align: "right" }
|
|
)
|
|
|
|
doc.setDrawColor(0);
|
|
doc.setFillColor(87, 85, 81);
|
|
doc.rect(9, 57, 90, 8, 'FD');
|
|
|
|
doc.setFontSize(10);
|
|
doc.setTextColor(255, 255, 255);
|
|
doc.text(
|
|
"Stichwort",
|
|
10,
|
|
60
|
|
);
|
|
doc.setFontSize(12);
|
|
doc.text(_alarmData.title,
|
|
97,
|
|
64, { align: "right" }
|
|
)
|
|
|
|
doc.setDrawColor(0);
|
|
doc.setFillColor(87, 85, 81);
|
|
doc.rect(9, 77, 90, 24, 'FD');
|
|
|
|
doc.setFontSize(10);
|
|
doc.setTextColor(255, 255, 255);
|
|
doc.text(
|
|
"Informationen",
|
|
10,
|
|
80
|
|
);
|
|
doc.setFontSize(12);
|
|
doc.text(_alarmData.text.split("RIC")[0].match(/.{1,41}/g).join("\n"),
|
|
10,
|
|
84,
|
|
)
|
|
|
|
doc.setDrawColor(0);
|
|
doc.setFillColor(87, 85, 81);
|
|
doc.rect(9, 107, 90, 8, 'FD');
|
|
|
|
doc.setFontSize(10);
|
|
doc.setTextColor(255, 255, 255);
|
|
doc.text(
|
|
"Adresse",
|
|
10,
|
|
110
|
|
);
|
|
doc.setFontSize(12);
|
|
doc.text(_alarmData.address,
|
|
97,
|
|
114, { align: "right" }
|
|
)
|
|
|
|
doc.setDrawColor(0);
|
|
doc.setFillColor(87, 85, 81);
|
|
doc.rect(129, 37, 60, 8, 'FD');
|
|
|
|
doc.setFontSize(16);
|
|
doc.setTextColor(255, 255, 255);
|
|
doc.text(
|
|
"Fahrzeuge",
|
|
145,
|
|
43
|
|
);
|
|
|
|
doc.setFontSize(12);
|
|
doc.setTextColor(0, 0, 0);
|
|
for (let i = 0; i < _alarmData.vehicle.length; i++) {
|
|
doc.text(findVehicleNameByID(_alarmData.vehicle[i]), 130, 52 + (i * 7));
|
|
}
|
|
|
|
await puppeteerGetImage(_alarmData.lat, _alarmData.lng)
|
|
|
|
const mapImg = fs.readFileSync("map.png", "base64")
|
|
|
|
doc.addImage(mapImg, 10, 150);
|
|
|
|
doc.save(cacheFolder + _alarmData.foreign_id + ".pdf");
|
|
};
|
|
|
|
|
|
function findVehicleNameByID(vehicleID) {
|
|
const vehicle = vehicleData.find(vehicle => vehicle.id === vehicleID)
|
|
return `${vehicle.name} (${vehicle.shortname})`
|
|
}
|
|
|
|
const testData = {
|
|
"id": 9846392,
|
|
"author_id": 462243,
|
|
"cluster_id": 21359,
|
|
"alarmcode_id": 0,
|
|
"message_channel_id": 0,
|
|
"foreign_id": "OF230054335",
|
|
"title": "V_ Einsatz",
|
|
"text": "Schuppen brennt an Haus, davor WohnmobilSchuppen brennt an Haus, davor WohnmobilRIC: 01A / ALARMIERUNGSZEIT: 16:45 29.03.23RIC: 28A / ALARMIERUNGSZEIT: 16:45 29.03.23",
|
|
"report": "",
|
|
"address": "Kampstrasse 12, Aurich-Egels",
|
|
"lat": 53.4637018,
|
|
"lng": 7.5194815,
|
|
"priority": true,
|
|
"date": 1680101127,
|
|
"new": false,
|
|
"editable": true,
|
|
"answerable": false,
|
|
"notification_type": 1,
|
|
"vehicle": [
|
|
55834,
|
|
56070,
|
|
56071,
|
|
56072,
|
|
56073,
|
|
56078,
|
|
56079
|
|
],
|
|
"group": [
|
|
42400,
|
|
49252,
|
|
106027,
|
|
106122,
|
|
107348
|
|
],
|
|
"cluster": [
|
|
21615,
|
|
21705,
|
|
21709,
|
|
21913,
|
|
22120
|
|
],
|
|
"user_cluster_relation": [
|
|
491625
|
|
],
|
|
"hidden": false,
|
|
"deleted": false,
|
|
"message_channel": true,
|
|
"custom_answers": false,
|
|
"attachment_count": 0,
|
|
"closed": true,
|
|
"duration": "48 Stunden, 39 Minuten",
|
|
"ts_response": 1680102927,
|
|
"response_time": 1800,
|
|
"ucr_addressed": [],
|
|
"ucr_answered": {},
|
|
"ucr_answeredcount": {},
|
|
"ucr_read": [],
|
|
"ucr_self_addressed": false,
|
|
"count_recipients": 0,
|
|
"count_read": 0,
|
|
"private_mode": false,
|
|
"ts_publish": 0,
|
|
"ts_create": 1680101127,
|
|
"ts_update": 1680348494,
|
|
"ts_close": 1680276240,
|
|
"notification_filter_vehicle": false,
|
|
"notification_filter_status": false,
|
|
"notification_filter_shift_plan": 0,
|
|
"notification_filter_access": false,
|
|
"notification_filter_status_access": false,
|
|
"send_mail": false,
|
|
"send_push": false,
|
|
"send_sms": false,
|
|
"send_call": false,
|
|
"send_pager": false,
|
|
"ucr_self_status_id": 0,
|
|
"ucr_self_note": ""
|
|
}
|
|
|
|
const vehicleData = [
|
|
{
|
|
"id": 56335,
|
|
"fullname": "Kommandowagen",
|
|
"shortname": "KDOW",
|
|
"name": "10-01-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680558830,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221693",
|
|
"number": "AUR-F1010"
|
|
},
|
|
{
|
|
"id": 56343,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-3",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681152098,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221697",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56359,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1674129779,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62803,
|
|
"fullname": "Stadtbrandmeister",
|
|
"shortname": "StadtBM",
|
|
"name": "10-10-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221693, 5228338",
|
|
"number": "AUR-F-1010"
|
|
},
|
|
{
|
|
"id": 56352,
|
|
"fullname": "Einsatzleitwagen 1",
|
|
"shortname": "ELW1",
|
|
"name": "10-11-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680783099,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228333",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57643,
|
|
"fullname": "Einsatzleitfahrzeug2",
|
|
"shortname": "ELW 2",
|
|
"name": "10-12-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 45735,
|
|
"fullname": "Löschgruppenfahrzeug 10/10",
|
|
"shortname": "LF10/10",
|
|
"name": "10-45-10",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681246872,
|
|
"crew": [
|
|
{
|
|
"id": 384427
|
|
},
|
|
{
|
|
"id": 397106
|
|
}
|
|
],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "NIFWAUR10-45-LF10/6 10",
|
|
"issi": "5228302",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57025,
|
|
"fullname": "Löschgruppenfahrzeug 10/10",
|
|
"shortname": "LF10/10",
|
|
"name": "10-45-7",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57030,
|
|
"fullname": "Löschgruppenfahrzeug 10",
|
|
"shortname": "LF10",
|
|
"name": "10-45-8",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1671739045,
|
|
"crew": [],
|
|
"lat": 53.4796648,
|
|
"lng": 7.4519732,
|
|
"opta": "",
|
|
"issi": "5228303",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 22877,
|
|
"fullname": "Löschgruppenfahrzeug 10/10",
|
|
"shortname": "LF10/10",
|
|
"name": "10-45-9",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680282846,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228310",
|
|
"number": "AUR F 1845"
|
|
},
|
|
{
|
|
"id": 62825,
|
|
"fullname": "Kommandowagen",
|
|
"shortname": "KDOW",
|
|
"name": "10-02-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56078,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680695921,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-03-1 OrtsBM",
|
|
"issi": "5221695",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56344,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-3",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221874",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56360,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1670446678,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 45741,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-10",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681246779,
|
|
"crew": [],
|
|
"lat": 53.4527805,
|
|
"lng": 7.5633266,
|
|
"opta": "",
|
|
"issi": "5228321",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56355,
|
|
"fullname": "Tanklöschfahrzeug 5000",
|
|
"shortname": "(G)TLF",
|
|
"name": "10-26-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681293768,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228313",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57026,
|
|
"fullname": "Tanklöschfahrzeug 5000",
|
|
"shortname": "(G)TLF",
|
|
"name": "10-26-7",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1676643024,
|
|
"crew": [],
|
|
"lat": 53.5148688,
|
|
"lng": 7.471648,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 22878,
|
|
"fullname": "Gerätewagen Großlüfter",
|
|
"shortname": "GW-Großlüfter",
|
|
"name": "10-59-9",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681206786,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5226375",
|
|
"number": "AUR F 1859"
|
|
},
|
|
{
|
|
"id": 57031,
|
|
"fullname": "Gerätewagen-Logistik 2",
|
|
"shortname": "GWL-2",
|
|
"name": "10-68-8",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1670442352,
|
|
"crew": [],
|
|
"lat": 53.4796715,
|
|
"lng": 7.4519081,
|
|
"opta": "",
|
|
"issi": "5228296",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 58791,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680695921,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221695",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 46359,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-10",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1673709914,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221704",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56079,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680120024,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-04-1 stv.OrtsBM",
|
|
"issi": "5221872",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56361,
|
|
"fullname": "Einsatzleitfahrzeug2",
|
|
"shortname": "ELW 2",
|
|
"name": "10-12-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57027,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-7",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57032,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-8",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228323",
|
|
"number": "5228323"
|
|
},
|
|
{
|
|
"id": 56341,
|
|
"fullname": "Tanklöschfahrzeug 16/25",
|
|
"shortname": "TLF 16/25",
|
|
"name": "10-23-3",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228316",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56356,
|
|
"fullname": "Löschgruppenfahrzeug 20",
|
|
"shortname": "LF20",
|
|
"name": "10-47-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681221604,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228301",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57028,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-7",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1671559317,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62810,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680120024,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221872",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 46360,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-10",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680543549,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221881",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56070,
|
|
"fullname": "Einsatzleitwagen 1",
|
|
"shortname": "ELW1",
|
|
"name": "10-11-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681233663,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-11-1 ELW1",
|
|
"issi": "5228337",
|
|
"number": "AUR-F-1060"
|
|
},
|
|
{
|
|
"id": 57033,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-28",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228317",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56362,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56340,
|
|
"fullname": "Löschgruppenfahrzeug 10/6",
|
|
"shortname": "LF10",
|
|
"name": "10-45-3",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1673438875,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228308",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56357,
|
|
"fullname": "Rüstwagen 2",
|
|
"shortname": "RW2",
|
|
"name": "10-52-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680536956,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228523",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 58792,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-2",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57034,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-8",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221702",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57029,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-7",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1670963048,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56363,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-24",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56342,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-3",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681240560,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228372",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56071,
|
|
"fullname": "Hilfeleistungslöschgruppenfahrzeug 20",
|
|
"shortname": "HLF20",
|
|
"name": "10-48-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681248518,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-48-1 HLF20_20",
|
|
"issi": "5228300",
|
|
"number": "AUR-F-1020"
|
|
},
|
|
{
|
|
"id": 56358,
|
|
"fullname": "Gerätewagen-Gefahrgut",
|
|
"shortname": "GWG",
|
|
"name": "10-73-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680952350,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228522",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62811,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-2",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57035,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-8",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221879",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56353,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680536955,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228524",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56364,
|
|
"fullname": "Tanklöschfahrzeug 16/25",
|
|
"shortname": "TLF 16/25",
|
|
"name": "10-24-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 55834,
|
|
"fullname": "Drehleiter mit Korb 23/12",
|
|
"shortname": "DLK",
|
|
"name": "10-30-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681568760,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-30-1 DL_M_32_L_AS",
|
|
"issi": "5228311",
|
|
"number": "AUR-F-1030"
|
|
},
|
|
{
|
|
"id": 58793,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-3",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1673682111,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56354,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-26",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680634931,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228318",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56072,
|
|
"fullname": "Tanklöschfahrzeug 5000",
|
|
"shortname": "(G)TLF",
|
|
"name": "10-26-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681381161,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-26-1 TLF20_40SL",
|
|
"issi": "5228314",
|
|
"number": "AUR-F-1010"
|
|
},
|
|
{
|
|
"id": 56365,
|
|
"fullname": "Löschgruppenfahrzeug 10/10",
|
|
"shortname": "LF10/10",
|
|
"name": "10-45-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62812,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-3",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56073,
|
|
"fullname": "Löschgruppenfahrzeug 10/6",
|
|
"shortname": "LF10",
|
|
"name": "10-45-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680101797,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-45-1 LF10_6",
|
|
"issi": "5228309",
|
|
"number": "AUR-AU-106"
|
|
},
|
|
{
|
|
"id": 57641,
|
|
"fullname": "Gerätewagen-Logistik 1",
|
|
"shortname": "GWL1",
|
|
"name": "10-64-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1670565763,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5224755",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56366,
|
|
"fullname": "Gerätewagen-Logistik 2",
|
|
"shortname": "GWL-2",
|
|
"name": "10-68-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 58794,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56350,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1670706473,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221700",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56074,
|
|
"fullname": "Gerätewagen-Logistik 1",
|
|
"shortname": "GWL1",
|
|
"name": "10-64-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1676642976,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-64-1 GW_L1",
|
|
"issi": "5228299",
|
|
"number": "ÂUR-F1041"
|
|
},
|
|
{
|
|
"id": 62813,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56351,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680783183,
|
|
"crew": [],
|
|
"lat": 53.4918437,
|
|
"lng": 7.4969007,
|
|
"opta": "",
|
|
"issi": "5221877",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56075,
|
|
"fullname": "Gerätewagen-Logistik 2",
|
|
"shortname": "GWL-2",
|
|
"name": "10-68-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680614657,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-68-1 GW_L2",
|
|
"issi": "5228298",
|
|
"number": "AUR-F-1042"
|
|
},
|
|
{
|
|
"id": 58795,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-5",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1677946872,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56076,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-17-1 MTW",
|
|
"issi": "5228329",
|
|
"number": "AUR-F-1046"
|
|
},
|
|
{
|
|
"id": 62814,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-5",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 56077,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-21",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "Flo.AUR 10-17-21 MTW",
|
|
"issi": "",
|
|
"number": "AUR-F1721"
|
|
},
|
|
{
|
|
"id": 58796,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221700",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62815,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-6",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680783183,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221877",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 58797,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-7",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62816,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-7",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 58798,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-8",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62817,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-8",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 58799,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-9",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62818,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-9",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 58800,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-10",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 62819,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-10",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57019,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-2",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57023,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-5",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 26396,
|
|
"fullname": "Ortsbrandmeister",
|
|
"shortname": "OrtsBM",
|
|
"name": "10-03-9",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1603388290,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221703",
|
|
"number": "AUR-GG 563"
|
|
},
|
|
{
|
|
"id": 57020,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-2",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57024,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-5",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 28024,
|
|
"fullname": "stellv. Ortsbrandmeister",
|
|
"shortname": "stv.OrtsBM",
|
|
"name": "10-04-9",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680105699,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221880",
|
|
"number": "AUR-MR 255"
|
|
},
|
|
{
|
|
"id": 63554,
|
|
"fullname": "Stadtbrandmeister",
|
|
"shortname": "StadtBM",
|
|
"name": "10-10-1",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5221693, 5228338",
|
|
"number": "AUR-F-1010"
|
|
},
|
|
{
|
|
"id": 57645,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-24",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57022,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-5",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1681144832,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 26598,
|
|
"fullname": "Mannschaftstransportfahrzeug",
|
|
"shortname": "MTF",
|
|
"name": "10-17-9",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1680282967,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "5228322",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57018,
|
|
"fullname": "Löschgruppenfahrzeug 8/6",
|
|
"shortname": "LF 8/6",
|
|
"name": "10-45-2",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 26599,
|
|
"fullname": "Löschgruppenfahrzeug 8/6",
|
|
"shortname": "LF 8/6",
|
|
"name": "10-45-2 (Ausbildung)",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 1668157003,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57021,
|
|
"fullname": "Löschgruppenfahrzeug 10/10",
|
|
"shortname": "LF10/10",
|
|
"name": "10-45-5",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
},
|
|
{
|
|
"id": 57644,
|
|
"fullname": "Gerätewagen-Logistik 2",
|
|
"shortname": "GWL-2",
|
|
"name": "10-68-4",
|
|
"fmsstatus": 2,
|
|
"fmsstatus_id": 2,
|
|
"fmsstatus_note": "",
|
|
"fmsstatus_ts": 0,
|
|
"crew": [],
|
|
"lat": 0,
|
|
"lng": 0,
|
|
"opta": "",
|
|
"issi": "",
|
|
"number": ""
|
|
}
|
|
] |