Index: trunk/MESOSCALE/PLOT/PYTHON/mylib/myplot.py
===================================================================
--- trunk/MESOSCALE/PLOT/PYTHON/mylib/myplot.py	(revision 186)
+++ trunk/MESOSCALE/PLOT/PYTHON/mylib/myplot.py	(revision 187)
@@ -155,8 +155,12 @@
     import  matplotlib.pyplot               as plt
     import  numpy                           as np
-    posx = np.max(x) + np.std(x) / 3.  ## pb pour les domaines globaux ...
-    posy = np.mean(y)
+    #posx = np.max(x) + np.std(x) / 3.  ## pb pour les domaines globaux ...
+    #posy = np.mean(y)
     #posx = np.min(x)
     #posy = np.max(x)
+    #posx = np.max(x) - np.std(x) / 10.
+    #posy = np.max(y) + np.std(y) / 10.
+    posx = np.min(x) - np.std(x) / 10.
+    posy = np.min(y) - np.std(y) / 10.
     u = smooth(u,csmooth)
     v = smooth(v,csmooth)
@@ -172,5 +176,5 @@
     else:                  kcolor=color
     if key: p = plt.quiverkey(q,posx,posy,scale,\
-                   str(int(scale)),coordinates='data',color=kcolor)
+                   str(int(scale)),coordinates='data',color=kcolor,labelpos='S')
     return 
 
