User:Ojw

From OpenStreetMap Wiki
Jump to navigation Jump to search

About me

Much of a gadget-freak?

Self hosting?

In the computing world, there's a concept of self hosting, where a project becomes good enough to use as a tool for its own continuing development. A programming language might be able to compile itself, an IDE might be used to write its own source code, and a source-control tool might be used to store its own files.

For OpenStreetmap, that point might come when we can use free geodata to plan our journeys. Instead of using google maps or the A-Z to get to an area that we want to map, we'd use something like PDF atlas, or put GPS Drive onto the in-car laptop.

But is that something which can happen? For one thing, more people are concentrating on input than output of OSM data (e.g. no regular Planet.osm). But more importantly, OpenStreetmap surveyors are irresistably drawn to the blank areas of a map, like old-time explorers, where they must find their own route.

A second GPS?

Considering getting a Garmin Legend Cx to use with OSM Map On Garmin. Sod 'em. Have Garmin contributed anything to opengeodata communities?

Bookmarks

My OSM T-shirt (SVG source, shop)

Ideas

Misc

Notes

User:Ojw/bash

To make wind turbine render:

man_made = power_wind

Good getting-started article

import math
def MetersToLatLon( mx, my ):
    "Converts XY point from Spherical Mercator EPSG:900913 to lat/lon in WGS84 Datum"
    originShift = 2 * math.pi * 6378137 / 2.0
    lon = (mx / originShift) * 180.0
    lat = (my / originShift) * 180.0

    lat = 180 / math.pi * (2 * math.atan( math.exp( lat * math.pi / 180.0)) - math.pi / 2.0)
    return lat, lon