summaryrefslogtreecommitdiffstats
path: root/extract_pei.py
blob: 9b82be6d5696bbae5fbf7c48250773ab8278ffc3 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python3
#
# Copyright (c) 2016 Aaron LI
# MIT license
#
# Extract the power excess index (PEI) results.
#
# Created: 2016-04-29
#

import sys
import json
import csv
import argparse
from collections import OrderedDict


def extract_pei(data):
    """
    Extract the power excess index (PEI) results from the "data" dictionary.
    """
    results = OrderedDict([
            ("name",            data["name"]),
            ("obsid",           data["obsid"]),
            ("r500_kpc",        data["r500_kpc"]),
            ("r500_pix",        data["r500_pix"]),
            ("kpc_per_pix",     data["kpc_per_pix"]),
            ("area_total",      data["area_total"]),
            ("area_below",      data["area_below"]),
            ("pei",             data["pei"]),
            ("pei_err",         data["pei_err"]),
    ])
    return results


def main():
    parser = argparse.ArgumentParser(
            description="Extract power excess index (PEI) results")
    parser.add_argument("pei_json", help="json file conatins PEI results")
    args = parser.parse_args()

    pei_data = json.load(open(args.pei_json))
    results = extract_pei(pei_data)

    # output results
    csv_writer = csv.writer(sys.stdout)
    csv_writer.writerow(results.keys())
    csv_writer.writerow(results.values())


if __name__ == "__main__":
    main()