Tagged Questions
1
vote
1answer
136 views
Quantum GIS returns “Invalid Layer” message when trying to add Postgis view
I'm new to Postgis and Quantum GIS. I created a view defined as
CREATE OR REPLACE VIEW pupr.vstudentmuni AS
SELECT m.id AS munid, m.name AS muname, m.geom, s.code,
(s.name::text || ' '::text) ...
4
votes
2answers
410 views
Publish SQL Views from Postgres/Postgis to Geoserver
I've trying and reading how to publish a Postgres/Postgis View in Geoserver. I know that I can create an SQL View in Geoserver, but I'd like to define the View in Postgres, not in Geoserver.
Does ...
2
votes
1answer
247 views
How to load a postgres view using pyQgis?
Under Qgis 1.8 on Windows 7 I have this problem with my pyArchInit plugin: I need to load on the map canvas my geometries from a postgis layer. Till the 1.7.4 version I use the method explained on the ...
15
votes
3answers
3k views
How to make a spatial view in PostGIS and add it as a layer in QGIS?
In PostGIS 2.0, what is the most efficient way to create a spatially enabled view that is viewable in QGIS?
I followed the context of Part 2 of @Mike Toews answer to this question, and the view ...
