update old pipeline

This commit is contained in:
Noe Brucy
2019-11-13 17:34:04 +01:00
parent ea6f9b6bdd
commit e528363938
2 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -419,7 +419,7 @@ def plot_maps(path, num,
max_v = np.max(np.sqrt(map_vh_red**2 + map_vv_red**2)) max_v = np.max(np.sqrt(map_vh_red**2 + map_vv_red**2))
Q = P.quiver(hh, vv, map_vh_red, map_vv_red, units='width') Q = P.quiver(hh, vv, map_vh_red, map_vv_red, units='width')
P.quiverkey(Q ,0.7,0.95, max_v, r'$'+str(max_v)[0:4]+'$ (code)', labelpos='E', coordinates='figure') P.quiverkey(Q, 0.7, 0.95, max_v, r'$'+str(max_v)[0:4]+'$ (code)', labelpos='E', coordinates='figure')
elif image == 'T': elif image == 'T':
cbar.set_label(r'$T (code)$') cbar.set_label(r'$T (code)$')
+8 -4
View File
@@ -6,12 +6,16 @@ from shutil import copy
import argparse import argparse
import time import time
import numpy as np import numpy as np
import disk_postprocess as dp
import module_extract as me
from functools import reduce from functools import reduce
storage_in = "/home/nbrucy/simus/" from pp_params import *
storage_out = "/home/nbrucy/visus/" from plotter import *
from postprocessor import *
storage_in = '/home/nbrucy/simus/'
storage_out = '/home/nbrucy/visus/'
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()