nationalparkservice / places-data

Data from the Places system.
http://www.nps.gov/npmap/tools/places/
13 stars 5 forks source link

Update FOMR boundary #801

Closed chadlawlis closed 6 years ago

chadlawlis commented 6 years ago

Currently pulling from a custom, park-provided source. Needs to be updated to Lands (update released 20161004).

chadlawlis commented 6 years ago

Updated in DB via:

UPDATE parks_poly SET geom_poly = (SELECT wkb_geometry FROM lands_20170930 WHERE unit_code = 'FOMR'), data_source = 'Land Resources Division' WHERE unit_id = 135;

UPDATE parks SET unit_area = (SELECT ST_Area(geom_poly) FROM parks_poly WHERE unit_id = 135) WHERE unit_id = 135;

Will go live once boundaries are regenerated.

chadlawlis commented 6 years ago

Updated a few cartographic attributes for better rendering and labeling:

UPDATE parks_poly SET min_zoom_poly = 10, min_zoom_border = 13, min_zoom_tintband = 14 WHERE unit_id = 135;
UPDATE parks_label SET min_zoom_label_long = 11 WHERE unit_id = 135;

This is now live.