Downloading Gaia data

This notebook is a simple example of downloading Gaia data, loading it in, and doing simple plots of it.


In [ ]:
!/usr/bin/curl -OJ https://girder.hub.yt/api/v1/file/57fcf27bb8805f000164ab40/download

In [ ]:
import h5py
import numpy as np
import matplotlib.pyplot as plt

In [ ]:
data = {}
with h5py.File("gaia_validp.h5") as f:
    for k in f:
        data[k] = f[k][:]

In [ ]:
print(data.keys())

In [ ]: