-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfetch-fds-ordnungsaemter.js
36 lines (29 loc) · 1.06 KB
/
fetch-fds-ordnungsaemter.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
const https = require('https');
const fs = require('fs');
async function fetchData(url) {
return new Promise((resolve, reject) => {
https
.get(url, response => {
let data = '';
response.on('data', chunk => data += chunk);
response.on('end', () => resolve(JSON.parse(data)));
})
.on('error', reject);
});
}
(async () => {
const alleOrdnungsaemter = [];
let nextUrl = 'https://fragdenstaat.de/api/v1/publicbody/?classification_id=228&limit=50'
while (nextUrl) {
const result = await fetchData(nextUrl);
const ordnungsaemter = result.objects.map(ordnungsamt => ({
id: ordnungsamt.id,
name: ordnungsamt.name,
address: ordnungsamt.address
}))
alleOrdnungsaemter.push(...ordnungsaemter);
nextUrl = result.meta.next;
}
fs.writeFileSync('ordnungsaemter.json', JSON.stringify(alleOrdnungsaemter, null, 2));
console.log(`Gespeicherte Anschriften: ${alleOrdnungsaemter.length}`);
})();