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