From e528363938c7b2b595ee00e56b867f1770a10425 Mon Sep 17 00:00:00 2001 From: Noe Brucy Date: Wed, 13 Nov 2019 17:34:04 +0100 Subject: [PATCH] update old pipeline --- disk_postprocess.py | 2 +- pipeline_disk.py | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/disk_postprocess.py b/disk_postprocess.py index 78e7b70..ae05c7d 100644 --- a/disk_postprocess.py +++ b/disk_postprocess.py @@ -419,7 +419,7 @@ def plot_maps(path, num, 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') - 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': cbar.set_label(r'$T (code)$') diff --git a/pipeline_disk.py b/pipeline_disk.py index c41cd12..d60c99f 100644 --- a/pipeline_disk.py +++ b/pipeline_disk.py @@ -6,12 +6,16 @@ from shutil import copy import argparse import time import numpy as np -import disk_postprocess as dp -import module_extract as me from functools import reduce -storage_in = "/home/nbrucy/simus/" -storage_out = "/home/nbrucy/visus/" +from pp_params import * +from plotter import * +from postprocessor import * + + + +storage_in = '/home/nbrucy/simus/' +storage_out = '/home/nbrucy/visus/' parser = argparse.ArgumentParser()