Skip to content

Instantly share code, notes, and snippets.

@mmmatthew
mmmatthew / dd2dms.py
Created June 23, 2018 08:45
Python function for converting decimal degrees to DMS
# Helper function for converting decimal degrees to DMS (source: http://rextester.com/BRMA94677)
def dd2dms(decimaldegree, direction='x'):
if type(decimaldegree) != 'float':
try:
decimaldegree = float(decimaldegree)
except:
print ('\nERROR: Could not convert %s to float.'%(type(decimaldegree)))
return 0
if decimaldegree < 0:
decimaldegree = -decimaldegree
@mmmatthew
mmmatthew / README.md
Created February 4, 2016 15:20
Best-First Search
@mmmatthew
mmmatthew / README.md
Last active December 22, 2015 12:05
SuperSlider
@mmmatthew
mmmatthew / README.md
Last active September 17, 2015 13:08
Multi-Foci Force Layout
@mmmatthew
mmmatthew / README.md
Last active September 10, 2015 12:15
Cumulative rain plot

Dynamic Cumulative Distribution Plot

Answers the question:

How much has it rained since ##

Where you choose the ##