74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
#!/usr/bin/env python3
|
|
# ******************************************************************************
|
|
#
|
|
# Project: GDAL
|
|
# Purpose: Simple command line program for translating ESRI .prj files
|
|
# into WKT.
|
|
# Author: Frank Warmerdam, warmerda@home.com
|
|
#
|
|
# ******************************************************************************
|
|
# Copyright (c) 2000, Frank Warmerdam
|
|
# Copyright (c) 2021, Idan Miara <idan@miara.com>
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
# to deal in the Software without restriction, including without limitation
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included
|
|
# in all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
# DEALINGS IN THE SOFTWARE.
|
|
# ******************************************************************************
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
from typing import Union
|
|
|
|
from osgeo import osr
|
|
|
|
from osgeo_utils.auxiliary.gdal_argparse import GDALArgumentParser
|
|
|
|
|
|
def main(argv):
|
|
parser = GDALArgumentParser(description='Transforms files from ESRI prj format into WKT format')
|
|
|
|
parser.add_argument("filenames", metavar='filename', type=str, nargs='*', help="esri .prj file")
|
|
|
|
args = parser.parse_args(argv[1:])
|
|
|
|
res = 1
|
|
for filename in args.filenames:
|
|
res = esri2wkt(filename)
|
|
return res
|
|
|
|
|
|
def esri2wkt(prj_filename: Union[str, Path]):
|
|
prj_fd = open(prj_filename)
|
|
prj_lines = prj_fd.readlines()
|
|
prj_fd.close()
|
|
|
|
for i, prj_line in enumerate(prj_lines):
|
|
prj_lines[i] = prj_line.rstrip()
|
|
|
|
prj_srs = osr.SpatialReference()
|
|
err = prj_srs.ImportFromESRI(prj_lines)
|
|
if err != 0:
|
|
print('Error = %d' % err)
|
|
return 1
|
|
else:
|
|
print(prj_srs.ExportToPrettyWkt())
|
|
return 0
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv))
|