notebooks
parent
75e27690ee
commit
707abf262e
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,16 @@
|
||||
|
||||
|
||||
@media screen {
|
||||
|
||||
.pagedjs_pagebox {
|
||||
--pagedjs-baseline: 22px;
|
||||
--pagedjs-baseline-position: 5px;
|
||||
--pagedjs-baseline-color: cyan;
|
||||
background: linear-gradient(transparent 0%, transparent calc(var(--pagedjs-baseline) - 1px), var(--pagedjs-baseline-color) calc(var(--pagedjs-baseline) - 1px), var(--pagedjs-baseline-color) var(--pagedjs-baseline)), transparent;
|
||||
background-size: 100% var(--pagedjs-baseline);
|
||||
background-repeat: repeat-y;
|
||||
background-position-y: var(--pagedjs-baseline-position);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
@media screen {
|
||||
|
||||
.pagedjs_pages {
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.pagedjs_first_page {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.pagedjs_page {
|
||||
margin: 0 auto;
|
||||
margin-top: 10mm;
|
||||
}
|
||||
|
||||
.pagedjs_left_page{
|
||||
width: calc(var(--pagedjs-bleed-left) + var(--pagedjs-pagebox-width) + var(--pagedjs-bleed-left))!important;
|
||||
}
|
||||
|
||||
.pagedjs_left_page .pagedjs_bleed-right .pagedjs_marks-crop{
|
||||
border-color: var(--pagedjs-crop-color);
|
||||
}
|
||||
|
||||
.pagedjs_left_page .pagedjs_bleed-right .pagedjs_marks-middle{
|
||||
width: var(--pagedjs-cross-size)!important;
|
||||
}
|
||||
|
||||
.pagedjs_right_page{
|
||||
left: 0;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
|
||||
/* INTERFACE ------------------------------------------------------------------- */
|
||||
|
||||
/* paged js interface and screen view css */
|
||||
@import "interface/interface.css";
|
||||
|
||||
/* uncomment for recto/verso book : */
|
||||
/* @import "interface/recto-verso.css"; */
|
||||
|
||||
/* uncomment to see the baseline : */
|
||||
/* @import "interface/baseline.css"; */
|
||||
|
||||
@import "interface/header.css";
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,449 @@
|
||||
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/* Document
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the line height in all browsers.
|
||||
* 2. Prevent adjustments of font size after orientation changes in
|
||||
* IE on Windows Phone and in iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
// line-height: 1.15; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/* Sections
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers (opinionated).
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
footer,
|
||||
header,
|
||||
nav,
|
||||
section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
* 1. Add the correct display in IE.
|
||||
*/
|
||||
|
||||
figcaption,
|
||||
figure,
|
||||
main { /* 1 */
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct margin in IE 8.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Remove the gray background on active links in IE 10.
|
||||
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent; /* 1 */
|
||||
-webkit-text-decoration-skip: objects; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font style in Android 4.3-.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct background and color in IE 9-.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background-color: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
*/
|
||||
|
||||
audio,
|
||||
video {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in iOS 4-7.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10-.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Hide the overflow in IE.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change the font styles in all browsers (opinionated).
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: sans-serif; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
||||
* controls in Android 4.
|
||||
* 2. Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
html [type="button"], /* 1 */
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the padding in Firefox.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct display in IE 9-.
|
||||
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
display: inline-block; /* 1 */
|
||||
vertical-align: baseline; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10-.
|
||||
* 2. Remove the padding in IE 10-.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/* Interactive
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Add the correct display in IE 9-.
|
||||
* 1. Add the correct display in Edge, IE, and Firefox.
|
||||
*/
|
||||
|
||||
details, /* 1 */
|
||||
menu {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add the correct display in all browsers.
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/* Scripting
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
*/
|
||||
|
||||
canvas {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE.
|
||||
*/
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hidden
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10-.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,16 @@
|
||||
@media print {
|
||||
|
||||
@page {
|
||||
size: 148mm 210mm;
|
||||
margin-top: 20mm;
|
||||
margin-bottom: 20mm;
|
||||
bleed: 6mm;
|
||||
marks: crop;
|
||||
@bottom-center{
|
||||
content: counter(page);
|
||||
}
|
||||
}
|
||||
|
||||
img { max-width: 100% }
|
||||
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
|
||||
<meta http-equiv="Content-Style-Type" content="text/css" />
|
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
|
||||
|
||||
<!-- Metadata -->
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="" />
|
||||
<meta name="copyright" content="" />
|
||||
|
||||
<!-- Paged.js -->
|
||||
<link rel="stylesheet" type="text/css" href="css/pagedjs/pagedjs.css">
|
||||
<link rel="stylesheet" type="text/css" href="css/reset.css">
|
||||
<script src="js/paged.polyfill.js"></script>
|
||||
<script src="js/handlers.js"></script>
|
||||
|
||||
<!-- Fonts -->
|
||||
<link rel="stylesheet" href="fonts/myFont/stylesheet.css">
|
||||
|
||||
<title>query-light</title>
|
||||
<style>
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
span.underline{text-decoration: underline;}
|
||||
div.column{display: inline-block; vertical-align: top; width: 50%;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
ul.task-list{list-style: none;}
|
||||
</style>
|
||||
<link rel="stylesheet" href="mystyle.css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="stanislav-adziogol-lighthouse">Stanislav-Adziogol Lighthouse</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/9/9a/Adziogol_hyperboloid_Lighthouse_by_Vladimir_Shukhov_1911.jpg" /></p>
|
||||
<h1 id="nividic-lighthouse">Nividic Lighthouse</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/9/91/Ouessant_-_Faro_di_Nividic.JPG" /></p>
|
||||
<h1 id="alte-weser">Alte Weser</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/7/74/AlteWeser_1964.jpg" /></p>
|
||||
<h1 id="borkum-großer-leuchtturm">Borkum Großer Leuchtturm</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/8/8c/Neuer_Leuchtturm.jpg" /></p>
|
||||
<h1 id="pilsum-lighthouse">Pilsum Lighthouse</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/9/97/Pilsumer_Leuchtturm_%281%29.jpg" /></p>
|
||||
<h1 id="ardnamurchan-lighthouse">Ardnamurchan Lighthouse</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/3/35/Ardnamurchan_Lighthouse3.jpg" /></p>
|
||||
<h1 id="hohe-weg-lighthouse">Hohe Weg Lighthouse</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/0/08/Lighthouse_Hoher_Weg_by_low_tide_03.jpg" /></p>
|
||||
<h1 id="knock-lighthouse">Knock lighthouse</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/e/eb/VerkehrszentraleEms.JPG" /></p>
|
||||
<h1 id="hvalnesviti">Hvalnesviti</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/9/9e/Leuchtturm_Hvalnes.jpg" /></p>
|
||||
<h1 id="st-bees-lighthouse">St Bees Lighthouse</h1>
|
||||
<p><img src="https://upload.wikimedia.org/wikipedia/commons/7/75/StBeesLighthouse.jpg" /></p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,10 @@
|
||||
class MyHandler extends Paged.Handler {
|
||||
constructor(chunker, polisher, caller) {
|
||||
super(chunker, polisher, caller);
|
||||
}
|
||||
|
||||
beforeParsed(content) {
|
||||
// console.log(content);
|
||||
}
|
||||
}
|
||||
Paged.registerHandlers(MyHandler);
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
h1 {
|
||||
break-before: page;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
max-height: 200mm;
|
||||
}
|
@ -0,0 +1,101 @@
|
||||
item,itemLabel
|
||||
http://www.wikidata.org/entity/Q380270,Stanislav-Adziogol Lighthouse
|
||||
http://www.wikidata.org/entity/Q406723,Nividic Lighthouse
|
||||
http://www.wikidata.org/entity/Q436392,Alte Weser
|
||||
http://www.wikidata.org/entity/Q522946,Borkum Großer Leuchtturm
|
||||
http://www.wikidata.org/entity/Q539709,Pilsum Lighthouse
|
||||
http://www.wikidata.org/entity/Q639663,Ardnamurchan Lighthouse
|
||||
http://www.wikidata.org/entity/Q1657846,Hohe Weg Lighthouse
|
||||
http://www.wikidata.org/entity/Q1821430,Knock lighthouse
|
||||
http://www.wikidata.org/entity/Q3378265,Q3378265
|
||||
http://www.wikidata.org/entity/Q2753066,St Bees Lighthouse
|
||||
http://www.wikidata.org/entity/Q3378401,Solidão Lighthouse
|
||||
http://www.wikidata.org/entity/Q5856133,Cabo Peñas Lighthouse
|
||||
http://www.wikidata.org/entity/Q6766188,Marjaniemi lighthouse
|
||||
http://www.wikidata.org/entity/Q7440295,Seacow Head Light
|
||||
http://www.wikidata.org/entity/Q10688060,Sälskär lighthouse
|
||||
http://www.wikidata.org/entity/Q10969490,Krynica Morska Lighthouse
|
||||
http://www.wikidata.org/entity/Q11868929,Kaijakari lighthouse
|
||||
http://www.wikidata.org/entity/Q106474620,Nilandhoo Lighthouse
|
||||
http://www.wikidata.org/entity/Q5856392,Far de Tramuntana
|
||||
http://www.wikidata.org/entity/Q7208336,Pointe aux Barques Light
|
||||
http://www.wikidata.org/entity/Q17827973,Start Point Lighthouse
|
||||
http://www.wikidata.org/entity/Q7621979,Stratford Point Light
|
||||
http://www.wikidata.org/entity/Q2205850,Muckle Flugga Lighthouse
|
||||
http://www.wikidata.org/entity/Q12053524,Bressay Lighthouse
|
||||
http://www.wikidata.org/entity/Q5034639,Cape Canaveral Light
|
||||
http://www.wikidata.org/entity/Q5856517,Castillo de San Telmo
|
||||
http://www.wikidata.org/entity/Q26156177,Holy Isle Outer Lighthouse
|
||||
http://www.wikidata.org/entity/Q776666,Lighthouse of Genoa
|
||||
http://www.wikidata.org/entity/Q28376331,Great Stirrup Cay Lighthouse
|
||||
http://www.wikidata.org/entity/Q10280148,Cabo Delgado Lighthouse
|
||||
http://www.wikidata.org/entity/Q28831542,Stroma Lighthouse
|
||||
http://www.wikidata.org/entity/Q1963379,Cape Flattery Light
|
||||
http://www.wikidata.org/entity/Q20031500,Minsener Oog Buhne A lighthouse
|
||||
http://www.wikidata.org/entity/Q29914119,Flötjan lighthouse
|
||||
http://www.wikidata.org/entity/Q3269761,Rumeli Feneri
|
||||
http://www.wikidata.org/entity/Q5485067,Kristiiankaupunki lighthouse
|
||||
http://www.wikidata.org/entity/Q14537875,The Graves Light
|
||||
http://www.wikidata.org/entity/Q6416484,Kish Bank Lighthouse
|
||||
http://www.wikidata.org/entity/Q33985288,Anchuthengu lighthouse
|
||||
http://www.wikidata.org/entity/Q6739805,Makkaur Lighthouse
|
||||
http://www.wikidata.org/entity/Q15923523,Lyudao Lighthouse
|
||||
http://www.wikidata.org/entity/Q108561861,Understen lighthouse auxiliary light
|
||||
http://www.wikidata.org/entity/Q7995888,Whitefish Point Light
|
||||
http://www.wikidata.org/entity/Q108941289,Dumpling Rocks Light
|
||||
http://www.wikidata.org/entity/Q18619039,Delimara Lighthouse
|
||||
http://www.wikidata.org/entity/Q1499942,Keldsnor Lighthouse
|
||||
http://www.wikidata.org/entity/Q28790555,Porthcawl Lighthouse
|
||||
http://www.wikidata.org/entity/Q19832618,Neuer Leuchtturm Wangerooge
|
||||
http://www.wikidata.org/entity/Q11294379,Jastarnia Lighthouse
|
||||
http://www.wikidata.org/entity/Q42351649,Q42351649
|
||||
http://www.wikidata.org/entity/Q106112543,Jazireh-ye Khark Lighthouse
|
||||
http://www.wikidata.org/entity/Q5856309,Rio Negro Lighthouse
|
||||
http://www.wikidata.org/entity/Q15197902,Beachy Head Lighthouse
|
||||
http://www.wikidata.org/entity/Q7590348,St. Mary's Lighthouse
|
||||
http://www.wikidata.org/entity/Q7859001,Two Harbors Lighthouse
|
||||
http://www.wikidata.org/entity/Q990511,Leuchtturm Arngast
|
||||
http://www.wikidata.org/entity/Q1130607,Yaquina Head Light
|
||||
http://www.wikidata.org/entity/Q1226093,Oland lighthouse
|
||||
http://www.wikidata.org/entity/Q1768822,Nugget Point Lighthouse
|
||||
http://www.wikidata.org/entity/Q28465887,Sgeirean Dubha Lighthouse
|
||||
http://www.wikidata.org/entity/Q3378225,Garðskagaviti
|
||||
http://www.wikidata.org/entity/Q40123739,Stora Juten lighthouse
|
||||
http://www.wikidata.org/entity/Q33196656,Understen lighthouse
|
||||
http://www.wikidata.org/entity/Q6943100,Musselbed Shoals Light
|
||||
http://www.wikidata.org/entity/Q43002337,Äspeskär lighthouse
|
||||
http://www.wikidata.org/entity/Q26256803,Megrundet lighthouse
|
||||
http://www.wikidata.org/entity/Q28376019,Pomorac Memorial Lighthouse
|
||||
http://www.wikidata.org/entity/Q28376333,Cay Lobos Lighthouse
|
||||
http://www.wikidata.org/entity/Q11605469,Ytre Møkkalasset fyrstasjon
|
||||
http://www.wikidata.org/entity/Q42317020,Svanshall lighthouse
|
||||
http://www.wikidata.org/entity/Q66810112,Q66810112
|
||||
http://www.wikidata.org/entity/Q712299,Långe Jan
|
||||
http://www.wikidata.org/entity/Q114986821,Qelelevu Lighthouse
|
||||
http://www.wikidata.org/entity/Q115046393,Huludao Jiao Lighthouse
|
||||
http://www.wikidata.org/entity/Q115046430,Niúshāndǎo Lighthouse
|
||||
http://www.wikidata.org/entity/Q115046431,Píngyǔ Lighthouse
|
||||
http://www.wikidata.org/entity/Q28333639,Inishtearaght Lighthouse
|
||||
http://www.wikidata.org/entity/Q28496266,Aranmore Lighthouse
|
||||
http://www.wikidata.org/entity/Q33061460,Ve Skerries Lighthouse
|
||||
http://www.wikidata.org/entity/Q7208156,Point Robinson Light
|
||||
http://www.wikidata.org/entity/Q7998367,Wickford Harbor Light
|
||||
http://www.wikidata.org/entity/Q62060063,Inkoo 2
|
||||
http://www.wikidata.org/entity/Q28374947,Ponta da Praia Range Rear Light
|
||||
http://www.wikidata.org/entity/Q28805844,Great Castle Head Light
|
||||
http://www.wikidata.org/entity/Q11899745,Utö Lighthouse
|
||||
http://www.wikidata.org/entity/Q66764004,"fixed white, red or green light"
|
||||
http://www.wikidata.org/entity/Q62103847,Finnish lion
|
||||
http://www.wikidata.org/entity/Q55333262,Cape Kormakitis Lighthouse
|
||||
http://www.wikidata.org/entity/Q5856167,Punta Guzmán Lighthouse
|
||||
http://www.wikidata.org/entity/Q29841335,Minni Minni Lighthouse
|
||||
http://www.wikidata.org/entity/Q30015062,Rhodes Lighthouse
|
||||
http://www.wikidata.org/entity/Q39922475,Tärnö East lighthouse
|
||||
http://www.wikidata.org/entity/Q59156996,Castle Island Lighthouse
|
||||
http://www.wikidata.org/entity/Q42293405,Stora Kornö lighthouse
|
||||
http://www.wikidata.org/entity/Q38230420,Mehdia Lighthouse
|
||||
http://www.wikidata.org/entity/Q67870811,flashing white light twice every 12 seconds
|
||||
http://www.wikidata.org/entity/Q105675065,Ormara Lighthouse
|
||||
http://www.wikidata.org/entity/Q105045470,Fedderwardersiel sector light
|
||||
http://www.wikidata.org/entity/Q43177143,Böda pierhead
|
||||
http://www.wikidata.org/entity/Q109314045,directional light
|
|
@ -0,0 +1,40 @@
|
||||
Stanislav-Adziogol Lighthouse
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/9/9a/Adziogol_hyperboloid_Lighthouse_by_Vladimir_Shukhov_1911.jpg)
|
||||
|
||||
Nividic Lighthouse
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/9/91/Ouessant_-_Faro_di_Nividic.JPG)
|
||||
|
||||
Alte Weser
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/7/74/AlteWeser_1964.jpg)
|
||||
|
||||
Borkum Großer Leuchtturm
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/8/8c/Neuer_Leuchtturm.jpg)
|
||||
|
||||
Pilsum Lighthouse
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/9/97/Pilsumer_Leuchtturm_%281%29.jpg)
|
||||
|
||||
Ardnamurchan Lighthouse
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/3/35/Ardnamurchan_Lighthouse3.jpg)
|
||||
|
||||
Hohe Weg Lighthouse
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/0/08/Lighthouse_Hoher_Weg_by_low_tide_03.jpg)
|
||||
|
||||
Knock lighthouse
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/e/eb/VerkehrszentraleEms.JPG)
|
||||
|
||||
Hvalnesviti
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/9/9e/Leuchtturm_Hvalnes.jpg)
|
||||
|
||||
St Bees Lighthouse
|
||||
============
|
||||
![](https://upload.wikimedia.org/wikipedia/commons/7/75/StBeesLighthouse.jpg)
|
||||
|
|
Loading…
Reference in New Issue