Python based database for CARMA EDGE
Project description
edge_pydb
Python-based database for CARMA EDGE. This package requires Python 3.
The EDGE database has several components:
-
Zero-dimensional tables (one value per galaxy), found in
dat_glob
. -
One-dimensional tables (e.g. radial profiles or spectra), found in
dat_prof
anddat_spec
. -
Downsampled 2D or 3D images, saved as HDF5 binary tables in the
img_
directories.
Installation
Install the package directly from PyPI (https://pypi.org/project/edge-pydb/) using
pip install --user edge_pydb
or, if you prefer to keep the latest source code handy, by cloning this Github repository and running
pip install --user .
in the directory containing setup.py
.
The --user
flag ensures the package is not installed in your system-wide Python directories, which you probably don't have write access to. The package tries to save and update a configuration file _config.json
, so installation in your user area is recommended.
If you have access to the protected archive (not on Github), you should also obtain the team_files.py
script from Tony which will download and install the additional tables into the appropriate locations. You can run this script in a shell or iPython environment (but should avoid doing so in the same directory as setup.py
). Currently the Github repository only includes HDF5 files for one galaxy, for testing purposes.
A demo_notebk
folder provides examples of accessing database values from a Jupyter notebook.
Basic Usage
from edge_pydb import EdgeTable
EdgeTable('list')
- makes a listing of the available files
ctrpos = EdgeTable('edge_coflux_smo7.csv')
- loads a CSV file.
ctrpos
can now be treated like an astropy table.
ctrpos = EdgeTable('edge_coflux_smo7.csv', cols=['Name', 'coRactr_smo7', 'coDectr_smo7'])
- loads the specified columns only from the CSV file
leda = EdgeTable('edge_leda.csv', cols=['Name', 'ledaD25', 'ledaPA', 'ledaIncl'])
ctrpos.join(leda)
- will merge a sub-table from
edge_leda.csv
intoctrpos
comom = EdgeTable('NGC4047.comom_smo7.hdf5', path='smo')
- loads an HDF5 file. The path must be given, otherwise a listing of available paths is provided.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file edge_pydb-1.1.2.tar.gz
.
File metadata
- Download URL: edge_pydb-1.1.2.tar.gz
- Upload date:
- Size: 8.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8cf20ec4afd0e695bcbc1713b33b33adaaaa6a0d7f01871e106e1e17b05480d |
|
MD5 | 2508fc8ededae324c97835f9de8d86ee |
|
BLAKE2b-256 | 63145d3c1f0cb64e0d6a3425c390f55a69bac0a4a5d2b85620310ef692ddbe5a |
File details
Details for the file edge_pydb-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: edge_pydb-1.1.2-py3-none-any.whl
- Upload date:
- Size: 7.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd23cfd1958bb4a819390c7be78569665c19265d7032aa50cf4fd4c4bcb7aeb3 |
|
MD5 | 4992726736144454e72cb332e3af7343 |
|
BLAKE2b-256 | 1a14f5cd8d72b1da4f9ae8be3b3691179785b083d515eb759307350e909efdb3 |