Skip to content

Instantly share code, notes, and snippets.

#
# Unit defintions
# 18 May 2001 M-J. Dominus (mjd-perl-units+@plover.com).
# This file is in the PUBLIC DOMAIN.
# All rights abandoned.
#
# If you discover definitions of units that do not appear in this
# file, you are invited to mail them to mjd-perl-units+@plover.com, so
# that I can include them in a future version. Please include the
# date of this file, 18 May 2001, with all such submissions.
using System;
/*
* Simple comparisons between different interpolative formulas for airmass
* Copyright 2020 Dale Ghent <daleg@elemental.org>
*/
public class Program {
public static void Main() {

This past year, we have made some upgrades to the Illig system - primarily the Nitecrawler rotator+focuser and mount maintenance. To further capitalize on these foundational upgrades would be to next take a look at the imaging system to increase the flexibility of the system and to take advantage of recent CMOS sensor developments.

An upgraded imaging system should allow for flexibility in both the individual imaging project and public outreach realms. No single system can accommodate both with perfection, but I think it is possible to get close and allow the Illig system to cover a fair range of interests and object types.

To recap the current Illig configuration, it is a Takahashi TOA-150 triplet refractor, with a native focal length of 1050mm at f/7. It is fitted with a Takahashi 67 1.0x field flattener. This combination creates a corrected field that is circa 92mm in diameter, 106.2mm in back of the flattener. This means we have a 106.2mm gap to fill with equipment between the flattener and where the c

@daleghent
daleghent / tapquery.sh
Last active June 9, 2022 19:20
Scripts for querying the SIMBAD TAP interface
#!/bin/bash
OBJECT=$1
query_tap() {
curl -sL -X POST 'https://simbad.u-strasbg.fr/simbad/sim-tap/sync' \
--form "query=\"${1}\"" \
--form 'format="json"' \
--form 'lang="ADQL"' \
--form 'request="doQuery"'