The osmosis tag has no wiki summary.
1
vote
1answer
127 views
How to import Osmosis DB schemas into PostGIS DB
I'm trying to import Osmosis schema into into a PostGIS DB. I followed this article.
I created a DB:
createdb osm_schema
Then I executed the following command:
osmosis --write-pgsql ...
0
votes
0answers
107 views
Merging OSM files with OSMOSIS and import to Postgres with OSM2PGSQL
I have a problem merging and then importing two OSM files.
I downloaded to distinct .osm-files from cloudmade. They are not sharing any geographical attribute (as the first is the country Monaco, the ...
1
vote
1answer
197 views
How to manage the osmosis command line?
This refer to this post : Read Here
I'm in trouble when using osmosis command line to export data from planet-latest.osm.bz2 directly to osm2pgsql using some criteria to select what to transfer.
I ...
1
vote
0answers
82 views
error in data read in OSMembrane osmosis
I am just learning to use OSMembrane, and i created a simple pipeline to read an .osm file and write the same in another file.
But it says error in reading the file. The report is like this and I ...
4
votes
1answer
201 views
Improve database performance for geospatial
I have a database with osm data imported with osmosis tool. I want to search for the nearest POIs from a given point. For this purpose, I perform this query:
select id from nodes
where ...
1
vote
1answer
144 views
How can I split an osm file into separated files with poly files using osmosis?
I have got a country.osm file and I want to split it alongside of admin_level=8. I extracted previously ~3.000 poly files into a separated folder.
I have batch script, that split them, if I give the ...
2
votes
1answer
65 views
osmosis merge: second input file being ignored, output is duplicate of first input file
I am trying to merge some .osm files. After looking at various examples online, I'm still having trouble. The command completes without error and there is an output file. However, the output file ...
1
vote
1answer
122 views
Looking for a template project for OSM data
I have a PostGIS 2 database filled with OSM data for my country via Osmosis. Is there perhaps a template/project (!styling) for QGIS i could download, where i would simply change the provider of data ...
4
votes
3answers
3k views
Select bounding box using postgis
I want to create a query to select all ways and their nodes that exist within a bounding box using postGIS. The bounding box shall includes all details as osmosis "--bounding-box" command will ...
6
votes
3answers
709 views
Large Open Street Map OSM file to Shapefile. Is there any hope for 32-bit FME?
I have a large OSM XML file (around 8 GB) that I was hoping to process in FME. I have a workbench that I previously used to process smaller files (500 MB) into feature type-specific Shapefiles (e.g. ...
1
vote
1answer
106 views
How to test if Osmosis is installed on openSuse?
update; thanks to the answer i have done some more
i teste like you recomended;
linux-wyee:/home/martin/gis/test/test2/a_repo # :~> cnf osmosis
linux-wyee:/home/martin/gis/test/test2/a_repo # ...
1
vote
0answers
173 views
OSM Database created: now what happens?
I imported an OSM file into a Postgres DB using the Osmosis tool. Now, I need to extract some data but I can't find any schema description (I'm really a newbie in GIS). Where can I find it? Do you ...
1
vote
2answers
1k views
How to filter OSM files based on tags using Osmosis?
I am working with .osm files and am trying to filter entities based on tags. I need to view only entities containing both source and attribution tags. I used the following to successfully filter all ...