Skip to content

Instantly share code, notes, and snippets.

View godber's full-sized avatar
😺

Austin Godber godber

😺
View GitHub Profile
@godber
godber / w7asu-0-aprs-decoded.txt
Created April 25, 2015 23:29
Sample parsing APRS Packets with Python
2015-04-25 09:09:18 MST, 309
2015-04-25 09:11:17 MST, 1089
2015-04-25 09:13:16 MST, 1968
2015-04-25 09:15:16 MST, 2855
2015-04-25 09:17:16 MST, 3710
2015-04-25 09:19:16 MST, 4588
2015-04-25 09:21:15 MST, 5432
2015-04-25 09:23:15 MST, 6317
2015-04-25 09:25:15 MST, 7226
2015-04-25 09:27:14 MST, 8148
@godber
godber / planetaryimage_example_1
Last active August 29, 2015 14:22
Using PlanetaryImage
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#Testing out PlanetaryImage"
]
},
{
@godber
godber / Test_All.ipynb
Created June 14, 2015 00:40
Test Lots of Planetary Data Types
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@godber
godber / mission_data.json
Last active August 29, 2015 14:23
JSON data file with names of planetary data.
{
"0044ML0205000000E1_DXXX.img": {
"url": "http://"
},
"0778ML0033700000400205E01_XXXX.LBL": {
"url": "http://",
"datafile": "0778ML0033700000400205E01_XXXX.LBL",
"skip": "True"
},
"0778ML0033700000400205I01_XXXX.LBL": {
import os
from glob import glob
def file_dir_glob_list(inlist=None):
"""Given a list of files, directories or globs, returns a fully expanded
list of files
"""
file_list = []
if inlist:
@godber
godber / dtype_ex1.py
Last active August 29, 2015 14:26
Creating an ndarray with a given dtype.
import numpy as np
dt = np.dtype([
('time', [('min', int), ('sec', int)]),
('temp', float)
])
# create array with dtype
x = np.zeros((5,5), dtype=dt)
@godber
godber / RASPI_SSTV_README.md
Last active March 30, 2019 01:13
RaspberryPi Image Acquire Encode and transmit as SSTV

This is what I did to get the attached script, imgxmit.py, to work on raspbian

Make sure raspberry pi camera is enabled:

raspi_config

Installed system level dependencies

@godber
godber / ayop.md
Last active December 17, 2016 23:08
Austin's Year of Projects

Austin's Year of Projects

  • SDR
    • Airplane tracking - ADS-B antenna and decode
    • WX Sat receive and decode
    • Wireless thermometer network
  • Ham Radio
    • Arduino TNC (Mobilinkd)
    • Add GPS to Arduino TNC
  • AMSAT Antenna build
@godber
godber / osx-10.11-hombrew-gmat.patch
Created December 28, 2015 15:26
Patch to GMAT for OS X 10.11 using homebrewed dependencies.
From 1218660a7528a137e26b5fe38e58fb897f54f7e7 Mon Sep 17 00:00:00 2001
From: Austin Godber <[email protected]>
Date: Fri, 25 Dec 2015 13:36:10 -0700
Subject: [PATCH 1/2] trying just cmake variables
---
build/build.sh | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/build/build.sh b/build/build.sh