Changeset 296


Ignore:
Timestamp:
Sep 16, 2011, 7:50:31 PM (13 years ago)
Author:
aslmd
Message:

MESOSCALE: graphics, added map/section examples in python. Registry, added thermals-related variables.

Location:
trunk
Files:
2 added
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/MESOSCALE/LMD_MM_MARS/SRC/PYTHON/myplot.py

    r295 r296  
    490490             "WMAX_TH":      "%.1f",\
    491491             "QSURFICE":     "%.0f",\
     492             "Um":           "%.0f",\
    492493             "ALBBARE":      "%.2f",\
    493494                    }
     
    566567                "nice":        "http://users.info.unicaen.fr/~karczma/TEACH/InfoGeo/Images/Planets/earthmap1k.jpg",\
    567568                "blue":        "http://eoimages.gsfc.nasa.gov/ve/2430/land_ocean_ice_2048.jpg",\
     569                "blueclouds":  "http://eoimages.gsfc.nasa.gov/ve/2431/land_ocean_ice_cloud_2048.jpg",\
     570                "justclouds":  "http://eoimages.gsfc.nasa.gov/ve/2432/cloud_combined_2048.jpg",\
    568571                        }
    569572        ### see http://www.mmedia.is/~bjj/planetary_maps.html
  • trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2/Registry/Registry.EM

    r262 r296  
    107107state  real  TAU_ICE   ij   misc  1  -  rd   "TAU_ICE"   "CLOUD OD at 825 cm-1 TES"        ""        #SAVEMARS2 tauTES
    108108state  real  PDTZ      ikj  misc  1  -  rd   "PDT"       "TEMP TENDENCY"                   "K s-1"   #SAVEMARS3 pdt
     109state  real  LMAX_TH   ij   misc  1  -  rd   "LMAX_TH"   "MAXIMUM LEVEL REACHED IN TH"     ""        #SAVEMARS2 lmax_th_out
     110state  real  HFMAX_TH  ij   misc  1  -  rd   "HFMAX_TH"  "MAXIMUM TH HEAT FLUX"            "m.K/s"   #SAVEMARS2 hfmax_th
     111state  real  WMAX_TH   ij   misc  1  -  rd   "WMAX_TH"   "MAXIMUM TH VERTICAL VELOCITY"    "m/s"     #SAVEMARS2 wmax_th
     112
     113
    109114####
    110115####
  • trunk/MESOSCALE_DEV/PLOT/PYTHON/mylib/map_ecmwf.py

    r273 r296  
    66var = ["78"]
    77var = ["137"]
     8#var = ["174"] albedo marche pas.
    89lev = ["700.","850."]
    910tim = ["00"]
    1011date = ['10','08','2010','10','08','2010']
    1112date = ['01','09','2009','01','09','2009']
     13#date = ['01','09','2010','01','09','2010']
    1214dataset = ["an","pl","0"]
    1315dataset = ["fc","sfc","3"]
    1416##########################################################################
    1517proj = "cyl"  #"moll" "ortho" "lcc"
    16 proj = "ortho"
     18#proj = "ortho"
    1719#proj = "moll"
    1820area = "Europe"
    1921area = "Africa"
    20 #area = "Central_America"
     22area = "Central_America"
    2123#area = "Southern_Hemisphere"
    2224#area = "Northern_Hemisphere"
    23 area = "Whole_No_High"
     25#area = "Whole_No_High"
    2426area = "Whole"
    2527back="blue"
    2628#back="bw"
     29#back="moc"
    2730##########################################################################
    2831
     
    5154                        m = myp.define_proj(proj,wlon,wlat,back=back)
    5255                        x, y = m(lon2d, lat2d)
    53                         zeplot = m.contour(x, y, field, 15)
     56                        zeplot = m.contour(x, y, field, 10) #15
    5457                        plt.clabel(zeplot, inline=1, inline_spacing=1, fontsize=7, fmt='%0i')
    5558                        #plt.colorbar(fraction=0.05,pad=0.1)
Note: See TracChangeset for help on using the changeset viewer.