nationalparkservice / places-data

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

Add label for NPNH #725

Closed chadlawlis closed 8 years ago

chadlawlis commented 8 years ago

From @mtaylorlong:

-74.04510498046875 40.66319159533881

chadlawlis commented 8 years ago

Done via:

BEGIN;
UPDATE parks_label
SET geom_label = (SELECT ST_GeomFromText('POINT(-74.04510498046875 40.66319159533881)', 4326))
WHERE label_id = 209;

UPDATE parks_label
SET geom_label = ST_Transform(ST_SetSRID(geom_label, 4326), 3857)
WHERE label_id = 209;
COMMIT;

Will go live once boundaries are regenerated.

chadlawlis commented 8 years ago

This is now live.

mtaylorlong commented 8 years ago

Looks good to me!