You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT the_geom, the_geom_webmercator,
ST_Area(the_geom::geography) / (1609*1609) As area_sq_miles,
rank() OVER (ORDER BY ST_Area(the_geom::geography) ASC)
FROM
us_congressional_districts
ORDER BY3ASCLIMIT10
Top Ten Largest Congressional Districts
SELECT the_geom, the_geom_webmercator,
ST_Area(the_geom::geography) / (1609*1609) As area_sq_miles,
rank() OVER (ORDER BY ST_Area(the_geom::geography) DESC)
FROM
us_congressional_districts
ORDER BY3DESCLIMIT10