Live data from Hacker News

What a 600,000-megapixel-wide picture looks like

oddly-even.com

31–40 of 93 posts

Re: What a 600,000-megapixel-wide picture looks like

#31

I know this is evil and you should not do it, but just for the doability, here's a JavaScript that removes the censorings (like http://360gigapixels.com/tokyo-tower-panorama-photo/?v=-154.... ): javascript:$("*").filter(function(){if(this.currentStyle)return this.currentStyle["backgroundImage"]==="url( http://360gigapixels.com/black.png)";else if(window.getComputedStyle)return document.defaultView.getComputedStyle(th…

$('*').filter(function(){if($(this).css('background-image').indexOf('black.png') != -1) return true}).remove();

Re: What a 600,000-megapixel-wide picture looks like

#33

quite a few windows have a red triangle in them, f.e. http://360gigapixels.com/tokyo-tower-panorama-photo/?v=-154.... what do they mean?

Emergency entrances for fire / rescue. You are not allowed to put anything in front of those windows, so that firefighers know they can break those windows to easily gain access to a building. They can then be used to help people escape, or get more firefighers into the building.

Re: What a 600,000-megapixel-wide picture looks like

#34

I know this is evil and you should not do it, but just for the doability, here's a JavaScript that removes the censorings (like http://360gigapixels.com/tokyo-tower-panorama-photo/?v=-154.... ): javascript:$("*").filter(function(){if(this.currentStyle)return this.currentStyle["backgroundImage"]==="url( http://360gigapixels.com/black.png)";else if(window.getComputedStyle)return document.defaultView.getComputedStyle(th…

$('*').filter(function(){if($(this).css('background-image').indexOf('black.png') != -1) return true}).remove();

I used native functions (for the styles) since they performed much faster in other projects where there were many DOM elements.

Re: What a 600,000-megapixel-wide picture looks like

#35

I know this is evil and you should not do it, but just for the doability, here's a JavaScript that removes the censorings (like http://360gigapixels.com/tokyo-tower-panorama-photo/?v=-154.... ): javascript:$("*").filter(function(){if(this.currentStyle)return this.currentStyle["backgroundImage"]==="url( http://360gigapixels.com/black.png)";else if(window.getComputedStyle)return document.defaultView.getComputedStyle(th…

Oh and btw, they even show us where the censored parts are: http://360gigapixels.com/tokyo-tower-panorama-photo/tokyo.xm... (four nodes of type hotspot)

Re: What a 600,000-megapixel-wide picture looks like

#36

A censored hotel bathroom: http://360gigapixels.com/tokyo-tower-panorama-photo/?v=-154....

Censored with a overlay ;)

Good catch right there. Removed the overlay and saw a man washing his hands in a sink, and a woman sleeping.

Re: What a 600,000-megapixel-wide picture looks like

#39

I know this is evil and you should not do it, but just for the doability, here's a JavaScript that removes the censorings (like http://360gigapixels.com/tokyo-tower-panorama-photo/?v=-154.... ): javascript:$("*").filter(function(){if(this.currentStyle)return this.currentStyle["backgroundImage"]==="url( http://360gigapixels.com/black.png)";else if(window.getComputedStyle)return document.defaultView.getComputedStyle(th…

Oh and btw, they even show us where the censored parts are: http://360gigapixels.com/tokyo-tower-panorama-photo/tokyo.xm... (four nodes of type hotspot)

It seems odd they'd take this approach as opposed to manual processing of the output tiles.
Post reply on HN