Posted by Yancho on Tue 29 Jan 10:39
report abuse | download | new post
- -- Table: streets
- -- DROP TABLE streets;
- CREATE TABLE streets
- (
- gid serial NOT NULL,
- cat bigint,
- stseg bigint,
- stid bigint,
- stname character varying(80),
- dir_pre character varying(80),
- dir_suf character varying(80),
- stype character varying(80),
- "class" bigint,
- f_elev bigint,
- t_elev bigint,
- map character varying(80),
- priv character varying(80),
- frleft bigint,
- toleft bigint,
- frright bigint,
- toright bigint,
- frleft_a bigint,
- toleft_a bigint,
- frright_a bigint,
- toright_a bigint,
- stateroad bigint,
- cartoname character varying(80),
- corp character varying(80),
- speed bigint,
- one_way character varying(80),
- classname character varying(80),
- l_zipname character varying(80),
- r_zipname character varying(80),
- ft_cost numeric,
- tf_cost numeric,
- labelname character varying(80),
- f_node bigint,
- t_node bigint,
- cartolevel character varying(80),
- shape_len numeric,
- the_geom geometry,
- source integer,
- target integer,
- length double precision,
- x1 double precision,
- y1 double precision,
- x2 double precision,
- y2 double precision,
- reverse_cost double precision,
- to_cost double precision,
- "rule" text,
- rcost double precision,
- CONSTRAINT streets_pkey PRIMARY KEY (gid),
- CONSTRAINT enforce_dims_the_geom CHECK (ndims(the_geom) = 2),
- CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'MULTILINESTRING'::text OR the_geom IS NULL),
- CONSTRAINT enforce_srid_the_geom CHECK (srid(the_geom) = -1)
- )
- WITHOUT OIDS;
- ALTER TABLE streets OWNER TO yancho;
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.