add urls to academic and nsla libraries in lists

This commit is contained in:
Hugh Rundle 2024-02-11 16:50:36 +11:00
parent 787ac0e85b
commit c7cf2b1734
Signed by: hugh
GPG key ID: A7E35779918253F9

View file

@ -47,13 +47,15 @@
return { return {
name: d.town, name: d.town,
ils: d.ils, ils: d.ils,
url: d.url
} }
}); });
const academic = await d3.dsv(',', '/data/academic_library_locations.csv', (d) => { const academic = await d3.dsv(',', '/data/academic_library_locations.csv', (d) => {
return { return {
name: d.town, name: d.town,
ils: d.ils, ils: d.ils,
discovery: d.discovery discovery: d.discovery,
url: d.url
} }
}); });