-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
opengisch
committed
May 1, 2024
1 parent
244f36f
commit 71e272a
Showing
2 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
|
||
<title>Qgis Advanced</title> | ||
<link rel="shortcut icon" href="./favicon.ico" /> | ||
<link rel="stylesheet" href="./dist/reset.css" /> | ||
<link rel="stylesheet" href="./dist/reveal.css" /> | ||
<link rel="stylesheet" href="./_assets/theme/softteaching-theme.css" id="theme" /> | ||
<link rel="stylesheet" href="./css/highlight/base16/zenburn.css" /> | ||
|
||
<link rel="stylesheet" href="./_assets/slides/stylesheets/base-theme.css" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/base-white-theme.css" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/logo_white.png" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/opengisch-bright.css" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/opengisch-dark.css" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/pitch-theme.css" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/softteaching-theme.css" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/teaching-theme.css" /> | ||
</head> | ||
<body> | ||
<div class="reveal"> | ||
<div class="slides"> | ||
<section data-markdown data-separator="\r?\n---\r?\n" data-separator-vertical="--v--"> | ||
<textarea data-template> | ||
|
||
|
||
# QGIS cours avancé 2ème jour | ||
|
||
--v-- | ||
|
||
## Programme | ||
|
||
- Etiquettes | ||
- Symbologie avancée (générateur de géométrie) | ||
- Relations et jointures | ||
- Afficher une photo dans le formulaire (requête SQL) | ||
- Assurer la qualité des données (contraintes) | ||
- Traitement géospatial | ||
- Modeleur graphique | ||
- Interlis | ||
- Numérisation | ||
- Mise en page (atlas) | ||
</textarea> | ||
</section> | ||
</div> | ||
</div> | ||
|
||
<script src="./dist/reveal.js"></script> | ||
|
||
<script src="./mermaid/dist/mermaid.min.js"></script> | ||
|
||
<script src="./plugin/markdown/markdown.js"></script> | ||
<script src="./plugin/highlight/highlight.js"></script> | ||
<script src="./plugin/zoom/zoom.js"></script> | ||
<script src="./plugin/notes/notes.js"></script> | ||
<script src="./plugin/math/math.js"></script> | ||
<script> | ||
function extend() { | ||
var target = {}; | ||
for (var i = 0; i < arguments.length; i++) { | ||
var source = arguments[i]; | ||
for (var key in source) { | ||
if (source.hasOwnProperty(key)) { | ||
target[key] = source[key]; | ||
} | ||
} | ||
} | ||
return target; | ||
} | ||
|
||
// default options to init reveal.js | ||
var defaultOptions = { | ||
controls: true, | ||
progress: true, | ||
history: true, | ||
center: true, | ||
transition: 'default', // none/fade/slide/convex/concave/zoom | ||
slideNumber: true, | ||
highlight: { | ||
highlightOnLoad: false | ||
}, | ||
plugins: [ | ||
RevealMarkdown, | ||
RevealHighlight, | ||
RevealZoom, | ||
RevealNotes, | ||
RevealMath | ||
] | ||
}; | ||
|
||
// options from URL query string | ||
var queryOptions = Reveal().getQueryHash() || {}; | ||
|
||
var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Advanced","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/logo_white.png,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); | ||
</script> | ||
|
||
|
||
<script> | ||
Reveal.initialize(options); | ||
Reveal.addEventListener('ready', function (event) { | ||
const blocks = Reveal.getRevealElement().querySelectorAll('pre code:not(.mermaid)'); | ||
const hlp = Reveal.getPlugin('highlight'); | ||
blocks.forEach(hlp.highlightBlock); | ||
}); | ||
</script> | ||
|
||
<script> | ||
const mermaidOptions = extend({ startOnLoad: false }, {}); | ||
mermaid.startOnLoad = false; | ||
mermaid.initialize(mermaidOptions); | ||
const cb = function (event) { mermaid.init(mermaidOptions, '.stack.present>.present pre code.mermaid'); }; | ||
Reveal.addEventListener('ready', cb); | ||
Reveal.addEventListener('slidetransitionend', cb); | ||
</script> | ||
</body> | ||
</html> |