UW-Macrostrat / map-ingestion

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

Blayney, NSW #517

Closed rleverett closed 7 months ago

rleverett commented 4 years ago

Name: Wyborn D. and Henderson G.A.M., 1997, Blayney 1:100 000 Geological Sheet 8730, 1st edition. Geological Survey of New South Wales, Sydney & Geoscience Australia, Canberra

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

Estimated scale: large

Folder name: nsw_blayney

Dataset names: nsw_blayney nsw_blayney_lines nsw_blayney_points

Number of bedrock polygons: 738

Lithology field:

Time field: age

Stratigraphy name field: strat_name

Description field: lith_desc

Comments field:

Comments:

Todo:

rleverett commented 4 years ago

No strike/dip in the points files

Suggested Inserts:

INSERT INTO maps.large (orig_id,source_id,name,age,descrip,strat_name,t_interval,b_interval,geom) 
SELECT gid,1,unitname,age,lith_desc,strat_name,late_id,early_id,ST_MakeValid(geom) FROM sources.nsw_blayney where geom is not null;
INSERT INTO lines.large (orig_id,source_id,descrip,new_type,geom) 
SELECT gid,1,"desc",new_type,ST_MakeValid(geom) FROM sources.nsw_blayney_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,"desc",ST_MakeValid(geom) FROM sources.nsw_blayney_points where point_type is not null and geom is not null;
kaakin commented 7 months ago

Processed during the initial round of candidates processing by Kate. (map_ingestion->sources)