Skip to content

Instantly share code, notes, and snippets.

View agnes1's full-sized avatar

Agnes Clarke agnes1

View GitHub Profile
solution_id designation source_id random_index ref_epoch ra ra_error dec dec_error parallax parallax_error parallax_over_error pmra pmra_error pmdec pmdec_error ra_dec_corr ra_parallax_corr ra_pmra_corr ra_pmdec_corr dec_parallax_corr dec_pmra_corr dec_pmdec_corr parallax_pmra_corr parallax_pmdec_corr pmra_pmdec_corr astrometric_n_obs_al astrometric_n_obs_ac astrometric_n_good_obs_al astrometric_n_bad_obs_al astrometric_gof_al astrometric_chi2_al astrometric_excess_noise astrometric_excess_noise_sig astrometric_params_solved astrometric_primary_flag astrometric_weight_al astrometric_pseudo_colour astrometric_pseudo_colour_error mean_varpi_factor_al astrometric_matched_observations visibility_periods_used astrometric_sigma5d_max frame_rotator_object_type matched_observations duplicated_source phot_g_n_obs phot_g_mean_flux phot_g_mean_flux_error phot_g_mean_flux_over_error phot_g_mean_mag phot_bp_n_obs phot_bp_mean_flux phot_bp_mean_flux_error phot_bp_mean_flux_over_error phot_bp_mean_mag phot_rp_n_obs phot_rp_
@agnes1
agnes1 / GaiaDownloada.java
Last active May 13, 2018 11:20
Beyond Proxima Star System Generator
package com.beyondproxima;
import java.io.*;
import java.net.URL;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
import java.util.zip.GZIPInputStream;
/**
* downloads all csv from http://cdn.gea.esac.esa.int/Gaia/gdr2/gaia_source/csv/
@agnes1
agnes1 / Model.java
Created September 21, 2015 22:28
Draw assemblies of polygons. Supports nudge shape, nudge color, copy-paste, randomize verteces, randomize color, undo, redo, rotate, shrink, grow, and copy-paste color.
package com.clarke.agnes.polyperfect;
import org.treeml.Parser;
import java.io.Reader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;
@agnes1
agnes1 / Dependency.java
Last active February 23, 2018 12:17
TreeML Parser
package org.treeml;
import java.io.IOException;
import java.util.*;
import java.util.logging.Logger;
/**
* Evaluates that a document (the referrer) makes references existing values in another document
* or group of documents (the source).
* Created by Ags on 6/25/2016.
package com.clarke.agnes.experiments;
import java.util.ArrayList;
import java.util.List;
/**
* Calculates the vignetting caused by the size of the Newt secondary and the f ratio.
* Units are mm.
* Created by Ags on 5/12/2015.
*/