-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
281 additions
and
151 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -24,3 +24,4 @@ docs | |
/Meta/ | ||
|
||
note.md | ||
altdoc/freeze.rds |
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
Empty file.
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,47 @@ | ||
<!-- index.html --> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<meta charset="UTF-8"> | ||
<!-- Theme: Simple (light + dark) --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"> | ||
|
||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script> | ||
window.$docsify = { | ||
name: '$ALTDOC_PACKAGE_NAME', | ||
repo: '$ALTDOC_PACKAGE_URL_GITHUB', | ||
loadSidebar: true, | ||
subMaxLevel: 1, | ||
search: { | ||
placeholder: 'Search', | ||
depth: 3, | ||
}, | ||
auto2top: true, | ||
copyCode: { | ||
buttonText : 'Copy', | ||
errorText : 'Error', | ||
successText: 'Copied' | ||
}, | ||
plugins: [ | ||
function(hook) { | ||
var footer = ["<a href='$ALTDOC_PACKAGE_URL'> <code> $ALTDOC_PACKAGE_NAME </code> v. $ALTDOC_PACKAGE_VERSION </a> | Documentation made with <a href='https://altdoc.etiennebacher.com/'> <code> altdoc </code> v. $ALTDOC_VERSION</a>"].join(''); | ||
|
||
hook.afterEach(function(html) { | ||
return html + footer; | ||
}); | ||
} | ||
] | ||
} | ||
</script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script> | ||
<script src="//cdn.jsdelivr.net/npm/[email protected]/components/prism-r.js"></script> | ||
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script> | ||
</body> | ||
</html> |
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,41 @@ | ||
* [Home](/) | ||
* Vignettes | ||
- [Cheat sheet](vignettes/cheat_sheet) | ||
- [Get started with mapsf](vignettes/mapsf) | ||
- [How to export maps](vignettes/how_to_export_maps) | ||
- [How to use themes](vignettes/how_to_use_themes) | ||
- [How to create faceted maps](vignettes/how_to_create_faceted_maps) | ||
- [How to create inset maps](vignettes/how_to_create_inset_maps) | ||
- [How to use a custom font](vignettes/how_to_use_a_custom_font_family) | ||
* Functions | ||
- Symbology | ||
- [mf_map()](man/mf_map) | ||
- [mf_label()](man/mf_label) | ||
- [mf_raster()](man/mf_raster) | ||
- [mf_graticule()](man/mf_graticule) | ||
- Map layout | ||
- [mf_theme()](man/mf_theme) | ||
- [mf_shadow()](man/mf_shadow) | ||
- [mf_background()](man/mf_background) | ||
- [mf_legend()](man/mf_legend) | ||
- [mf_annotation()](man/mf_annotation) | ||
- [mf_arrow()](man/mf_arrow) | ||
- [mf_credits()](man/mf_credits) | ||
- [mf_layout()](man/mf_layout) | ||
- [mf_title()](man/mf_title) | ||
- [mf_scale()](man/mf_scale) | ||
- [mf_inset_*()](man/mf_inset_on) | ||
- [mf_worldmap()](man/mf_worldmap) | ||
- Utility | ||
- [mf_export()](man/mf_export) | ||
- [mf_distr()](man/mf_distr) | ||
- [mf_get_links()](man/mf_links) | ||
- [mf_get_pal()](man/mf_get_pal) | ||
- [mf_get_breaks()](man/mf_get_breaks) | ||
- [mf_get_mtq()](man/mf_get_mtq) | ||
- [mf_get_ratio()](man/mf_get_ratio) | ||
- [mf_get_pencil()](man/mf_get_pencil) | ||
- [mf_get_borders()](man/mf_get_borders) | ||
* [News]($ALTDOC_NEWS) | ||
* [Licence]($ALTDOC_LICENCE) | ||
* [Citation]($ALTDOC_CITATION) |
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,4 @@ | ||
urls: | ||
reference: https:/riatelab.github.io/mapsf/man | ||
article: https:/riatelab.github.io/mapsf/vignettes | ||
|
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,6 @@ | ||
--- | ||
format: | ||
md: | ||
prefer-html: true | ||
--- | ||
|
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,6 @@ | ||
--- | ||
format: | ||
md: | ||
prefer_html: true | ||
default-image-extension: "" | ||
--- |
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,4 @@ | ||
--- | ||
always_allow_html: yes | ||
--- | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,4 +1,2 @@ | ||
*.html | ||
*.R | ||
web_only/*.png | ||
web_only/*.svg |
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
File renamed without changes.
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.