I am seeing extremely slow processing times after a Postgres upgrade from 9.5 to 9.6 related to queries Osmosis (the command line Java application for processing OpenStreetMap data). Specifically syncing a local osm database with the master osm repo…
Intro
I downloaded and extracted the OpenStreetMap Source File (See here). I have a 400GB XML-sourcefile now, and i would like to (1) insert the data in a MySQL Table OR (2) export this to an SQL file, doesn't matter.
What I already did / tried
I…
I'm trying to set up Nominatim database for address geocoding. Database would be used by komoot's Photon, but I guess that's not so important info.
The problem is that the osm xml/pbf files I have contain not just the addresses, but the whole bunch…
I need to figure out the process to load multiple OSM files into a Nominatim database. I have everything setup and can load a single file with no issues.
Basically what I'm trying to do is load some of the GeoFabrik OSM files for only a part of…
I am using osmosis 0.42 and PostGIS 2.0.1 and I'm trying to export some postGIS tables to .OSM xml files.
I am using the --read-pgsql command to read from postgis (instead of --read-apidb as it throws an error while connecting to the DB…
I edited an .osm file and a style file (osmarender.xml) some time ago and included it in an Android project (using osmosis and the Mapsforge library). Works fine and looks good. Now I would like to reuse these files in a web project using OpenLayers…
I am trying to run the osmar package on my windows 10, R 3.4.2, and have correctly installed osmosis. However when I try to run the code:
>library("osmar")
>
>src <- osmsource_osmosis(file = "c:/users/ben_c/Documents/FYP/FYP_NL_Map/muenchen.osm",…
I want to filter PBF file for OpenStreetMap by highways. For example highways = residential. I'm novice in OpenStreetMap. I read some info and start to use these tools to get results, they are osmfilter, osmconvert, osmosis
Stages:
1) I convert…
I want to get all nodes, ways and relations containing certain tags and the output file must also contain the dependent ways and nodes.
So for example I want to search for all relations with amenities and get not only the relations itself but also…
I managed to download a planet file from OSM, and converted it to o5m format with osmconvert, and additional deleted all of the author information from it, to keep the file size smaller. I am trying to fetch every POI from this database from the…
I want to do a navigation application using the OSM data files ( pbf files ).
I want to use the pbf format in my java application.
I was looking for a way to access and read the pbf files, I found that it can be accessed via the osmosis library.…
Following this guide (https://code.google.com/p/mapsforge/wiki/GettingStartedMapWriter#Examples), I can create now maps in format .map to be used with android mapsforge libraries.
The question is: is possible to create custom maps with osmosis and…
I know how to extract a node out of the OSM planet file with osmosis.
osmosis --read-pbf file=h:/poi/planet-latest.osm.pbf --node-key-value
keyValueList="shop.chocolate" --write-xml H:/poi/todo/chocolateshop.xml
But what if I want to extract an…
I try to locate if a point, with its latitude and longitude coordinates, is into a city which coordinates are in a geom object or in a bounding box in Osmosis.
I do this because I want to download a piece map in my Android application that…