Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 985 Bytes

File metadata and controls

21 lines (15 loc) · 985 Bytes

Longitude and Latitude to Conical Converter

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.

Prerequisites

  • Python 3.x installed on your machine.

Dependencies

The script requires the following Python libraries: pyproj shapely

You can install the required library using pip: pip install pyproj pip install shapely