interesting links
xkcd maps
Waterman project
Bibliography
Lambert Conformal Conic to Geographic Transformation Formulae Land Information New Zealand
Summary of US Coast and Geodetic Survey docs:
Publication No. 47: Lambert conformal conic projection with two standard parallels d/l as QB275U35no47.pdf
Publication No. 49: Lambert projection tables with conversion tables (supplement to 47, above, d/l as QB275U35no491918.pdf)
Publication No. 53: General Theory of the Lambert Conformal Conic Projection Oscar Adams, 1918
Publication No. 52, Lambert projection tables for the United States (1 item available at NOAA Miami Library.)
Publication No. 57: General Theory of Polyconic Projections (d/l as: general_theory_polygonic_57.pdf)
other:
penn.edu The Online Books Page
nwloaded:
Map Projections – A Working Manual USGS
p 104 – 110 describes LCC
Map Projections - A Working Manual USGS
p 104 - 110 describes LCC
some refs:
Invalid Projection EPSG:102008
https://github.com/geopandas/geopandas/issues/943
ESRI:102004
USA Contiguous Lambert Conformal Conic
http://epsg.io/102004
OpenLayers transform from docs
https://openlayers.org/en/latest/apidoc/module-ol_proj.html#.transform
Using coordinates in meters on a static image map
https://github.com/ghettovoice/vuelayers/issues/399
which is:
var oldCode = OSM_layer.getSource().getProjection().getCode(); // Getting projection of target layer
newCoord = ol.proj.transformExtent([extent.j[0], extent.j[1], extent.j[2], extent.j[3]], oldCode, 'EPSG:4326'); // perform projection transform with given extent.
stackexchange example of transform:
https://gis.stackexchange.com/questions/238243/transform-coordinates-epsg32628-to-epsg3857-openlayers-3