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') ```