-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
40 lines (33 loc) · 1.26 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
site_name: "OSM Imports' preparations"
site_description: "This is a proof of concept and a pet project for learning python while preparing data for importing it to OpenStreetMap. Although I will start small (importing trees from Barcelona city council), I aim to set the foundations for adding other types of imports that may (or may not) be added in the future."
site_author: "Carlos Cámara"
repo_url: https://github.com/mapcolabora/osm_imports_preparations
theme:
favicon: '/img/map-24px.svg'
logo:
icon: 'map'
name: 'material'
palette:
primary: 'green'
accent: 'red'
extra_css:
- css/extra.css
nav:
- Home: index.md
- Project Setup: setup.md
- Imports Documentation:
- Barcelona's Trees Import: import_bcn_trees.ipynb
- Catalunya's amenities: equipaments_cat.ipynb
- Comunitat Valenciana's Pharmacies: pharmacies_cval.ipynb
# - Barcelona's Trees Import: bcn_trees.md
- API:
- OSMI Helpers: sources/osmi_helpers.md
- Bug Tracker: https://github.com/mapcolabora/osm_imports_preparations/issues
markdown_extensions:
- toc:
permalink: true
- codehilite
plugins:
- mknotebooks:
enable_default_jupyter_cell_styling: false
enable_default_pandas_dataframe_styling: true