From c5a49ade605b9fb6ae80c084cceabd602854508e Mon Sep 17 00:00:00 2001 From: Andy Eschbacher Date: Mon, 2 May 2016 09:53:30 -0400 Subject: [PATCH] updates to docs descriptions --- doc/methods.md | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/doc/methods.md b/doc/methods.md index 8f98281..f666695 100644 --- a/doc/methods.md +++ b/doc/methods.md @@ -211,7 +211,8 @@ The ```OBS_GetBoundary(point_geometry, boundary_id)``` method returns a boundary Name | Description --- | --- point_geometry | a WGS84 polygon geometry (the_geom) -boundary_id | a boundary identifier from the [Boundary ID glossary table below](below) +boundary_id | a boundary identifier from the [Boundary ID glossary table below](below) +timespan (optional) | year(s) to request from (`NULL` (default) gives most recent) #### Returns @@ -224,7 +225,8 @@ geom | WKB geometry Overwrite a point geometry with a boundary geometry that contains it in your table ```SQL -UPDATE tablename SET the_geom = OBS_GetBoundary(the_geom, ' "us.census.tiger".block_group') +UPDATE tablename +SET the_geom = OBS_GetBoundary(the_geom, '"us.census.tiger".block_group') ```