having fun visualizing driving distances using #pgrouting #postgres #postgis #opendata
```sql
SELECT d.*, v.geom
FROM pgr_drivingDistance(
$$SELECT * FROM highway_edges$$,
989100571,
100000
) d,
vertices v
WHERE d.node=v.id
order by agg_cost;
```
