I did recently ask a question about how to add a new point to a PostGIS table. Now when I've got the new point in the table it should be visible on my map, but it isn't.
I'm using Mapnik together with TileStache. The cache for TileStache is temporary turned off, and I've restarted PostgreSQL. It's still not there.
The query I used to add the point was the following:
INSERT INTO osm_transport_points(osm_id, name, type, geometry)
VALUES(1, 'name', 'station', ST_SetSRID(ST_MakePoint(lat, lng), 900913));
Is there something I've missed to flush, or am I doing something else wrong?
geometrycolumn, which I could. The SRID is the same as stated in the tablegeometry_columns. Theosm_idis unique but only one digit, I don't know if that matters or not. – Ivar Apr 06 '13 at 11:38