Is this a bug, or I am failing to use MAP correctly somehow? In the three examples below, for me the last one has no latitude labels when specifying the 'Geographic' projection. This does not happen with other projections. limits=[20.,-130.,55.,-60.] ; lat and long limits marg=[0.15,0.15,0.1,0.1] ; margins in normalised units Map = MAP('Geographic', LIMIT=limits, FILL_COLOR="steel blue", LINESTYLE='dotted', $ LABEL_POSITION=0, FONT_SIZE=12, MARGIN=marg, ASPECT_RATIO=1.0) m2 = MAPCONTINENTS(/countries, FILL_COLOR="tan") limits=[20.,-130.,55.,-100.] Map = MAP('Geographic', LIMIT=limits, FILL_COLOR="steel blue", LINESTYLE='dotted', $ LABEL_POSITION=0, FONT_SIZE=12, MARGIN=marg, ASPECT_RATIO=1.0) m2 = MAPCONTINENTS(/countries, FILL_COLOR="tan") limits=[30.,-118.,35.,-110.] Map = MAP('Geographic', LIMIT=limits, FILL_COLOR="steel blue", LINESTYLE='dotted', $ LABEL_POSITION=0, FONT_SIZE=12, MARGIN=marg, ASPECT_RATIO=1.0) m2 = MAPCONTINENTS(/countries, FILL_COLOR="tan")
|