Skip to main content

Quickly get the EPSG code from a .prj file or WKT

Project description

Overview

epsg_ident is a command-line utility and Python module for quickly identifying the EPSG Registry Code from a .prj file typically associated with ESRI Shapefiles. It ships with a SQlite3 database containing mappings of Well-known Text strings to EPSG codes, the bulk of which was manually sourced and cleaned from an ESRI website. It’s not complete, however, and in the event you test it against a WKT string not in the database it will search the prj2epsg.org API. If the API returns an exact match, that code is returned and saved to the SQLite database. Handling several partial matches is currently planned, but not yet implemented.

TL;DR

Command-Line usage

$ epsg_ident seattle_land_use.prj
2285

Python module usage

>>> from epsg_ident import EpsgIdent

>>> # Read .prj file from the filesystem
>>> ident = EpsgIdent()
>>> ident.read_prj_from_file('seattle_land_use.prj')
>>> ident.get_epsg()
2285

>>> # Paste in Well-Known Text string directly
>>> ident = EpsgIdent(prj="""PROJCS["NAD_1983_StatePlane_Washington_North_FIPS_4601_Feet",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",1640416.666666667],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-120.8333333333333],PARAMETER["Standard_Parallel_1",47.5],PARAMETER["Standard_Parallel_2",48.73333333333333],PARAMETER["Latitude_Of_Origin",47.0],UNIT["Foot_US",0.3048006096012192]]""")
>>> ident.get_epsg()
2285

Background

Think of projections as character encoding for spatial data. Spatial data lacking information about the coordinate system on which it has been projected is all but useless, just as if you had text data in an unknown encoding.

epsg_ident is not meant to be a full-fledged client library to the actual EPSG database, for that you’re probably looking for something like python-epsg

Rather, epsg_ident is for those looking to quickly identify the EPSG code of a shapefile, especially when importing into PostGIS . Of course, you could use ogr2ogr to convert everything into a web-friendly projection, like:

$ ogr2ogr -f PostgreSQL -t_srs EPSG:4326 PG:dbname=seattle seattle_land_use.shp

But transforming spatial data from one projection to another is a lossy operation and can result in coordinate drift. Ideally, you would store the original data in its original coordinate system and then transform copies as needed.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

epsg_ident-0.1.1.tar.gz (381.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

epsg_ident-0.1.1-py2.py3-none-any.whl (398.3 kB view details)

Uploaded Python 2Python 3

File details

Details for the file epsg_ident-0.1.1.tar.gz.

File metadata

  • Download URL: epsg_ident-0.1.1.tar.gz
  • Upload date:
  • Size: 381.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for epsg_ident-0.1.1.tar.gz
Algorithm Hash digest
SHA256 7e4b5045986efcd671cb43fdba04c85f70688df581b21817f77f97c04f8575e3
MD5 f7de35ef56cc40c86b8a5ad18a0c976c
BLAKE2b-256 0a9e45966dc6280145782af51c588befc2386e5b82b1e9263277422898616a64

See more details on using hashes here.

File details

Details for the file epsg_ident-0.1.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for epsg_ident-0.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 5fa02c2dbff7f33003d8beae913de2eb14a30226ef29fb941fb8b47f93d1846f
MD5 51d5f06ef9d64e5ec5713a6df0681b9c
BLAKE2b-256 17e212f72795a0a9b6f3471169e42eb3cfb728aad77139e5cfa2925749e56dee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page