Notebook --- title: "Transform and Select" teaching: 3000 exercises: 0 questions: - "How do we move the computation to the data?" objectives: - "Transform proper motions from one frame to another." - "Compute the convex hull of a set of points." - "Write an ADQL query that selects based on proper motion." - "Save data in CSV format." keypoints: - "When possible, 'move the computation to the data'; that is, do as much of the work as possible on the database server before downloading the data." - "For most applications, saving data in FITS or HDF5 is better than CSV. FITS and HDF5 are binary formats, so the files are usually smaller, and they store metadata, so you don't lose anything when you read the file back." - "On the other hand, CSV is a 'least common denominator' format; that is, it can be read by practically any application that works with data." --- {% include links.md %}