Dear Py-ART users,
I have a .UF file with the wrong latitude and longitude (-28 775, -53.07) for the radar location. I have with the correct coordinates (-29, -54).
I have an attached figure showing the correction that I want to perform.
I would also like to correct or change the background map because it does not show the desired political map.
sincerely
link UF file:
http://200.132.99.1/prev/temp/2014-10-19--03_20_23_00.mvol.UFimport numpy as np
import matplotlib.pyplot as plt
import pyart
# read in the file, create a RadarMapDisplay object
filename = '2014-10-19--03_20_23_00.mvol.UF'
radar = pyart.io.read(filename)
display = pyart.graph.RadarMapDisplay(radar)
# plot the second tilt
display.plot_ppi_map('corrected_reflectivity', 1, vmin=0, vmax=65,
min_lon=-65, max_lon=-45, min_lat=-40, max_lat=-23,
lon_lines=np.arange(-65, -45, 5),
lat_lines=np.arange(-40, -23, 5), resolution='h',
cmap='pyart_NWSRef')
plt.show()