Home
last modified time | relevance | path

Searched refs:stationplot (Results 1 – 4 of 4) sorted by relevance

/dports/astro/py-metpy/MetPy-1.1.0/examples/plots/
H A DStation_Plot.py80 stationplot = StationPlot(ax, data['longitude'].values, data['latitude'].values, variable
85 stationplot.plot_parameter('NW', data['air_temperature'].values, color='red')
86 stationplot.plot_parameter('SW', data['dew_point_temperature'].values,
92 stationplot.plot_parameter('NE', data['air_pressure_at_sea_level'].values,
98 stationplot.plot_symbol('C', data['cloud_coverage'].values, sky_cover)
102 stationplot.plot_symbol('W', data['current_wx1_symbol'].values, current_weather)
105 stationplot.plot_barb(data['eastward_wind'].values, data['northward_wind'].values)
109 stationplot.plot_text((2, 0), data['station_id'].values)
H A DMesonet_Stationplot.py84 stationplot = StationPlot(ax, longitude.values, latitude.values, clip_on=True, variable
89 stationplot.plot_parameter('NW', temperature, color='red')
90 stationplot.plot_parameter('SW', dewpoint, color='darkgreen')
95 stationplot.plot_parameter('NE', pressure.m, formatter=lambda v: format(10 * v, '.0f')[-3:])
98 stationplot.plot_barb(u, v)
102 stationplot.plot_text((2, -1), station_id)
H A DStation_Plot_with_Layout.py143 stationplot = StationPlot(ax, data['longitude'], data['latitude'], variable
149 simple_layout.plot(stationplot, data)
189 stationplot = StationPlot(ax, data['longitude'], data['latitude'], variable
195 custom_layout.plot(stationplot, data)
/dports/astro/py-metpy/MetPy-1.1.0/tests/plots/
H A Dtest_station_plot.py427 stationplot = StationPlot(ax, ts.index, y, fontsize=12)
428 stationplot.plot_symbol('C', ts, sky_cover)