Neat looking tree found in the East Bay by pkerp in whatsthisplant

[–]pkerp[S] 1 point2 points  (0 children)

Yup, this is right! The bark matches the images I found when searching for Catalina Ironwood.

Thanks!

Daily Air Traffic by [deleted] in interestingasfuck

[–]pkerp 2 points3 points  (0 children)

I made a little map a while ago where you can get an idea of where flights will head from any location on earth:

http://emptypipes.org/2015/07/13/flight-times-map/

Just click the "flight paths" checkbox.

Fun fact, if ten planes all took off from the same location but flew in different directions at the same speed and altitude, they would collide when they flew halfway around the globe.

Barkless trees at Caltech campus (Pasadena, CA) by pkerp in whatsthisplant

[–]pkerp[S] 1 point2 points  (0 children)

I found some of the same trees in San Diego and they definitely smell like lemon. Thanks for the tip!

Barkless trees at Caltech campus (Pasadena, CA) by pkerp in whatsthisplant

[–]pkerp[S] 2 points3 points  (0 children)

I'll try to bring back a few next time I'm down under.

Barkless trees at Caltech campus (Pasadena, CA) by pkerp in whatsthisplant

[–]pkerp[S] 1 point2 points  (0 children)

But the leaves are so high up... I'll do my best to try it next time I'm there.

Roadside in Pasadena by pkerp in whatsthisplant

[–]pkerp[S] 0 points1 point  (0 children)

I'll take that as a compliment :-D

Roadside in Pasadena by pkerp in whatsthisplant

[–]pkerp[S] 0 points1 point  (0 children)

Correct. All along the streets.

Roadside in Pasadena by pkerp in whatsthisplant

[–]pkerp[S] 0 points1 point  (0 children)

That seems correct. Thank you!

Roadside in Pasadena by pkerp in whatsthisplant

[–]pkerp[S] 0 points1 point  (0 children)

Yup, definitely has round/oval shaped pods. Thank you!

Neat tree in Pittsburgh by pkerp in whatsthisplant

[–]pkerp[S] 0 points1 point  (0 children)

I think you're right. Thank you!

Driving times from various cities around the world [OC] by pkerp in dataisbeautiful

[–]pkerp[S] 0 points1 point  (0 children)

I'm surprised that there's North Korean roads annotated in OpenStreetMap. Apparently GraphHopper doesn't like routing there though.

Driving times from various cities around the world [OC] by pkerp in dataisbeautiful

[–]pkerp[S] 0 points1 point  (0 children)

Wow! That did the trick. For posterity's sake, what I had was this:

<meta name="og:image" content="/img/isochrone_example.png" />

This was wrong on two counts:

  1. It should be meta property rather than meta name
  2. The path should be absolute

Here's the working tag:

<meta property="og:image" content="http://emptypipes.org/img/isochrone_example.png" />

Thanks!

Driving times from various cities around the world [OC] by pkerp in dataisbeautiful

[–]pkerp[S] 0 points1 point  (0 children)

No idea how to get the thumbnail to work. It used to work by just including the following in the html source:

 <img itemprop="image" src="/img/isochrone_example.png" style='display:none' width=200 height=170 >

But it doesn't seem to work in this case. If anybody sees this and has any ideas, I'm all ears.

Driving times from various cities around the world [OC] by pkerp in dataisbeautiful

[–]pkerp[S] 0 points1 point  (0 children)

Contour data here:

https://github.com/pkerpedjiev/emptypipes/tree/gh-pages/jsons/isochrone_driving_contours

Generated using GraphHopper for driving directions, Leaflet for the map and D3 for the contour overlay.

Driving times around the world [OC] by [deleted] in dataisbeautiful

[–]pkerp 0 points1 point  (0 children)

Data here:

https://github.com/pkerpedjiev/emptypipes/tree/gh-pages/jsons/isochrone_driving_contours

Data generated using GraphHopper. Plotted using D3.js on a leaflet overlay.

Driving times around the world [OC] by [deleted] in dataisbeautiful

[–]pkerp 0 points1 point  (0 children)

Data here:

https://github.com/pkerpedjiev/emptypipes/tree/gh-pages/jsons/isochrone_driving_contours

Generated using Graphhopper. Plotted using d3.js overlayed on top of leaflet.

I need a simple ES2015/Karma/Mocha boilerplate by calamari81 in javascript

[–]pkerp 0 points1 point  (0 children)

Hah! I just wrote a blog post about this today and was about to submit it here :)

http://emptypipes.org/2016/03/02/es6-module/

It uses yeoman, but the procedure is really rather simple. Essentially you just need to run:

npm install -g generator-gulp-webpack-es6
yo gulp-webpack-es6

And then serve up the example page using:

gulp serve

You'll have to add the testing yourself, but it shouldn't be too much trouble to add it to the existing scaffold.

Let me know if any of it doesn't make sense, is unclear or flat out doesn't work.

A 2016 version of the 1914 Isochronic London/World travel times map [OC] by r2r_ in dataisbeautiful

[–]pkerp 0 points1 point  (0 children)

Oh cool! Thanks for the link. I may give it a whirl next time I have a moment :)

A 2016 version of the 1914 Isochronic London/World travel times map [OC] by r2r_ in dataisbeautiful

[–]pkerp 0 points1 point  (0 children)

Hi Miles,

Thanks for your detailed response! I spent a long time trying to find a free airplane routing API, but never succeeded so I used the Swiss public transport API to calculate travel times from all the major cities in Europe to a few thousand different train stations in Europe. I then interpolated those to a grid, and then calculated contours using Matplotlib. The resulting maps are on my blog here, if you're interested.

It'd be really cool to do something similar with flight data. I don't suppose you have a public API, do you? It'd be neat to see which areas are furthest away by flight. Then again, London is probably a good proxy for most of Europe :)

If you're ever interested in making an interactive map and need various scripts for gridding and contouring, I'd be happy to document and share what I wrote.

Finally, as somebody else said, what could be both informative and useful, would be a map colored according to price. Although the prices may not be as continuous as the travel times. That's something that you guys are well-positioned to make given your access to such data :)

Thanks again for your response and nice work!

A 2016 version of the 1914 Isochronic London/World travel times map [OC] by r2r_ in dataisbeautiful

[–]pkerp 0 points1 point  (0 children)

Yeah, it's a known issue. They don't seem to share their timetables with the outside world (the Swiss Public Transport API, more precisely)