data_alps_public_transport = {
let archive = await FileAttachment("data_alps_public_transport.json@1.zip")
.arrayBuffer()
.then(buffer => jszip.loadAsync(buffer));
return archive
.file("data_alps_public_transport.json")
.async("text")
.then(
function success(json) {
return JSON.parse(json);
},
function error(e) {
console.warn(e);
}
);
}