UW-Macrostrat / map-ingestion

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

Woodburn, New South Wales #467

Open rleverett opened 5 years ago

rleverett commented 5 years ago

Name: Brownlow J.W., 2002, Woodburn 1:100 000 Geological Sheet 9539, 1st edition. Geological Survey of New South Wales, Armidale.

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

Estimated scale: large

Folder name: nsw_woodburn

Dataset names: nsw_woodburn nsw_woodburn_lines nsw_woodburn_points

Number of bedrock polygons: 779

Lithology field:

Time field: age

Stratigraphy name field: strat_name

Description field: lithology

Comments field:

Comments:

Todo:

rleverett commented 5 years ago

The strike/dip was not given in the points file, only the "angle'

Suggested Inserts:

INSERT INTO maps.large (orig_id,source_id,name,age,descrip,strat_name,t_interval,b_interval,geom) 
SELECT gid,1,unit_name,age,lithology,strat_name,late_id,early_id,ST_MakeValid(geom) FROM sources.nsw_woodburn where geom is not null;
INSERT INTO lines.large (orig_id,source_id,descrip,new_type,geom) 
SELECT gid,1,descriptio,new_type,ST_MakeValid(geom) FROM sources.nsw_woodburn_lines where new_type is not null and geom is not null;
INSERT INTO points.points (orig_id,source_id,point_type,comments,geom) 
SELECT gid,1,point_type,descrptn,ST_MakeValid(geom) FROM sources.nsw_woodburn_points where point_type is not null and geom is not null;