[postgis-users] psql2shp on two tables to get one shapefile.. .

Obe, Regina DND\MIS robe.dnd at ci.boston.ma.us
Wed Jun 25 13:39:03 PDT 2003


A view has worked fine for me and then I dump out the results of the view
using pgsql2shp as if it were a regular table

e.g.

CREATE VIEW myview
AS
SELECT city_tbl.*, s.budget, s.population
FROM city_tbl c INNER JOIN city_stats_tbl s ON c.city_id = s.city_id


then you just dump out the view myview like a regular old table



-----Original Message-----
From: Nick Ton [mailto:nton at photon.com]
Sent: Wednesday, June 25, 2003 3:40 PM
To: 'PostGIS Users Discussion'
Subject: [postgis-users] psql2shp on two tables to get one shapefile...




Hi Everyone,

I am trying to create a shapefile where the data is based on two different
tables.
Has anyone done this before? Here is my problem, simplified:

-- City table contains some information, plus the_geom
CREATE TABLE city_tbl
(
   city_id	int,
   name text,
   area_cvrg real,
   the_geom geometry,
PRIMARY KEY (city_id)
);

-- City statistics table contains additional information 
-- that has to be linked to the city table in order to make the shapefile
complete
CREATE TABLE city_stats_tbl
(
   budget	numeric,
   population real,
   city_id REFERENCES city_tbl
);

One thought I had but wasn't sure if this is correct -- could I join the two
tables
together into a temp table, then perform a pgsql2shp on the temp table.
Please let
me your thoughts.

Thanks,
Nick




_______________________________________________
postgis-users mailing list
postgis-users at postgis.refractions.net
http://postgis.refractions.net/mailman/listinfo/postgis-users



More information about the postgis-users mailing list