UW-Macrostrat / map-ingestion

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

Byrock, New South Wales #459

Open rleverett opened 5 years ago

rleverett commented 5 years ago

Name: Burton G.R., Trigg S.J. & Campbell L.M.. Byrock 1:100 000 Geological Sheet 8136, First edition. Geological Survey of New South Wales, Maitland.

Source URL: https://search.geoscience.nsw.gov.au/product/56

Estimated scale: large

Folder name: nsw_byrock

Dataset names: nsw_byrock nsw_byrock_lines nsw_byrokc_points

Number of bedrock polygons: 1159

Lithology field:

Time field: use_age

Stratigraphy name field: grpsuite

Description field: descriptio

Comments field:

Comments:

Todo:

rleverett commented 5 years ago

Suggested Inserts:

INSERT INTO maps.large (orig_id,source_id,name,age,descrip,strat_name,t_interval,b_interval,comments,geom) 
SELECT gid,1,unitname,use_age,descriptio,grpsuite,late_id,early_id,ST_MakeValid(geom) FROM sources.nsw_byrock where geom is not null;
INSERT INTO lines.large (orig_id,source_id,descrip,name,new_type,geom) 
SELECT gid,1,codedescpt,descrip,new_type,ST_MakeValid(geom) FROM sources.nsw_byrock_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,azimuth,point_type,codedescpt,ST_MakeValid(geom) FROM sources.nsw_byrock_points where point_type is not null and geom is not null;