Skip to content

Commit

Permalink
Merge pull request #7 from scottstanie/fix-epsg-quote
Browse files Browse the repository at this point in the history
Fix epsg quote
  • Loading branch information
scottstanie authored Aug 12, 2022
2 parents 4039589 + 63aa68e commit f75df52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sardem/cop_dem.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def download_and_stitch(
t_srs = s_srs = None
else:
code = conversions.EPSG_CODES["egm08"]
s_srs = '"epsg:4326+{}"'.format(code)
t_srs = '"epsg:4326"'
s_srs = 'epsg:4326+{}'.format(code)
t_srs = 'epsg:4326'
xres = DEFAULT_RES / xrate
yres = DEFAULT_RES / yrate

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="sardem",
version="0.10.4",
version="0.10.5",
author="Scott Staniewicz",
author_email="scott.stanie@gmail.com",
description="Create upsampled DEMs for InSAR processing",
Expand Down

0 comments on commit f75df52

Please sign in to comment.