This file contains hidden or 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
""" | |
grid_utils | |
---------- | |
Utilities for gridding and ungridding data efficiently in Numpy. | |
""" | |
import numpy as np | |
from scipy.interpolate import griddata |
This file contains hidden or 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
""" | |
# spherical_coords.py | |
Convert between (theta, phi) and (azimuth, elevation) coordinate systems. | |
Author: Danny Price | |
License: MIT | |
## Overview |
This file contains hidden or 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
""" | |
fpga_mmap.py | |
------------ | |
Utilities for reading FPGA data via the memory-mapped /dev/roach/mem file | |
on the ROACH2 filesystem. This file needs to be run from the ROACH2, and | |
is an alternative to reading data via KATCP. This provides access only; | |
you'll need to write your own functions for transferring / storing data. | |
""" |
NewerOlder