Conditions | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | #!/usr/bin/env python3 |
||
18 | def create_merged_contour(): |
||
19 | min_level = 55 |
||
20 | max_level = 180 |
||
21 | n_levels = 37 |
||
22 | # n_levels = 100 |
||
23 | levels_minor = numpy.linspace(min_level, max_level, num=n_levels) |
||
24 | config = nsmaps.contourmap.ContourPlotConfig() |
||
25 | contourmap = nsmaps.contourmap.ContourMerged(config) |
||
26 | contourmap.merge_grid_data(DATA_DIR) |
||
27 | contourmap.create_geojson('combined.geojson', stroke_width=4, levels=levels_minor) |
||
28 | |||
31 | create_merged_contour() |