Index: trunk/UTIL/PYTHON/planetoplot_v2/pp.py
===================================================================
--- trunk/UTIL/PYTHON/planetoplot_v2/pp.py	(revision 960)
+++ trunk/UTIL/PYTHON/planetoplot_v2/pp.py	(revision 963)
@@ -70,4 +70,6 @@
 parser.add_option('-S','--superpose',action='store_true',dest='superpose',default=False,help="[1D] use same axis for all plots")
 parser.add_option('-E','--label',action='append',dest='label',type="string",default=None,help="[1D] label for line")
+parser.add_option('--xcoeff',action='append',dest='xcoeff',type="float",default=None,help="[1D] multiply x axis")
+parser.add_option('--ycoeff',action='append',dest='ycoeff',type="float",default=None,help="[1D] multiply y axis")
 # -- 2D plot
 parser.add_option('-C','--colorb',action='append',dest='colorb',type="string",default=None,help="[2D] colormap: http://micropore.files.wordpress.com/2010/06/colormaps.png")
@@ -127,4 +129,7 @@
 user.folder = opt.folder
 user.out = opt.out
+# if user wants to give a name, we drop the indication of date
+if opt.filename != "myplot":
+    user.includedate = False
 # define plot
 user.defineplot()
Index: trunk/UTIL/PYTHON/planetoplot_v2/ppclass.py
===================================================================
--- trunk/UTIL/PYTHON/planetoplot_v2/ppclass.py	(revision 960)
+++ trunk/UTIL/PYTHON/planetoplot_v2/ppclass.py	(revision 963)
@@ -1099,4 +1099,15 @@
                 try: self.p[iii].vmax = opt.vmax[0]
                 except: pass
+            ###
+            try: self.p[iii].xcoeff = opt.xcoeff[iii]
+            except:
+                try: self.p[iii].xcoeff = opt.xcoeff[0]
+                except: pass
+            ###
+            try: self.p[iii].ycoeff = opt.ycoeff[iii]
+            except:
+                try: self.p[iii].ycoeff = opt.ycoeff[0]
+                except: pass
+
 
 ##########################################################
