Paul Osborne

652
Reputation
67 views

Registered User

Name Paul Osborne
Member for 1 year
Seen 2 days ago
Website
Location Minneapolis, MN
Age 23
I am a student and embedded developer. I am competent in C, Java, Python, PHP, and dabble with many other languages and technologies.
Nov
21
comment Favorite 3rd-party Python Libraries?
I definitely agree with the pyserial recommendation. I do embedded work and it is awesome to have a powerful, cross-platform serial library. Now if windows would allow you to select on a file descriptor all would be well with the world.
Nov
21
comment Can this be made more pythonic?
Also, using 'max' as a variable name is discouraged as it covers up the builtin max function.
Nov
15
awarded  Good Question
Oct
23
awarded  Notable Question
Sep
18
comment Reverse Geocoding Without Web Access
Though I wasn't able to use the r-tree python project for my implementation I did use some of the ideas behind r-tree in that I built a simple spatial index using bounding rectangles for each of the states. After determining what bounding boxes the point lay in I used a point-in-polygon test to figure out the rest... works great!
Sep
16
comment Reverse Geocoding Without Web Access
Excellent idea! This may very well be the way to go if you needed to solve this sort of problem on the desktop. Unforunately, and I should have mentioned this, I am running on an embedded platform which does not have support for Postgres (and it cannot be easily ported as it is not embedded linux, though it is posix based). A derivative of the Digi connectport is the platform: digi.com/products/wirelessdropinnetworking/…
Sep
16
awarded  Yearling
Sep
15
asked Reverse Geocoding Without Web Access
Sep
11
awarded  Favorite Question
Jun
18
awarded  Good Answer