Skip to content

Instantly share code, notes, and snippets.

@nerik
Last active September 13, 2019 13:26
Show Gist options
  • Save nerik/f706f5c28405c952bd25 to your computer and use it in GitHub Desktop.
Save nerik/f706f5c28405c952bd25 to your computer and use it in GitHub Desktop.
.DS_Store
data

#1999 : Paris, France

- center: [40.7348, -73.9970]
- zoom: 9

As well as finding time to pick up the Legion d’honneur Award in France.

#2004 : Oslo, Norway

- center: [40.7348, -73.9970]
- zoom: 9

Bowie is hit in the eye by a lollipop while on stage in Oslo, Norway in 2004. Someone once threw a lollipop at Bowie while he was on stage. The stem got stuck in his eye, causing the candy to grotesquely dangle, but Bowie kept playing.

https://www.youtube.com/watch?v=MsfSLzPp1io

http://www.traveler.es/viajes/mundo-traveler/articulos/muere-david-bowie-y-repasamos-seis-lugares-que-marcaron-su-vida/8164

<!doctype><html><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Odyssey.js Slides</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="http://cartodb.github.io/odyssey.js/sandbox/favicon.png">
<link rel="icon" type="image/png" href="http://cartodb.github.io/odyssey.js/sandbox/favicon.png">
<link rel="stylesheet" href="http://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/themes/css/cartodb.css">
<link rel="stylesheet" href="http://cartodb.github.io/odyssey.js/sandbox/css/slides.css">
<style media="screen">
#slides_container {
background-color: rgba(201,77,53,.85);
}
#slides_container a {
color: #2F7AEE;
}
</style>
<script src="http://cartodb.github.io/odyssey.js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<div id="map" style="width: 100%; height: 100%;"></div>
<div id="slides_container" style="display:block;">
<div id="dots"></div>
<div id="slides"></div>
<ul id="navButtons">
<li><a class="prev"></a></li>
<li><a class="next"></a></li>
</ul>
</div>
<div id="credits">
<span class="title" id="title">David Bowie, the traveller</span>
<span class="author"><strong id="author">By CartoDB using</strong> <a href="http://cartodb.github.io/odyssey.js/">Odyssey.js</a><span>
</span></span></div>
<script src="http://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/cartodb.js"></script>
<script src="http://cartodb.github.io/odyssey.js/dist/odyssey.js" charset="UTF-8"></script>
<script>
var resizePID;
function clearResize() {
clearTimeout(resizePID);
resizePID = setTimeout(function() { adjustSlides(); }, 100);
}
if (!window.addEventListener) {
window.attachEvent("resize", function load(event) {
clearResize();
});
} else {
window.addEventListener("resize", function load(event) {
clearResize();
});
}
function adjustSlides() {
var container = document.getElementById("slides_container"),
slide = document.querySelectorAll('.selected_slide')[0];
if (slide) {
if (slide.offsetHeight+169+40+80 >= window.innerHeight) {
container.style.bottom = "80px";
var h = container.offsetHeight;
slide.style.height = h-169+"px";
slide.classList.add("scrolled");
} else {
container.style.bottom = "auto";
container.style.minHeight = "0";
slide.style.height = "auto";
slide.classList.remove("scrolled");
}
}
}
var resizeAction = O.Action(function() {
function imageLoaded() {
counter--;
if (counter === 0) {
adjustSlides();
}
}
var images = $('img');
var counter = images.length;
images.each(function() {
if (this.complete) {
imageLoaded.call( this );
} else {
$(this).one('load', imageLoaded);
}
});
});
function click(el) {
var element = O.Core.getElement(el);
var t = O.Trigger();
// TODO: clean properly
function click() {
t.trigger();
}
if (element) element.onclick = click;
return t;
}
O.Template({
init: function() {
var seq = O.Triggers.Sequential();
var baseurl = this.baseurl = 'http://{s}.api.cartocdn.com/base-light/{z}/{x}/{y}.png';
var map = this.map = L.map('map').setView([0, 0.0], 4);
var basemap = this.basemap = L.tileLayer(baseurl, {
attribution: 'data OSM - map CartoDB'
}).addTo(map);
// enanle keys to move
O.Keys().on('map').left().then(seq.prev, seq)
O.Keys().on('map').right().then(seq.next, seq)
click(document.querySelectorAll('.next')).then(seq.next, seq)
click(document.querySelectorAll('.prev')).then(seq.prev, seq)
var slides = O.Actions.Slides('slides');
var story = O.Story()
this.story = story;
this.seq = seq;
this.slides = slides;
this.progress = O.UI.DotProgress('dots').count(0);
},
update: function(actions) {
var self = this;
if (!actions.length) return;
this.story.clear();
if (this.baseurl && (this.baseurl !== actions.global.baseurl)) {
this.baseurl = actions.global.baseurl || 'http://0.api.cartocdn.com/base-light/{z}/{x}/{y}.png';
this.basemap.setUrl(this.baseurl);
}
if (this.cartoDBLayer && ("http://"+self.cartoDBLayer.options.user_name+".cartodb.com/api/v2/viz/"+self.cartoDBLayer.options.layer_definition.stat_tag+"/viz.json" !== actions.global.vizjson)) {
this.map.removeLayer(this.cartoDBLayer);
this.cartoDBLayer = null;
this.created = false;
}
if (actions.global.vizjson && !this.cartoDBLayer) {
if (!this.created) { // sendCode debounce < vis loader
cdb.vis.Loader.get(actions.global.vizjson, function(vizjson) {
self.map.fitBounds(vizjson.bounds);
cartodb.createLayer(self.map, vizjson)
.done(function(layer) {
self.cartoDBLayer = layer;
var sublayer = layer.getSubLayer(0),
layer_name = layer.layers[0].options.layer_name,
filter = actions.global.cartodb_filter ? " WHERE "+actions.global.cartodb_filter : "";
sublayer.setSQL("SELECT * FROM "+layer_name+filter)
self.map.addLayer(layer);
self._resetActions(actions);
}).on('error', function(err) {
console.log("some error occurred: " + err);
});
});
this.created = true;
}
return;
}
this._resetActions(actions);
},
_resetActions: function(actions) {
// update footer title and author
var title_ = actions.global.title === undefined ? '' : actions.global.title,
author_ = actions.global.author === undefined ? 'Using' : 'By '+actions.global.author+' using';
document.getElementById('title').innerHTML = title_;
document.getElementById('author').innerHTML = author_;
document.title = title_ + " | " + author_ +' Odyssey.js';
var sl = actions;
document.getElementById('slides').innerHTML = ''
this.progress.count(sl.length);
// create new story
for(var i = 0; i < sl.length; ++i) {
var slide = sl[i];
var tmpl = "<div class='slide' style='diplay:none'>";
tmpl += slide.html();
tmpl += "</div>";
document.getElementById('slides').innerHTML += tmpl;
this.progress.step(i).then(this.seq.step(i), this.seq)
var actions = O.Parallel(
this.slides.activate(i),
slide(this),
this.progress.activate(i),
resizeAction
);
actions.on("finish.app", function() {
adjustSlides();
});
this.story.addState(
this.seq.step(i),
actions
)
}
this.story.go(this.seq.current());
},
changeSlide: function(n) {
this.seq.current(n);
}
});
$.get('story.md', function(md) {
// $('#md_template').html(md);
});
</script>
<script id="md_template" type="text/template">```
-title: "David Bowie, the traveller"
-author: "CartoDB"
-baseurl: "https://stamen-tiles-d.a.ssl.fastly.net/toner-lite/{z}/{x}/{y}.png"
-vizjson: "https://nerik.cartodb.com/api/v2/viz/c0a1b734-b920-11e5-97c8-0e5db1731f59/viz.json"
```
#David Bowie, the traveller
```
- center: [51.4657548,-20]
- zoom: 3
```
During his whole life, Bowie sung, acted, painted, fell in love all around the world. And everywhere he has been he left his mark in a big way, as illustrated by the countless tributes made at every corner of the world at his death.
Let's have a tour of some of these places, discovering some less known aspects of the life of the artist.
*Data source: Wikipedia*
#January 8th, 1947: the Brixton house
```
- center: [51.4657548,-0.1208827]
- zoom: 12
```
*40 Stansfield Road, Brixton, UK*
Bowie was born the same day as Elvis Presley, in a house near the border of the south London areas of Brixton and Stockwell.
In 2013, the owner of the house stated he "wasn't impressed". "It’s not the same as having a big star like Amy Winehouse or the Sex Pistols’ homes. They’re much more sensational."
![](http://i1.mirror.co.uk/incoming/article1781365.ece/ALTERNATES/s615b/Former%20home%20of%20David%20Bowie,%2040,%20Stansfield%20Rd,%20Brixton.jpg)
#1951 : Stockwell Infants School
```
- center: [51.4666653,-0.1202262]
- zoom: 12
```
Bowie attended Stockwell Infants School until he was six years old, acquiring a reputation as a gifted and single-minded child—and a defiant brawler.
#1964 : Long hair
```
- center: [51.5188931,-0.1460893]
- zoom: 12
```
*BBC Studios, London, UK*
Bowie founds The Society for the Prevention of Cruelty to Long-haired Men and [gets interviewed about it on the BBC](https://www.youtube.com/embed/m5zxeLwUSdk).
![](bbc.png)
#1969, August 16th: Beckenham Free Festival
```
- center: [51.4027564,-0.0337744]
- zoom: 11
```
*Croydon Road Recreation Ground, Beckenham*
David Bowie helped organise and plays at the Beckenham Free Festival in the Croydon Road Recreation Ground, where the United Kingdom’s first manned airmail flight left from here in 1902.
![](http://www.newsshopper.co.uk/resources/images/3180466.jpg?type=article-full)
#1971 : Ziggy Stardust
```
- center: [51.4725746,-0.01252]
- zoom: 10
```
*Underhill Studios, Blackheath Hill, Greenwich*
Bowie begins working on The Rise and Fall of Ziggy Stardust and the Spiders from Mars album.
![](http://ecx.images-amazon.com/images/I/61qr4i3CGWL.jpg)
#1971 : Lou Reed, Iggy Pop and Andy Warhol
```
- center: [40.6976701,-74.2598662]
- zoom: 8
```
*New York, USA*
In one single week Bowie meets Iggy Pop, Andy Warhol, and Lou Reed. In the summer of 1972 he will produce the first album for Lou Reed (Transformer), and then "Raw Power" by Iggy and The Stooges.
![](http://estaticos.elmundo.es/elmundo/imagenes/2013/06/10/cultura/1370873483_extras_ladillos_1_0.jpg)
#1973 : In an old castle
```
- center: [49.1047347,2.1107969]
- zoom: 10
```
*Château d'Hérouville, Hérouville, France*
During David Bowie's time spent at the château whilst recording Low with Tony Visconti and Brian Eno the three claimed to have felt super-natural, or 'haunting' experiences. Visconti stated:
*There was certainly some strange energy in that Château. On the first day David took one look at the master bedroom and said, 'I’m not sleeping in there!' He took the room next door. The master bedroom had a very dark corner, right next to the window, ironically, that seem to just suck light into it. It was colder in that corner too.*
![](http://static.guim.co.uk/sys-images/Observer/Pix/pictures/2013/8/2/1375482234742/Chateau-Herouville-011.jpg)
#1973: Brel
```
- center: [48.8589507,2.2775172]
- zoom: 11
```
*Paris, France*
As a Jacques Brel admirer, Bowie did many covers of the Jacques Brel, one of the most well known probably being [Amsterdam](https://www.youtube.com/watch?time_continue=4&v=c40VXrQxQlQ), a powerful melancholic crescendo with a rich poetic account of the exploits of sailors on shore leave in Amsterdam.
Sadly Brel didn't reciprocate, refusing to meet Bowie, who nevertheless admired him.
#1974 : Moving to the US
```
- center: [34.0207504,-118.6919208]
- zoom: 9
```
*Los Angeles, CA, United States*
In 1974, Bowie abandons his alter ego Ziggy Stardust and moves to the US in 1974, initially staying in New York City before settling in Los Angeles. Diamond Dogs (1974), parts of which found him heading towards soul and funk, was the product of two distinct ideas: a musical based on a wild future in a post-apocalyptic city, and setting George Orwell's 1984 to music.
![](https://upload.wikimedia.org/wikipedia/en/1/1f/Diamond_dogs.jpg)
#1975 : *Young Americans*
```
- center: [40.0026767,-75.2581172]
- zoom: 9
```
*Philadelphia, PA, United States*
The fruit of the Philadelphia recording sessions was [Young Americans](https://www.youtube.com/watch?v=ydLcs4VrjZQ) (1975). Biographer Christopher Sandford writes, "Over the years, most British rockers had tried, one way or another, to become black-by-extension. Few had succeeded as Bowie did now." The album's sound, which the singer identified as "plastic soul", constituted a radical shift in style that initially alienated many of his UK devotees.
#1975 : *Peter and the Wolf* Philadelphia, PA, United States
```
- center: [40.0026767,-75.2581172]
- zoom: 9
```
*Philadelphia, PA, United States*
Bowie records a version of Prokofiev's *Peter and the Wolf* with the Philadelphia Orchestra. Bowie later said that it was a Christmas present for his son, Duncan Jones, then at 7 years old.
![](https://upload.wikimedia.org/wikipedia/en/thumb/8/88/DavidBowie_Peter%26Wolf_cover.JPG/220px-DavidBowie_Peter%26Wolf_cover.JPG)
#1976 : Bowie the painter
```
- center: [46.4757188,6.8903806]
- zoom: 8
```
*Bloney, Switzerland*
Bowie moved to Switzerland in 1976, purchasing a chalet in the hills to the north of Lake Geneva. In the new environment, his cocaine use decreased and he found time for other pursuits outside his musical career. He devoted more time to his painting, and produced a number of post-modernist pieces.
Bowie became, in the words of biographer Christopher Sandford, "a prolific producer and collector of contemporary art".
Bowie stated : "In Switzerland people leave me alone"
![](https://fromlextolexicon.files.wordpress.com/2013/04/david-bowie.jpg)
#1976 : Moving to Berlin
```
- center: [52.4798495,13.3213383]
- zoom: 9
```
*Hauptstraße 155, Schöneberg, Berlin, Germany*
Before the end of 1976, Bowie's interest in the burgeoning German music scene, as well as health issues, prompted him to move to West Berlin to clean up and revitalise his career. There he was often seen riding a bicycle between his apartment on Hauptstraße in Schöneberg and Hansa Tonstudio, the recording studio he used, located on Köthener Straße in Kreuzberg, near the Berlin Wall.
![](https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Hauptstrasse_155_ganzhaus.JPG/800px-Hauptstrasse_155_ganzhaus.JPG)
#1980 : Crystal Japan
```
- center: [35.496,138.460]
- zoom: 7
```
*[Crystal Japan](https://www.youtube.com/watch?v=Xm2ciX0_UP8)* is an instrumental piece written by David Bowie and released as a single in Japan in 1980. It was recorded in 1979 and used in a Japanese commercial for the sake Crystal Jun Rock, which also featured an appearance by Bowie, although he said at the time that the track was not specifically written for this purpose.
![](https://upload.wikimedia.org/wikipedia/en/3/3c/Crystal_japan_cover.jpg)
#1983 : *China Girl*
```
- center: [-33.7960361,150.6422479]
- zoom: 7
```
*Sydney, Australia*
In Sydney videoclips for *China Girl* and *Let's Dance* are shot. Bowie falls in love with Australian-based New Zealand model Geeling Ng, who'll be starring in *China Girl* videoclip.
![](http://www.bowiedownunder.com/geeling.jpg)
Bowie will be later praised for his support of Aboriginal rights.
#1984 : Indonesia
```
- center: [-2.3740909,99.5910475]
- zoom: 7
```
*[Tumble and Twirl](https://www.youtube.com/watch?v=Uro6Wro1IbU)* recounts Iggy Pop and Bowie's exploits while vacationing in Bali and Java after Bowie's previous tour had ended.
*I've seen the city and I took the next flight for Borneo*
*They say it's pretty, I like the t-shirts in Borneo*
*Some wear Bob Marley others in Playbos or Duvalier*
*Make the last plane come, let me rise through the cloudy above*
*With a book on Borneo*
*Tumble and Twirl* lyrics
#June 1987 : Concert at the Berlin Wall
```
- center: [52.507629,13.1449577]
- zoom: 9
```
*Berlin, Germany*
Bowie returns in Berlin where he lived three years, and plays his hit *Heroes* in front of the Reichstag. Bowie tells the crowd, in German: "We send our wishes to all our friends who are on the other side of the wall.".
This concert is considered to some to have help change history. German Foreign Office stated, the day of his death: "Good-bye, David Bowie. You are now among #Heroes. Thank you for helping to bring down the #wall."
*I, I can remember (I remember)*
*Standing, by the wall (by the wall)*
*And the guns, shot above our heads (over our heads)*
*And we kissed, as though nothing could fall (nothing could fall)*
*And the shame, was on the other side*
*Oh we can beat them, forever and ever*
*Then we could be heroes, just for one day*
#1996 : First internet single ever
```
- center: [0,0]
- zoom: 4
```
*[Telling Lies](https://www.youtube.com/watch?v=dL23xQK_4Ks)* is the first ever downloadable single by a major artist. According to issued press releases, over 300,000 people downloaded the original Internet-only release.
![](http://www.illustrated-db-discography.nl/cdsingle/pictures/telling-lies-ec2.gif)
#1997 Jan 9 : Madison Square Garden concert
```
- center: [40.7505085,-73.9956274]
- zoom: 9
```
*New York, USA*
##"I don't know where I'm going from here, but I promise it won't be boring."
*David Bowie in 1997 at his 50th birthday concert in Madison Square Garden*
#2004 : The lollipop incident
```
- center: [59.9720,10.7203]
- zoom: 7
```
*Oslo, Norway*
Bowie is [hit in the eye by a lollipop](https://www.youtube.com/watch?v=MsfSLzPp1io) while on stage in Oslo, Norway in 2004.
#2006 : Lifetime achievement award
```
- center: [34.0430175,-118.2694428]
- zoom: 7
```
*Staples center, Los Angeles, CA*
The Grammy's give Bowie a lifetime achievement award.
#2016 : Farewell
```
- center: [40.7505085,-73.9956274]
- zoom: 7
```
*New York, USA*
Bowie releases [Blackstar](https://www.youtube.com/watch?v=kszLwBaC4Sw), his "farewell album." He had known about his impending death for 18 months.
![](https://upload.wikimedia.org/wikipedia/en/1/15/Blackstar_album_cover.jpg)</script>
<script type="text/javascript" src="http://fast.fonts.net/jsapi/3af16084-ba56-49ca-b37d-0b49b59e1927.js"></script>
</body></html>
lat lon
51.4657548 -0.1208827
51.4666653 -0.1202262
51.5188931 -0.1460893
51.4027564 -0.0337744
51.4725746 -0.01252
40.6976701 -74.2598662
49.1047347 2.1107969
48.8589507 2.2775172
34.0207504 -118.6919208
40.0026767 -75.2581172
40.0026767 -75.2581172
46.4757188 6.8903806
52.4798495 13.3213383
34.4717987 125.3719351
-33.7960361 150.6422479
-2.3740909 99.5910475
52.507629 13.1449577
40.7505085 -73.9956274
40.7348 -73.9970
40.7348 -73.9970
-title: "David Bowie, the traveller"
-author: "CartoDB"
- vizjson: "https://nerik.cartodb.com/api/v2/viz/c0a1b734-b920-11e5-97c8-0e5db1731f59/viz.json"
-baseurl: "https://stamen-tiles-d.a.ssl.fastly.net/toner-lite/{z}/{x}/{y}.png"

#David Bowie, the traveller

- center: [51.4657548,-20]
- zoom: 3

During his whole life, Bowie sung, acted, painted, fell in love all around the world. And everywhere he has been he left his mark in a big way, as illustrated by the countless tributes made at every corner of the world at his death.

Let's have a tour of some of these places, discovering some less known aspects of the life of the artist.

Data source: Wikipedia

#January 8th, 1947: the Brixton house

- center: [51.4657548,-0.1208827]
- zoom: 12

40 Stansfield Road, Brixton, UK

Bowie was born the same day as Elvis Presley, in a house near the border of the south London areas of Brixton and Stockwell. In 2013, the owner of the house stated he "wasn't impressed". "It’s not the same as having a big star like Amy Winehouse or the Sex Pistols’ homes. They’re much more sensational."

#1951 : Stockwell Infants School

- center: [51.4666653,-0.1202262]
- zoom: 12

Bowie attended Stockwell Infants School until he was six years old, acquiring a reputation as a gifted and single-minded child—and a defiant brawler.

#1964 : Long hair

- center: [51.5188931,-0.1460893]
- zoom: 12

BBC Studios, London, UK

Bowie founds The Society for the Prevention of Cruelty to Long-haired Men and gets interviewed about it on the BBC.

#1969, August 16th: Beckenham Free Festival

- center: [51.4027564,-0.0337744]
- zoom: 11

Croydon Road Recreation Ground, Beckenham David Bowie helped organise and plays at the Beckenham Free Festival in the Croydon Road Recreation Ground, where the United Kingdom’s first manned airmail flight left from here in 1902.

#1971 : Ziggy Stardust

- center: [51.4725746,-0.01252]
- zoom: 10

Underhill Studios, Blackheath Hill, Greenwich

Bowie begins working on The Rise and Fall of Ziggy Stardust and the Spiders from Mars album.

#1971 : Lou Reed, Iggy Pop and Andy Warhol

- center: [40.6976701,-74.2598662]
- zoom: 8

New York, USA

In one single week Bowie meets Iggy Pop, Andy Warhol, and Lou Reed. In the summer of 1972 he will produce the first album for Lou Reed (Transformer), and then "Raw Power" by Iggy and The Stooges.

#1973 : In an old castle

- center: [49.1047347,2.1107969]
- zoom: 10

Château d'Hérouville, Hérouville, France

During David Bowie's time spent at the château whilst recording Low with Tony Visconti and Brian Eno the three claimed to have felt super-natural, or 'haunting' experiences. Visconti stated:

There was certainly some strange energy in that Château. On the first day David took one look at the master bedroom and said, 'I’m not sleeping in there!' He took the room next door. The master bedroom had a very dark corner, right next to the window, ironically, that seem to just suck light into it. It was colder in that corner too.

#1973: Brel

- center: [48.8589507,2.2775172]
- zoom: 11

Paris, France

As a Jacques Brel admirer, Bowie did many covers of the Jacques Brel, one of the most well known probably being Amsterdam, a powerful melancholic crescendo with a rich poetic account of the exploits of sailors on shore leave in Amsterdam.

Sadly Brel didn't reciprocate, refusing to meet Bowie, who nevertheless admired him.

#1974 : Moving to the US

- center: [34.0207504,-118.6919208]
- zoom: 9

Los Angeles, CA, United States

In 1974, Bowie abandons his alter ego Ziggy Stardust and moves to the US in 1974, initially staying in New York City before settling in Los Angeles. Diamond Dogs (1974), parts of which found him heading towards soul and funk, was the product of two distinct ideas: a musical based on a wild future in a post-apocalyptic city, and setting George Orwell's 1984 to music.

#1975 : Young Americans

- center: [40.0026767,-75.2581172]
- zoom: 9

Philadelphia, PA, United States

The fruit of the Philadelphia recording sessions was Young Americans (1975). Biographer Christopher Sandford writes, "Over the years, most British rockers had tried, one way or another, to become black-by-extension. Few had succeeded as Bowie did now." The album's sound, which the singer identified as "plastic soul", constituted a radical shift in style that initially alienated many of his UK devotees.

#1975 : Peter and the Wolf Philadelphia, PA, United States

- center: [40.0026767,-75.2581172]
- zoom: 9

Philadelphia, PA, United States

Bowie records a version of Prokofiev's Peter and the Wolf with the Philadelphia Orchestra. Bowie later said that it was a Christmas present for his son, Duncan Jones, then at 7 years old.

#1976 : Bowie the painter

- center: [46.4757188,6.8903806]
- zoom: 8

Bloney, Switzerland

Bowie moved to Switzerland in 1976, purchasing a chalet in the hills to the north of Lake Geneva. In the new environment, his cocaine use decreased and he found time for other pursuits outside his musical career. He devoted more time to his painting, and produced a number of post-modernist pieces.

Bowie became, in the words of biographer Christopher Sandford, "a prolific producer and collector of contemporary art".

Bowie stated : "In Switzerland people leave me alone"

#1976 : Moving to Berlin

- center: [52.4798495,13.3213383]
- zoom: 9

Hauptstraße 155, Schöneberg, Berlin, Germany

Before the end of 1976, Bowie's interest in the burgeoning German music scene, as well as health issues, prompted him to move to West Berlin to clean up and revitalise his career. There he was often seen riding a bicycle between his apartment on Hauptstraße in Schöneberg and Hansa Tonstudio, the recording studio he used, located on Köthener Straße in Kreuzberg, near the Berlin Wall.

#1980 : Crystal Japan

- center: [35.496,138.460]
- zoom: 7

Crystal Japan is an instrumental piece written by David Bowie and released as a single in Japan in 1980. It was recorded in 1979 and used in a Japanese commercial for the sake Crystal Jun Rock, which also featured an appearance by Bowie, although he said at the time that the track was not specifically written for this purpose.

#1983 : China Girl

- center: [-33.7960361,150.6422479]
- zoom: 7

Sydney, Australia

In Sydney videoclips for China Girl and Let's Dance are shot. Bowie falls in love with Australian-based New Zealand model Geeling Ng, who'll be starring in China Girl videoclip.

Bowie will be later praised for his support of Aboriginal rights.

#1984 : Indonesia

- center: [-2.3740909,99.5910475]
- zoom: 7

Tumble and Twirl recounts Iggy Pop and Bowie's exploits while vacationing in Bali and Java after Bowie's previous tour had ended.

I've seen the city and I took the next flight for Borneo

They say it's pretty, I like the t-shirts in Borneo

Some wear Bob Marley others in Playbos or Duvalier

Make the last plane come, let me rise through the cloudy above

With a book on Borneo

Tumble and Twirl lyrics

#June 1987 : Concert at the Berlin Wall

- center: [52.507629,13.1449577]
- zoom: 9

Berlin, Germany

Bowie returns in Berlin where he lived three years, and plays his hit Heroes in front of the Reichstag. Bowie tells the crowd, in German: "We send our wishes to all our friends who are on the other side of the wall.".

This concert is considered to some to have help change history. German Foreign Office stated, the day of his death: "Good-bye, David Bowie. You are now among #Heroes. Thank you for helping to bring down the #wall."

I, I can remember (I remember)

Standing, by the wall (by the wall)

And the guns, shot above our heads (over our heads)

And we kissed, as though nothing could fall (nothing could fall)

And the shame, was on the other side

Oh we can beat them, forever and ever

Then we could be heroes, just for one day

#1996 : First internet single ever

- center: [0,0]
- zoom: 4

Telling Lies is the first ever downloadable single by a major artist. According to issued press releases, over 300,000 people downloaded the original Internet-only release.

#1997 Jan 9 : Madison Square Garden concert

- center: [40.7505085,-73.9956274]
- zoom: 9

New York, USA

##"I don't know where I'm going from here, but I promise it won't be boring." David Bowie in 1997 at his 50th birthday concert in Madison Square Garden

#2004 : The lollipop incident

- center: [59.9720,10.7203]
- zoom: 7

Oslo, Norway

Bowie is hit in the eye by a lollipop while on stage in Oslo, Norway in 2004.

#2006 : Lifetime achievement award

- center: [34.0430175,-118.2694428]
- zoom: 7

Staples center, Los Angeles, CA

The Grammy's give Bowie a lifetime achievement award.

#2016 : Farewell

- center: [40.7505085,-73.9956274]
- zoom: 7

New York, USA

Bowie releases Blackstar, his "farewell album." He had known about his impending death for 18 months.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment