UW-Macrostrat / map-ingestion

Managing ingestion of sources into burwell
1 stars 1 forks source link

Chinkeh Creek, NWT/Yukon #354

Open cvavrus opened 5 years ago

cvavrus commented 5 years ago

Name: Lane, L.S., and Fallas, K.M., 2003: A GIS dataset of geological features for the Chinkeh Creek map area (95C/9), Northwest Territories and Yukon Territory; Geological Survey of Canada, Open File 1828.

Source URL: https://doi.org/10.4095/214836

Estimated scale: large

Folder name: nwt_chinkeh

Dataset names: nwt_chinkeh nwt_chinkeh_lines nwt_chinkeh_points

Number of bedrock polygons: 44

Lithology field:

Time field: use_age

Stratigraphy name field: strat_name

Description field: gen_descr

Comments field:

Comments:

Todo:

cvavrus commented 5 years ago

Suggested inserts:

INSERT INTO maps.large (orig_id,source_id,name,age,descrip,strat_name,t_interval,b_interval,geom) 
SELECT gid,1,formation,use_age,gen_descr,strat_name,late_id,early_id,ST_MakeValid(geom) FROM sources.nwt_chinkeh where geom is not null;
INSERT INTO lines.large (orig_id,source_id,descrip,new_type,geom) 
SELECT gid,1,descrip,new_type,ST_MakeValid(geom) FROM sources.nwt_chinkeh_lines where new_type is not null and geom is not null;
INSERT INTO points.points (orig_id,source_id,strike,dip,dip_dir,point_type,comments,geom) 
SELECT gid,1,strike,dip,dip_dir,point_type,concat_ws('; ',concat('lithology ',lithology),comment),ST_MakeValid(geom) FROM sources.nwt_chinkeh_points where point_type is not null and geom is not null;