This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from dedalus import public as de | |
from dedalus.extras import plot_tools | |
data = np.load('enmean_9900.npy',allow_pickle=True) | |
data = data.item() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import matplotlib.pyplot as plt | |
import matplotlib | |
from matplotlib import dates | |
import pyart | |
import glob | |
import pandas as pd | |
from scipy import ndimage, interpolate | |
import copy | |
import matplotlib.cm as cm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from glue.config import data_factory | |
from glue.core import Data | |
from glue.core.coordinates import Coordinates | |
from astropy import units as u | |
from astropy.wcs.wcsapi import BaseLowLevelWCS | |
import pyart | |
import numpy as np |