-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot_map.py
More file actions
40 lines (33 loc) · 1.24 KB
/
plot_map.py
File metadata and controls
40 lines (33 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# SEEK is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# SEEK is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with SEEK. If not, see <http://www.gnu.org/licenses/>.
'''
Created on October 1, 2018
author: Lucas Olivari
'''
import h5py
import matplotlib.pyplot as plt
import numpy as np
import healpy as hp
####################################################################
#### EXAMPLE OF HOW TO HANDLE HDF5 FILES
####################################################################
with h5py.File("./bingo_maps_horn_0.hdf", 'r') as fp:
bingo_map = fp['MAPS'].value
counts = fp['COUNTS'].value
bingo_map[counts==0] = hp.UNSEEN
hp.mollview(bingo_map[0, 0, :])#, cmap="gist_earth")
plt.savefig("map_0.png")
plt.close()
hp.mollview(bingo_map[1, 0, :])#, cmap="gist_earth")
plt.savefig("map_1.png")
plt.close()