I'm currently using this as my query:<br><br>SELECT g.*, <br>        ST_X(geomout) As lon, <br>        ST_Y(geomout) As lat, (addy).*  <br>FROM geocode('<address here>') As g;<br><br>I'm wondering what other fields I can add to the SELECT.  E.g., can I get census block?  <br>

<br>I know one route is to use the lon/lat together with the shapefiles themselves and use point-in-polygon, but that seems circuitous.  <br><br>Thanks!<br><br>