Py2MASS is used for accessing a locally hosted copy of 2MASS PSC/XSC
Project description
======= Py2MASS =======
| Py2MASS is used for accessing a locally hosted copy of 2MASS.
| More information on 2MASS is available at:
http://www.ipac.caltech.edu/2mass/
Full copies of the 2MASS point source catalog (PSC) are large: ~40Gigs
compressed
(The extended source catalog (XSC) is modest by comparison at <800megs.)
Both are available for download from:
::
ftp://ftp.ipac.caltech.edu/pub/2mass/allsky
Note that the PSC contains some sources out of order, so you will need
to reprocess the PSC using the included:
::
py2mass_process_original_psc.py
A typical usage to fetch a region of the catalog is:
::
#!/usr/bin/env python
from py2mass import fetch_2mass_psc_box
ra_range = [281., 281.05] # RA is in degrees
dec_range = [-30.6, -30.55] # Dec is in degrees
stars = fetch_2mass_psc_box(ra_range, dec_range)
from py2mass import fetch_2mass_xsc_box
ra_range = [281., 281.05] # RA is in degrees
dec_range = [-30.6, -30.55] # Dec is in degrees
sources = fetch_2mass_xsc_box(ra_range, dec_range)
Note that in all cases the returned object is a ``pandas.DataFrame``.
A command line script is also installed that allows direct access via,
e.g.:
::
py2mass [psc|xsc] minRA maxRA minDEC maxDEC [pickle]
psc - 2MASS Point Source Catalog xsc - 2MASS Extended Source Catalog
Default output is a nicely formatted text table. Optional keyword
(pickle) will dump a pickle of that table, which can then be read back
in from file within python, e.g.:
import pickle stars = pickle.load(open(filename, 'r'))
========
Originally written 2014-03-28 by Henry Roe (hroe@hroe.me)
| Py2MASS is used for accessing a locally hosted copy of 2MASS.
| More information on 2MASS is available at:
http://www.ipac.caltech.edu/2mass/
Full copies of the 2MASS point source catalog (PSC) are large: ~40Gigs
compressed
(The extended source catalog (XSC) is modest by comparison at <800megs.)
Both are available for download from:
::
ftp://ftp.ipac.caltech.edu/pub/2mass/allsky
Note that the PSC contains some sources out of order, so you will need
to reprocess the PSC using the included:
::
py2mass_process_original_psc.py
A typical usage to fetch a region of the catalog is:
::
#!/usr/bin/env python
from py2mass import fetch_2mass_psc_box
ra_range = [281., 281.05] # RA is in degrees
dec_range = [-30.6, -30.55] # Dec is in degrees
stars = fetch_2mass_psc_box(ra_range, dec_range)
from py2mass import fetch_2mass_xsc_box
ra_range = [281., 281.05] # RA is in degrees
dec_range = [-30.6, -30.55] # Dec is in degrees
sources = fetch_2mass_xsc_box(ra_range, dec_range)
Note that in all cases the returned object is a ``pandas.DataFrame``.
A command line script is also installed that allows direct access via,
e.g.:
::
py2mass [psc|xsc] minRA maxRA minDEC maxDEC [pickle]
psc - 2MASS Point Source Catalog xsc - 2MASS Extended Source Catalog
Default output is a nicely formatted text table. Optional keyword
(pickle) will dump a pickle of that table, which can then be read back
in from file within python, e.g.:
import pickle stars = pickle.load(open(filename, 'r'))
========
Originally written 2014-03-28 by Henry Roe (hroe@hroe.me)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py2mass-0.1.5.tar.gz
(29.1 kB
view details)
Built Distribution
py2mass-0.1.5-py2-none-any.whl
(29.8 kB
view details)
File details
Details for the file py2mass-0.1.5.tar.gz
.
File metadata
- Download URL: py2mass-0.1.5.tar.gz
- Upload date:
- Size: 29.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d233ce1e82d7efae2e50266977f16eaef97ebc7dd752ec48c141c4b1b73ef69 |
|
MD5 | c8be091e85cccf1f4c4ba32ebcf4c241 |
|
BLAKE2b-256 | 2668714a28ffa10a8fee64cf4908d942241e2e809932765545ebf1e5175c7dc0 |
File details
Details for the file py2mass-0.1.5-py2-none-any.whl
.
File metadata
- Download URL: py2mass-0.1.5-py2-none-any.whl
- Upload date:
- Size: 29.8 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03458b3b57c8e945b8d24d4d84f3dd3046a1b1297eaa1eff981b26aaeca795a9 |
|
MD5 | 8b9570a85a3a6c34bfbd9b60d9a36285 |
|
BLAKE2b-256 | d7215d70b2e8002caa61a39a1a01ff5ae35ad3658001dc27c6be9d49fb2c7220 |