-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelevation.py
executable file
·152 lines (125 loc) · 5.88 KB
/
elevation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#!/usr/bin/env python
import logging
import argparse
import matplotlib.cm as cm
import matplotlib.pyplot as plt
from pylab import *
from region import Region
from gpx_manager import GPXManager
logger = logging.getLogger(__name__)
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Process a GPS file.')
parser.add_argument('--gpx_filename', '-f',
help='GPX file for processing')
parser.add_argument('--overlay_gps', '-g', action='store_true',
default=False, help='Overlay GPX file')
parser.add_argument('--only_gps', '-l', action='store_true',
default=False, help='Only GPX file')
parser.add_argument('--overlay_delta', '-o', default=20,
help='Height above map to place the GPS track '
'(in meters). Default = 20')
parser.add_argument('--resolution', '-r', default="500",
help='Resolution to read SRTM files at')
parser.add_argument('--dpi', '-d', default="72",
help='DPI of output file')
parser.add_argument('--width', '-w', default=20,
help='Width in inches of output file')
parser.add_argument('--color_map', '-c', default="gray",
help='Colormap to use, defaults to gray')
parser.add_argument('--contour', '-e', default="-1",
help='Elevation in meters of contour lines')
parser.add_argument('--bounds', '-b',
help='Map boundaries in the form: sw_lat,sw_lngxne_lat'
',ne_lng for instance -b "37.704467,-122.520905x37.83'
'6903,-122.35611"')
parser.add_argument('--no_cache', '-n', default=False,
action='store_true', help="Don't use cache, always "
"reprocess data")
parser.add_argument('--thickness', '-t', default=2,
help='Line thickness for GPS Overlay')
parser.add_argument('--padding_pct', '-p', default=20,
help='Size of padding (percentage)')
parser.add_argument('--median_filter', '-m', default="-1",
help='Amount of filtering. Disabled by default.')
parser.add_argument('--srtm_format', '-s', default=1,
help='SRTM format. Default is 1')
parser.add_argument('--patch_mode', '-u', default="auto",
help='Patch mode for using unpatched files.')
args = parser.parse_args()
resolution = int(args.resolution)
width = int(args.width) # we will calculate height after the aspect ratio
dpi = int(args.dpi)
valley = {"lat": None, "lng": None, "alt": 32767}
peak = {"lat": None, "lng": None, "alt": 0}
if not (args.gpx_filename or args.bounds):
parser.error('You must specify --bounds and/or --gpx_filename.')
if args.only_gps:
args.overlay_gps = True
if args.overlay_gps and not args.gpx_filename:
parser.error('You must specify --gpx_filename if you specify overlay_'
'gps.')
if args.gpx_filename:
gpx_manager = GPXManager(args.gpx_filename)
bounds = gpx_manager.get_boundaries()
north_lat = bounds['ne']['lat']
south_lat = bounds['sw']['lat']
east_lng = bounds['ne']['lng']
west_lng = bounds['sw']['lng']
if args.bounds:
sw, ne = args.bounds.split('x')
if sw and ne:
south_lat, west_lng = sw.split(',')
north_lat, east_lng = ne.split(',')
south_lat = float(south_lat)
north_lat = float(north_lat)
west_lng = float(west_lng)
east_lng = float(east_lng)
region = Region(north_lat, east_lng, south_lat, west_lng,
resolution=int(args.resolution), no_cache=args.no_cache,
padding_pct=float(args.padding_pct),
srtm_format=int(args.srtm_format),
patch_mode=args.patch_mode, auto_parse=False)
if not args.only_gps:
region.overlay_map()
contour_filename_suffix = ""
if int(args.contour) > 0:
region.contour(int(args.contour))
contour_filename_suffix = "-contour-%s" % args.contour
if args.overlay_gps:
region.overlay_gps(gpx_manager.gpx, thickness=int(args.thickness),
elevation_delta=args.overlay_delta)
if region.aspect_ratio < 0:
height = width / region.aspect_ratio
else:
height = width * region.aspect_ratio
height = height / region.distance_ratio # correct for lng distance diff
medfilt_filename_suffix = ""
if args.median_filter != '-1':
print "median filtering"
region.median_filter(kernel_size=int(args.median_filter))
medfilt_filename_suffix = "-medfilt_%s" % args.median_filter
fig = plt.figure(frameon=False)
fig.set_size_inches(width, height)
fig.set_dpi(dpi)
ax = plt.Axes(fig, [0., 0., 1., 1.])
ax.set_axis_off()
fig.add_axes(ax)
# log_out = np.log1p(region.outfile)
colormaps = [m for m in cm.datad if not m.endswith("_r")]
colormap = cm.get_cmap(args.color_map)
ax.imshow(region.outfile, aspect='normal', interpolation='bilinear',
cmap=colormap, alpha=1.0)
name_source = "" # append to filename either the source gpx or the bounds
if args.gpx_filename:
name_source = args.gpx_filename.split('/')[-1]
else:
name_source = "%s,%sx%s,%s" % (
str(south_lat)[0:7], str(west_lng)[0:7],
str(north_lat)[0:7], str(east_lng)[0:7])
filename = "%s-%s-%s-%s%s%s_srtm%s.png" % (
datetime.datetime.strftime(datetime.datetime.now(),
"%y%m%d%H%M%S"),
resolution, colormap.name, name_source,
contour_filename_suffix, medfilt_filename_suffix,
str(args.srtm_format))
fig.savefig("images/%s" % filename)