Open mtaylorlong opened 8 years ago
It looks like the unit boundary may be cutting off at two different tile edges? cc @mtaylorlong
Western edge @ http://insidemaps.nps.gov/park-tiles-3/#19/29.73504/-102.65588.
Eastern edge @ http://insidemaps.nps.gov/park-tiles-3/#19/29.79664/-101.95284.
The boundary geometry looks to be correct:
Map on NPS.gov:
Geometries (RIGR + BIBE + AMIS) in Places:
There is a label but it is all the way at the southeastern USA/Mexico border: http://insidemaps.nps.gov/park-tiles-3/#14/25.9545/-97.1436. So, this will need to be moved.
Label move done via:
BEGIN;
UPDATE parks_label
SET geom_label = (SELECT ST_GeomFromText('POINT(-102.31876373291016 29.88095077689225)', 4326))
WHERE label_id = 141;
UPDATE parks_label
SET geom_label = ST_Transform(ST_SetSRID(geom_label, 4326), 3857)
WHERE label_id = 141;
COMMIT;
This will put the label in a similar position as on the print map from above. Will confirm once live.
@cwlawlis802: RIGR is a great candidate for becoming a line park, just like BUFF. Let's set simp_type='line'
and add a line geometry.
This polygon was definitely made from a line. Any chance we have that line?
Agreed - I've been searching for the line geometry, to no avail. Generating a centerline from a polygon in QGIS or PostGIS is more complicated than imagined as well. We'll get a hold of it one way or another...
The label is now live.
The boundary geometry is actually looking better, as well - it does not seem to be getting cut off like it was before. It would still be best if we symbolized it as a line up until z14, but looking better in the mean time at least.
Rio Grande WSR is an odd boundary that needs fixing in PT3. It's a very thin boundary, so it would be best symbolized as a line until zoom 14. Also, it's label is completely missing, so we'll have to figure that out.
cc: @cwlawlis802