Skip to content

Commit

Permalink
Fix wrong projection string
Browse files Browse the repository at this point in the history
  • Loading branch information
Koko Alberti committed Feb 14, 2020
1 parent 0933412 commit d8bfde0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkprofile/mkprofile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
sys.exit(1)

# Set up coordinate transform
proj_str = "+proj=tpeqd +lon_1={} +lat_1={} +lon_2={} +lat_2={}".format(args.lon_1, args.lat_1, args.lon_2, args.lon_2)
proj_str = "+proj=tpeqd +lon_1={} +lat_1={} +lon_2={} +lat_2={}".format(args.lon_1, args.lat_1, args.lon_2, args.lat_2)
tpeqd = CRS.from_proj4(proj_str)
transformer = Transformer.from_crs(CRS.from_proj4("+proj=latlon"), tpeqd)

Expand Down

0 comments on commit d8bfde0

Please sign in to comment.