reverted rebranded code, as instruted. Legacy cartodb code instead

This commit is contained in:
csobier 2016-05-31 12:05:34 -04:00
parent 02ca484719
commit 11b05877f4
2 changed files with 3 additions and 3 deletions

View File

@ -222,7 +222,7 @@ Insert into table `denver_census_tracts` the census tract boundaries and geom_re
INSERT INTO denver_census_tracts(the_geom, geom_refs)
SELECT *
FROM OBS_GetBoundariesByPointAndRadius(
carto_LatLng(39.7392, -104.9903), -- Denver, Colorado
CDB_LatLng(39.7392, -104.9903), -- Denver, Colorado
10000 * 1.609, -- 10 miles (10km * conversion to miles)
'us.census.tiger.census_tract')
```
@ -264,7 +264,7 @@ Insert into table `denver_tract_points` points on US census tracts and their cor
INSERT INTO denver_tract_points(the_geom, geom_refs)
SELECT *
FROM OBS_GetPointsByPointAndRadius(
carto_LatLng(39.7392, -104.9903), -- Denver, Colorado
CDB_LatLng(39.7392, -104.9903), -- Denver, Colorado
10000 * 1.609, -- 10 miles (10km * conversion to miles)
'us.census.tiger.census_tract')
```

View File

@ -54,5 +54,5 @@ time_span | the timespan attached the boundary. this does not mean that the boun
#### Example
```SQL
SELECT * FROM OBS_GetAvailableBoundaries(carto_LatLng(40.7, -73.9))
SELECT * FROM OBS_GetAvailableBoundaries(CDB_LatLng(40.7, -73.9))
```