dtonggmu / haqast

Health Air Quality Forecast and Reanalysis
http://gis.csiss.gmu.edu/HAQAST
1 stars 0 forks source link

Map projection #3

Closed bbakernoaa closed 7 years ago

bbakernoaa commented 7 years ago

@dtonggmu

Looked into the projection. We are using he Lambert Equal Area projection. We can simply change the projection in the plotting script to use Lamber Conformal Conic. simply by changing the line:

m = Basemap(projection='laea', resolution='h', lat_1=lat1, lat_2=lat2, lat_0=lat0, lon_0=lon0, lon_1=lon1,

to

m = Basemap(projection='lcc', resolution='h', lat_1=lat1, lat_2=lat2, lat_0=lat0, lon_0=lon0, lon_1=lon1,

This will give a plot something like this test

semylab commented 7 years ago

I applied the code. Now, the updated version is working. A plot image replacing by new one in Reanalysis menu is also finished.

Thanks!