forked from UW-Hydro/VIC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
103 lines (99 loc) · 4.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
site_name: VIC
site_description: Variable Infiltration Capacity Model
site_author: UW Hydro | Computational Hydrology
repo_url: https://github.com/UW-Hydro/VIC
site_url: http://vic.readthedocs.org/
theme:
name: readthedocs
analytics:
gtag: UA-65965729-1
copyright: 2021
docs_dir: docs
site_dir: site
use_directory_urls: true
nav:
# Main pages
- Home: 'index.md'
- About:
- 'Model Overview': 'Overview/ModelOverview.md'
- 'References': 'Documentation/References.md'
- 'FAQ': 'FAQ/FAQ.md'
- 'Contact': 'contact.md'
- 'Links': 'links.md'
- Documentation:
- 'User Guide': 'Documentation/UserGuide.md'
- 'VIC Drivers':
- 'Classic': 'Documentation/Drivers/Classic/ClassicDriver.md'
- 'Image': 'Documentation/Drivers/Image/ImageDriver.md'
- 'CESM': 'Documentation/Drivers/CESM/CESMDriver.md'
- 'Python': 'Documentation/Drivers/Python/PythonDriver.md'
- 'Extensions':
- 'Routing (Image Driver)': 'Documentation/Drivers/Image/Routing.md'
- Development:
- 'Development': 'Development/ModelDevelopment.md'
- 'Release Notes': 'Development/ReleaseNotes.md'
- 'Contributing': 'Development/Contributing.md'
- 'Working with Git and Github': 'Development/working-with-git.md'
- 'Docker': 'Development/Docker.md'
- 'Testing': 'Development/Testing.md'
- Downloads:
- Datasets: 'Datasets/Datasets.md'
- Code: 'SourceCode/Code.md'
# hidden pages
- hidden:
# Classic Driver
- 'DefaultOutputs': 'Documentation/Drivers/Classic/DefaultOutputs.md'
- 'FluxOutputFiles': 'Documentation/Drivers/Classic/FluxOutputFiles.md'
- 'SnowOutputFile': 'Documentation/Drivers/Classic/SnowOutputFile.md'
- 'Forcing Data': 'Documentation/Drivers/Classic/ForcingData.md'
- 'FrozenSoilOutputFile': 'Documentation/Drivers/Classic/FrozenSoilOutputFile.md'
- 'GlobalParam': 'Documentation/Drivers/Classic/GlobalParam.md'
- 'Inputs': 'Documentation/Drivers/Classic/Inputs.md'
- 'LakeOutputFile': 'Documentation/Drivers/Classic/LakeOutputFile.md'
- 'Lake Param': 'Documentation/Drivers/Classic/LakeParam.md'
- 'Output Formatting': 'Documentation/Drivers/Classic/OutputFormatting.md'
- 'Outputs': 'Documentation/Drivers/Classic/Outputs.md'
- 'RunVIC': 'Documentation/Drivers/Classic/RunVIC.md'
- 'Snow Band': 'Documentation/Drivers/Classic/SnowBand.md'
- 'SnowBandOutputFiles': 'Documentation/Drivers/Classic/SnowBandOutputFiles.md'
- 'Soil Param': 'Documentation/Drivers/Classic/SoilParam.md'
- 'State File': 'Documentation/Drivers/Classic/StateFile.md'
- 'Veg Lib': 'Documentation/Drivers/Classic/VegLib.md'
- 'Veg Param': 'Documentation/Drivers/Classic/VegParam.md'
# Image Driver
- 'ForcingData': 'Documentation/Drivers/Image/ForcingData.md'
- 'GlobalParam': 'Documentation/Drivers/Image/GlobalParam.md'
- 'Inputs': 'Documentation/Drivers/Image/Inputs.md'
- 'Outputs': 'Documentation/Drivers/Image/Outputs.md'
- 'Params': 'Documentation/Drivers/Image/Params.md'
- 'Domain': 'Documentation/Drivers/Image/Domain.md'
- 'RunVIC': 'Documentation/Drivers/Image/RunVIC.md'
- 'Lake Param': 'Documentation/Drivers/Image/LakeParam.md'
- 'StateFile': 'Documentation/Drivers/Image/StateFile.md'
- 'Ascii_to_NetCDF_params.md': 'Documentation/Drivers/Image/Ascii_to_NetCDF_params.md'
- 'OutputFormatting': 'Documentation/Drivers/Image/OutputFormatting.md'
- 'DefaultOutputs': 'Documentation/Drivers/Image/DefaultOutputs.md'
- 'FluxOutputFiles': 'Documentation/Drivers/Image/FluxOutputFiles.md'
- 'SnowOutputFile': 'Documentation/Drivers/Image/SnowOutputFile.md'
- 'FrozenSoilOutputFile': 'Documentation/Drivers/Image/FrozenSoilOutputFile.md'
- 'LakeOutputFile': 'Documentation/Drivers/Image/LakeOutputFile.md'
# CESM Driver
- 'Inputs': 'Documentation/Drivers/CESM/Inputs.md'
# Other
- 'Constants': 'Documentation/Constants.md'
- 'Definitions': 'Documentation/Definitions.md'
- 'HowToAddNewOutputVars': 'Documentation/HowToAddNewOutputVars.md'
- 'Output Var List': 'Documentation/OutputVarList.md'
- 'Soiltext': 'Documentation/soiltext.md'
- 'FrozenSoilText': 'Overview/FrozenSoilText.md'
- 'SnowBandsText': 'Overview/SnowBandsText.md'
- 'SnowModelText': 'Overview/SnowModelText.md'
- 'Git Workflow': 'Development/git-workflow.md'
- 'Open Source': 'Development/open-source-philosophy.md'
- 'Best Practices': 'Documentation/best_practices.md'
markdown_extensions:
- toc:
permalink: True
- admonition:
- fenced_code:
copyright: 'Copyright © 2021, <a href="http://uw-hydro.github.io/">University of Washington Computational Hydrology Group</a>.'