On Thu, Mar 21, 2013 at 7:34 AM, Daniel Kerkow <[email protected]> wrote: > Hi, > I want to use the following python script that extracts the OSM boundaries > and does some additional stuff with them. > > https://github.com/mapbox/osm-boundaries > > This script also calls osmosis, but needs version 0.42. > The Ubuntu repositories don't provide this version. > > How do I exactly install osmosis to be called from system, not from > commandline?
All that python is doing is making a call out to a shell to invoke osmosis. (see line 71) So you should be able to just download the latest osmosis, unpack it and then add the osmosis bin/ directory to your PATH variable before executing that python. Toby _______________________________________________ osmosis-dev mailing list [email protected] http://lists.openstreetmap.org/listinfo/osmosis-dev
