mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
GeoCSV extension now working, but not as well as I want.
This commit is contained in:
parent
4fee2959ca
commit
c0358f9c78
11 changed files with 180 additions and 22 deletions
|
|
@ -37,6 +37,15 @@
|
|||
{:backticks {:formatter "smeagol.formatting/process-backticks"
|
||||
:scripts {}
|
||||
:styles {}}
|
||||
:geocsv {:formatter "smeagol.extensions.geocsv/process-geocsv"
|
||||
:scripts {:core {:local "vendor/node_modules/geocsv-js/js/geocsv.js"}
|
||||
:leaflet {:local "vendor/node_modules/leaflet/dist/leaflet.js"
|
||||
:remote "https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"}
|
||||
:papaparse {:local "vendor/node_modules/papaparse/papaparse.js"
|
||||
:remote "https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.1.0/papaparse.min.js"}}
|
||||
:styles {:leaflet {:local "vendor/node_modules/leaflet/dist/leaflet.css"
|
||||
:remote "https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"}}
|
||||
:icon-url-base "uploads/map-pin/"}
|
||||
:mermaid {:formatter "smeagol.extensions.mermaid/process-mermaid"
|
||||
:scripts {:core {:local "vendor/node_modules/mermaid/dist/mermaid.min.js"
|
||||
:remote "https://cdnjs.cloudflare.com/ajax/libs/mermaid/8.4.6/mermaid.min.js"}}}
|
||||
|
|
@ -68,6 +77,7 @@
|
|||
;; stored in the /small directory
|
||||
:med 400 ;; maximum dimension of thumbnails
|
||||
;; stored in the /med directory
|
||||
:map-pin 40 ;; stored in the /map-pin directory
|
||||
;; you can add as many extra keys and values as
|
||||
;; you like here for additional sizes of images.
|
||||
;; Images will only be scaled if their maximum
|
||||
|
|
|
|||
|
|
@ -1,6 +1,77 @@
|
|||
The basic format of Smeagol pages is [Markdown](https://daringfireball.net/projects/markdown/); documentation on how to format them is [here](https://daringfireball.net/projects/markdown/syntax). Note that there are a number of slightly different variants of Markdown; the version used by Smeagol does not currently allow tables.
|
||||
|
||||
A system of pluggable, extensible formatters is supported. In normal markdown, code blocks may be delimited by three backticks at start and end, and often the syntax of the code can be indicated by a token immediately following the opening three backticks. This has been extended to allow custom formatters to be provided for such code blocks. Two example formatters are provided:
|
||||
A system of pluggable, extensible formatters is supported. In normal markdown, code blocks may be delimited by three backticks at start and end, and often the syntax of the code can be indicated by a token immediately following the opening three backticks. This has been extended to allow custom formatters to be provided for such code blocks. Example formatters are provided:
|
||||
|
||||
## The GeoCSV formatter
|
||||
|
||||
Allows you to embed maps with markers on them into Wiki pages. To embed a map, start with a line comprising three backticks and the word '`geocsv`', then as many lines as you like with comma-separated values (CSV) data to show on your map, followed by a line comprising just three backticks and nothing else.
|
||||
|
||||
The CSV must have the column titles in the first line, and must have columns called `latitude` and `longitude`, which must both contain floating point numbers, not degrees, minutes and seconds. The CSV *may* also have a column called `name`, which will be used as the heading for the popup that shows if you click an image, and a column named category. If the category column is present, and contains a value in a given row, the marker image for the marker for that row will the uploaded file whose name is that value followed by `-pin.png`.
|
||||
|
||||
Here's an example: the capital cities of Europe.
|
||||
|
||||
```geocsv
|
||||
Country,Name,Latitude,Longitude,CountryCode,Continent,Category
|
||||
Aland Islands,Mariehamn,60.116667,19.9,AX,Europe,
|
||||
Albania,Tirana,41.3166666666667,19.816667,AL,Europe,AL
|
||||
Andorra,Andorra la Vella,42.5,1.516667,AD,Europe,AD
|
||||
Armenia,Yerevan,40.1666666666667,44.5,AM,Europe,AM
|
||||
Austria,Vienna,48.2,16.366667,AT,Europe,AT
|
||||
Azerbaijan,Baku,40.3833333333333,49.866667,AZ,Europe,AZ
|
||||
Belarus,Minsk,53.9,27.566667,BY,Europe,BY
|
||||
Belgium,Brussels,50.8333333333333,4.333333,BE,Europe,BE
|
||||
Bosnia and Herzegovina,Sarajevo,43.8666666666667,18.416667,BA,Europe,BA
|
||||
Bulgaria,Sofia,42.6833333333333,23.316667,BG,Europe,BG
|
||||
Croatia,Zagreb,45.8,16,HR,Europe,HR
|
||||
Cyprus,Nicosia,35.1666666666667,33.366667,CY,Europe,CY
|
||||
Czech Republic,Prague,50.0833333333333,14.466667,CZ,Europe,CZ
|
||||
Denmark,Copenhagen,55.6666666666667,12.583333,DK,Europe,DK
|
||||
Estonia,Tallinn,59.4333333333333,24.716667,EE,Europe,EE
|
||||
Faroe Islands,Torshavn,62,-6.766667,FO,Europe,
|
||||
Finland,Helsinki,60.1666666666667,24.933333,FI,Europe,FI
|
||||
France,Paris,48.8666666666667,2.333333,FR,Europe,FR
|
||||
Georgia,Tbilisi,41.6833333333333,44.833333,GE,Europe,GE
|
||||
Germany,Berlin,52.5166666666667,13.4,DE,Europe,DE
|
||||
Gibraltar,Gibraltar,36.1333333333333,-5.35,GI,Europe,GI
|
||||
Greece,Athens,37.9833333333333,23.733333,GR,Europe,GR
|
||||
Guernsey,Saint Peter Port,49.45,-2.533333,GG,Europe,GG
|
||||
Vatican City,Vatican City,41.9,12.45,VA,Europe,VA
|
||||
Hungary,Budapest,47.5,19.083333,HU,Europe,HU
|
||||
[[Iceland]],Reykjavik,64.15,-21.95,IS,Europe,IS
|
||||
Ireland,Dublin,53.3166666666667,-6.233333,IE,Europe,IE
|
||||
Isle of Man,Douglas,54.15,-4.483333,IM,Europe,IM
|
||||
Italy,Rome,41.9,12.483333,IT,Europe,IT
|
||||
Jersey,Saint Helier,49.1833333333333,-2.1,JE,Europe,JE
|
||||
Kosovo,Pristina,42.6666666666667,21.166667,KO,Europe,
|
||||
Latvia,Riga,56.95,24.1,LV,Europe,LV
|
||||
Liechtenstein,Vaduz,47.1333333333333,9.516667,LI,Europe,LI
|
||||
Lithuania,Vilnius,54.6833333333333,25.316667,LT,Europe,LT
|
||||
Luxembourg,Luxembourg,49.6,6.116667,LU,Europe,LU
|
||||
Macedonia,Skopje,42,21.433333,MK,Europe,MK
|
||||
Malta,Valletta,35.8833333333333,14.5,MT,Europe,MT
|
||||
Moldova,Chisinau,47,28.85,MD,Europe,MD
|
||||
Monaco,Monaco,43.7333333333333,7.416667,MC,Europe,MC
|
||||
Montenegro,Podgorica,42.4333333333333,19.266667,ME,Europe,ME
|
||||
Netherlands,Amsterdam,52.35,4.916667,NL,Europe,NL
|
||||
Norway,Oslo,59.9166666666667,10.75,NO,Europe,NO
|
||||
Poland,Warsaw,52.25,21,PL,Europe,PL
|
||||
Portugal,Lisbon,38.7166666666667,-9.133333,PT,Europe,PT
|
||||
Romania,Bucharest,44.4333333333333,26.1,RO,Europe,RO
|
||||
Russia,Moscow,55.75,37.6,RU,Europe,RU
|
||||
San Marino,San Marino,43.9333333333333,12.416667,SM,Europe,SM
|
||||
Serbia,Belgrade,44.8333333333333,20.5,RS,Europe,RS
|
||||
Slovakia,Bratislava,48.15,17.116667,SK,Europe,SK
|
||||
Slovenia,Ljubljana,46.05,14.516667,SI,Europe,SI
|
||||
Spain,Madrid,40.4,-3.683333,ES,Europe,ES
|
||||
Svalbard,Longyearbyen,78.2166666666667,15.633333,SJ,Europe,
|
||||
Sweden,Stockholm,59.3333333333333,18.05,SE,Europe,SE
|
||||
Switzerland,Bern,46.9166666666667,7.466667,CH,Europe,CH
|
||||
Turkey,Ankara,39.9333333333333,32.866667,TR,Europe,TR
|
||||
Ukraine,Kyiv,50.4333333333333,30.516667,UA,Europe,UA
|
||||
United Kingdom,London,51.5,-0.083333,GB,Europe,GB
|
||||
Northern Cyprus,North Nicosia,35.183333,33.366667,NULL,Europe,
|
||||
|
||||
```
|
||||
|
||||
## The Vega formatter
|
||||
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="favicon.png">
|
||||
{% style "/content/stylesheet.css" %}
|
||||
{% block extra-headers %}
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue