DontFlush.me: Help keep your shit out of the harbor during storms

Summary

Explore DontFlush.me, an app from #ecohackNYC utilizing CartoDB to track sewage overflow in NYC waterways. Data and mapping address environmental challenges.

This post may describe functionality for an old version of CARTO. Find out about the latest and cloud-native version here.
DontFlush.me: Help keep your shit out of the harbor during storms

In The last 2 weeks a lot of new applications have been developed at #ecohacknyc #nycbigapps and #sciencehackday using CartoDB pretty excited. This demonstrates the power of CartoDB specially for fast development of location aware applications and mapping. We are gonna be highlighting different applications that make use of CartoDB on the next days.

Today we want to talk about DontFlush.me in their own words:

  • Unprocessed sewage overflows into New York City waterways as often as once a week.
  • 27 billion gallons of untreated sewage is dumped into NYC's Harbor every year.
  • Combined Sewer Overflows (CSOs) happen when the sewer system is overloaded by rainfall and snow.
  • Help keep your shit out of the harbor during storms.
dontflush.me map

 

During #ecohackNYC a group of talented people got together to develop an application that can show you where is your sewage going. They used CartoDB to host all the data and then with a simple SQL API call like this:

##_INIT_REPLACE_ME_PRE_##

http://ecohack-nyc-03.cartodb.com/api/v1/sql?q=

SELECT DISTINCT(sheds.drainage_n) ST_AsGeoJSON(pol.the_geom) as polygon ST_AsGeoJSON(poin.the_geom) as point_geom

FROM drain_areas_wgs84webmerc_nodupou as pol inner join cso_nyc_wgs84webmerc_latlon as poin on poin.item_id=pol.primary_ou drainage_nyc_sewage_plant_sheds as sheds

WHERE ST_Intersects(pol.the_geom ST_GeomFromText(‘POINT(-73.96212000000003 40.675573)’ 4326)) AND (sheds.wpcp=poin.wpcp OR sheds.alt_name=poin.wpcp) ##_END_REPLACE_ME_PRE_##

They get the polygon of your CSO are and where it ends up on the river. On top of that is all about bringing a nice UI and give contest to the issue.

Great job from Matt Eric Jeni Liz Jeff Chris Sheiva Anna Karen Wendy and Carl. Congratulations!