Skip to content

Instantly share code, notes, and snippets.

@pwldp
pwldp / calc_distance.py
Last active August 29, 2015 14:02
calculate distance between two points on earth, result in meters
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# calculate distance between two points on earth, result in meters
#
# based on: http://stackoverflow.com/questions/4716017/django-how-can-i-find-the-distance-between-two-locations
# check distance at: http://www.distancefromto.net/
#
# Dariusz Pawlak <pawlakdp@gmail.com>
# 2014.06.12
@pwldp
pwldp / load_iou_to_pgsql.py
Created May 19, 2014 10:22
Load mac vendor file oui.txt (from: http://standards.ieee.org/develop/regauth/oui/oui.txt) to PotgreSQL
#!/usr/bin/env python
#
# Scripts download oui.txt from web and load data to PostgreSQL database.
#
# Dariusz Pawlak <pawlakdp@gmail.com>
# 2014.05.16
#
#
import re
import urllib