How to extract the GPS coordinates of pins in open street map?

Viewed 26

I want to extract the latitude and longitude of a set of about 400 pins in a open street map web page. I don't control the page and I don't need to do it more than once. Obviously, those data are public and free to use but I try to find an easy way to get those data instead of doing it manually.

Any idea? Thanks

1 Answers

Checking with the FF inspector you should be able to see the script which contains the array of data starting with something like JSON_ARRAY_locations = [{\"type\":\"Feature\",\"properties\":{\"TITRE\":\"4 EPICES\",\"VILLE\":\"SAINT-PAUL\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[\"55.3225112119793\",\"-20.9788005708745\"]}}, Thus a matter of copy&paste.

Related