async function getData(imei, startDateISO, endDateISO) {
const rohdaten = await fetch(
'https://fruchtfolge.agp.uni-bonn.de/db/gps/_all_docs?' +
new URLSearchParams({
include_docs: 'true',
startkey: `"${imei}::${startDateISO}::\uffff"`,
endkey: `"${imei}::${endDateISO}"`
})
);
const json = await rohdaten.json();
return json;
}