New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 4559 for trunk/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/std_plot_IceFrac.pro – NEMO

Ignore:
Timestamp:
2014-03-21T10:22:46+01:00 (10 years ago)
Author:
flavoni
Message:

add plot & ts of ice velocity for orca2 idl plots, see ticket #724

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/std_plot_IceFrac.pro

    r4518 r4559  
    3232; 
    3333  title = var+'!C'+std_file1_I 
    34   plt, (Ifra1.arr < 1. ) - 1.E-04, MIN = 0., MAX = 1., INTER = .1, /STRICTFILL, CELL_FILL = 2, format = '(f4.1)' $ 
     34  Ifra1.arr = Ifra1.arr * ( Ifra1.arr gt 0.15 ) 
     35  plt, Ifra1.arr - 1.E-04, MIN = 0., MAX = 1., INTER = .1, /STRICTFILL, CELL_FILL = 2, format = '(f4.1)' $ 
    3536       , small = [1, 2, 1], COAST_THICK = 2, TITLE = title $ 
    3637       , CHARSIZE = 1.05, GLINETHICK = 2., /ORTHO, MAP = map, /PORTRAIT, _extra = ex 
     
    3839  if std_file1_I NE std_file2_I then begin             
    3940    title = title + std_file2_I 
     41    Ifra2.arr = Ifra2.arr * ( Ifra2.arr gt 0.15 ) 
    4042    plt, Ifra1.arr - Ifra2.arr, MIN = -1, MAX = 1, INTER = .1, STYLE = 'so0so', format = '(f4.1)' $ 
    4143         , small = [1, 2, 2], COAST_THICK = 2, CELL_FILL = 2, TITLE = title $ 
Note: See TracChangeset for help on using the changeset viewer.