NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

I am completly new to OSM, please excuse my dumb questions. I am supposed to animate the freeways in the German state of Hessen in After Effects with the plugin Geolyers. With animate I mean drawing the freeways on the map one after the other. So I need the information as shapes or even better as paths. Ideally in seperate files for each freeway and not one single file.

In geolayers it is very simple to connect two points with a path that follows the actual roads, so the geospatial information seems to be there. So far I haven`t found a way to download the freeways by their names (A49, A7 and so on).

I know that some people use QGIS to download OSM information and export them as KML oder Geojson. The tutorials I found on youtube did not cover how to solve my problem.

Thanks for your help.

asked 28 Jun '21, 10:54

Zupppp's gravatar image

Zupppp
11112
accept rate: 0%


You can use Overpass Turbo to query for the motorways. Either one by one like this:

[out:json][timeout:25];
// fetch area “hassia” to search in
{{geocodeArea:hassia}}->.searchArea;
// gather results
(
  // query part for: “motorway”
  way["highway"="motorway"][ref="A 5"](area.searchArea);
);
// print results
out geom;

or all Hassian ones at once by removing the [ref="A 5"] piece.

I have no idea what format you can use to process the data so you might need to play a bit with the different output formats available from Overpass Turbo.

permanent link

answered 28 Jun '21, 17:06

TZorn's gravatar image

TZorn
12.3k764225
accept rate: 15%

edited 28 Jun '21, 17:07

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×275
×20
×2
×1

question asked: 28 Jun '21, 10:54

question was seen: 1,505 times

last updated: 28 Jun '21, 17:07

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum