From 11b05877f4059b8fcaa62a3328ffe9fb01f81675 Mon Sep 17 00:00:00 2001 From: csobier Date: Tue, 31 May 2016 12:05:34 -0400 Subject: [PATCH] reverted rebranded code, as instruted. Legacy cartodb code instead --- doc/boundary_functions.md | 4 ++-- doc/discovery_functions.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/boundary_functions.md b/doc/boundary_functions.md index d298236..ad8c27e 100644 --- a/doc/boundary_functions.md +++ b/doc/boundary_functions.md @@ -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') ``` diff --git a/doc/discovery_functions.md b/doc/discovery_functions.md index 0f2f71c..2daf657 100644 --- a/doc/discovery_functions.md +++ b/doc/discovery_functions.md @@ -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)) ```