Loading Generic Array Data¶
Even if your data is not strictly related to fields commonly used in astrophysical codes or your code is not supported yet, you can still feed it to yt to use its advanced visualization and analysis facilities. The only requirement is that your data can be represented as three-dimensional NumPy arrays with a consistent grid structure. What follows are some common examples of loading in generic array data that you may find useful.
Generic Unigrid Data¶
The simplest case is that of a single grid of data spanning the domain, with one or more fields. The data could be generated from a variety of sources; we'll just give three common examples:
Data generated "on-the-fly"¶
The most common example is that of data that is generated in memory from the currently running script or notebook.
import yt
import numpy as np
In this example, we'll just create a 3-D array of random floating-point data using NumPy:
arr = np.random.random(size=(64,64,64))
To load this data into yt, we need associate it with a field. The data
dictionary consists of one or more fields, each consisting of a tuple of a NumPy array and a unit string. Then, we can call load_uniform_grid
:
data = dict(density = (arr, "g/cm**3"))
bbox = np.array([[-1.5, 1.5], [-1.5, 1.5], [-1.5, 1.5]])
ds = yt.load_uniform_grid(data, arr.shape, length_unit="Mpc", bbox=bbox, nprocs=64)
load_uniform_grid
takes the following arguments and optional keywords:
data
: This is a dict of numpy arrays, where the keys are the field namesdomain_dimensions
: The domain dimensions of the unigridlength_unit
: The unit that corresponds tocode_length
, can be a string, tuple, or floating-point numberbbox
: Size of computational domain in units ofcode_length
nprocs
: If greater than 1, will create this number of subarrays out of datasim_time
: The simulation time in secondsmass_unit
: The unit that corresponds tocode_mass
, can be a string, tuple, or floating-point numbertime_unit
: The unit that corresponds tocode_time
, can be a string, tuple, or floating-point numbervelocity_unit
: The unit that corresponds tocode_velocity
magnetic_unit
: The unit that corresponds tocode_magnetic
, i.e. the internal units used to represent magnetic field strengths.periodicity
: A tuple of booleans that determines whether the data will be treated as periodic along each axis
This example creates a yt-native dataset ds
that will treat your array as a
density field in cubic domain of 3 Mpc edge size and simultaneously divide the
domain into nprocs
= 64 chunks, so that you can take advantage
of the underlying parallelism.
The optional unit keyword arguments allow for the default units of the dataset to be set. They can be:
- A string, e.g.
length_unit="Mpc"
- A tuple, e.g.
mass_unit=(1.0e14, "Msun")
- A floating-point value, e.g.
time_unit=3.1557e13
In the latter case, the unit is assumed to be cgs.
The resulting ds
functions exactly like a dataset like any other yt can handle--it can be sliced, and we can show the grid boundaries:
slc = yt.SlicePlot(ds, "z", ("gas", "density"))
slc.set_cmap(("gas", "density"), "Blues")
slc.annotate_grids(cmap=None)
slc.show()
Particle fields are detected as one-dimensional fields. Particle fields are then added as one-dimensional arrays in a similar manner as the three-dimensional grid fields:
posx_arr = np.random.uniform(low=-1.5, high=1.5, size=10000)
posy_arr = np.random.uniform(low=-1.5, high=1.5, size=10000)
posz_arr = np.random.uniform(low=-1.5, high=1.5, size=10000)
data = dict(density = (np.random.random(size=(64,64,64)), "Msun/kpc**3"),
particle_position_x = (posx_arr, 'code_length'),
particle_position_y = (posy_arr, 'code_length'),
particle_position_z = (posz_arr, 'code_length'))
bbox = np.array([[-1.5, 1.5], [-1.5, 1.5], [-1.5, 1.5]])
ds = yt.load_uniform_grid(data, data["density"][0].shape, length_unit=(1.0, "Mpc"), mass_unit=(1.0,"Msun"),
bbox=bbox, nprocs=4)
In this example only the particle position fields have been assigned. If no particle arrays are supplied, then the number of particles is assumed to be zero. Take a slice, and overlay particle positions:
slc = yt.SlicePlot(ds, "z", ("gas", "density"))
slc.set_cmap(("gas", "density"), "Blues")
slc.annotate_particles(0.25, p_size=12.0, col="Red")
slc.show()
HDF5 data¶
HDF5 is a convenient format to store data. If you have unigrid data stored in an HDF5 file, it is possible to load it into memory and then use load_uniform_grid
to get it into yt:
from os.path import join
import h5py
from yt.config import ytcfg
data_dir = ytcfg.get('yt','test_data_dir')
from yt.utilities.physical_ratios import cm_per_kpc
f = h5py.File(join(data_dir, "UnigridData", "turb_vels.h5"), "r") # Read-only access to the file
The HDF5 file handle's keys correspond to the datasets stored in the file:
print (f.keys())
We need to add some unit information. It may be stored in the file somewhere, or we may know it from another source. In this case, the units are simply cgs:
units = ["gauss","gauss","gauss", "g/cm**3", "erg/cm**3", "K",
"cm/s", "cm/s", "cm/s", "cm/s", "cm/s", "cm/s"]
We can iterate over the items in the file handle and the units to get the data into a dictionary, which we will then load:
data = {k:(v.value,u) for (k,v), u in zip(f.items(),units)}
bbox = np.array([[-0.5, 0.5], [-0.5, 0.5], [-0.5, 0.5]])
ds = yt.load_uniform_grid(data, data["Density"][0].shape, length_unit=250.*cm_per_kpc, bbox=bbox, nprocs=8,
periodicity=(False,False,False))
In this case, the data came from a simulation which was 250 kpc on a side. An example projection of two fields:
prj = yt.ProjectionPlot(ds, "z", ["z-velocity", "Temperature", "Bx"], weight_field="Density")
prj.set_log("z-velocity", False)
prj.set_log("Bx", False)
prj.show()
Volume Rendering Loaded Data¶
Volume rendering requires defining a TransferFunction
to map data to color and opacity and a camera
to create a viewport and render the image.
#Find the min and max of the field
mi, ma = ds.all_data().quantities.extrema('Temperature')
#Reduce the dynamic range
mi = mi.value + 1.5e7
ma = ma.value - 0.81e7
Define the properties and size of the camera
viewport:
# Choose a vector representing the viewing direction.
L = [0.5, 0.5, 0.5]
# Define the center of the camera to be the domain center
c = ds.domain_center[0]
# Define the width of the image
W = 1.5*ds.domain_width[0]
# Define the number of pixels to render
Npixels = 512
Create a camera
object and
sc = yt.create_scene(ds, 'Temperature')
dd = ds.all_data()
source = sc[0]
source.log_field = False
tf = yt.ColorTransferFunction((mi, ma), grey_opacity=False)
tf.map_to_colormap(mi, ma, scale=15.0, colormap="cmyt.algae")
source.set_transfer_function(tf)
sc.add_source(source)
cam = sc.add_camera()
cam.width = W
cam.center = c
cam.normal_vector = L
cam.north_vector = [0, 0, 1]
sc.show(sigma_clip=4)
FITS image data¶
import astropy.io.fits as pyfits
# Or, just import pyfits if that's what you have installed
Using pyfits
we can open a FITS file. If we call info()
on the file handle, we can figure out some information about the file's contents. The file in this example has a primary HDU (header-data-unit) with no data, and three HDUs with 3-D data. In this case, the data consists of three velocity fields:
f = pyfits.open(join(data_dir, "UnigridData", "velocity_field_20.fits"))
f.info()
We can put it into a dictionary in the same way as before, but we slice the file handle f
so that we don't use the PrimaryHDU
. hdu.name
is the field name and hdu.data
is the actual data. Each of these velocity fields is in km/s. We can check that we got the correct fields.
data = {}
for hdu in f:
name = hdu.name.lower()
data[name] = (hdu.data,"km/s")
print (data.keys())
The velocity field names in this case are slightly different than the standard yt field names for velocity fields, so we will reassign the field names:
data["velocity_x"] = data.pop("x-velocity")
data["velocity_y"] = data.pop("y-velocity")
data["velocity_z"] = data.pop("z-velocity")
Now we load the data into yt. Let's assume that the box size is a Mpc. Since these are velocity fields, we can overlay velocity vectors on slices, just as if we had loaded in data from a supported code.
ds = yt.load_uniform_grid(data, data["velocity_x"][0].shape, length_unit=(1.0,"Mpc"))
slc = yt.SlicePlot(ds, "x", [("gas", "velocity_x"), ("gas", "velocity_y"), ("gas", "velocity_z")])
for ax in "xyz":
slc.set_log(("gas", f"velocity_{ax}"), False)
slc.annotate_velocity()
slc.show()