data = {
if (selected_counties.length == 1) {
return (await (await fetch(
`https://us-counties.datasette.io/counties.json?sql=select+AsGeoJSON(geometry)+as+g+from+counties+where+id+%3D+:id&_shape=arrayfirst&_json=g&id=${selected_counties[0].id}`
)).json())[0];
} else {
return null;
}
}