This script converts longitude and latitude to Lambert conformal conic projection. The example used is for Mexico, under International Terrestrial Reference Frame 2008, which uses Lambert Conformal Conic projection 2SP (epsg:9802).
This script is useful to combine census and geographic data, with traditional Longitude and Latitude from the more international frame of reference.
For more reference, see National Geography institute explanatory PDF and Pyproj, Lambert projections.
- Python 3.x installed on your machine.
The script requires the following Python libraries:
pyproj
shapely
You can install the required library using pip:
pip install pyproj
pip install shapely