Skip to content

Commit 3ba2c09

Browse files
committed
restructure repository and update content
1 parent b6cab42 commit 3ba2c09

File tree

99 files changed

+3562
-802
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+3562
-802
lines changed

.github/workflows/publish.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# file: .github/workflows/publish.yml
2+
name: Publish Website
3+
4+
# Allow one concurrent deployment
5+
concurrency:
6+
group: "pages"
7+
cancel-in-progress: true
8+
9+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
10+
permissions:
11+
contents: read
12+
pages: write
13+
id-token: write
14+
15+
on:
16+
push:
17+
branches: ['main']
18+
19+
jobs:
20+
quarto:
21+
runs-on: ubuntu-latest
22+
environment:
23+
name: github-pages
24+
url: ${{ steps.deployment.outputs.page_url }}
25+
steps:
26+
- name: Checkout repository
27+
uses: actions/checkout@v3
28+
- name: Install Quarto
29+
uses: quarto-dev/quarto-actions/setup@v2
30+
- name: Setup Pages
31+
uses: actions/configure-pages@v1
32+
- name: Render Website
33+
run: quarto render
34+
- name: Upload artifact
35+
uses: actions/upload-pages-artifact@v1
36+
with:
37+
path: '_site'
38+
- name: Deploy to GitHub Pages
39+
id: deployment
40+
uses: actions/deploy-pages@main

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.luarc.json
2+
3+
/.quarto/
4+
/_site/

code/analysis/.gitkeep .nojekyll

File renamed without changes.

.vscode/settings.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"liveServer.settings.port": 5501,
3+
"workbench.colorCustomizations": {
4+
"activityBar.activeBackground": "#3399ff",
5+
"activityBar.background": "#3399ff",
6+
"activityBar.foreground": "#15202b",
7+
"activityBar.inactiveForeground": "#15202b99",
8+
"activityBarBadge.background": "#bf0060",
9+
"activityBarBadge.foreground": "#e7e7e7",
10+
"commandCenter.border": "#e7e7e799",
11+
"sash.hoverBorder": "#3399ff",
12+
"statusBar.background": "#007fff",
13+
"statusBar.foreground": "#e7e7e7",
14+
"statusBarItem.hoverBackground": "#3399ff",
15+
"statusBarItem.remoteBackground": "#007fff",
16+
"statusBarItem.remoteForeground": "#e7e7e7",
17+
"titleBar.activeBackground": "#007fff",
18+
"titleBar.activeForeground": "#e7e7e7",
19+
"titleBar.inactiveBackground": "#007fff99",
20+
"titleBar.inactiveForeground": "#e7e7e799"
21+
},
22+
"peacock.color": "#007fff"
23+
}

README.md

+2-29
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,3 @@
1-
## `Project`
1+
## Lidar for Forestry
22

3-
Short description
4-
5-
--------
6-
__Folder Structure__
7-
8-
├── README.md
9-
|
10-
├── code <- Source code for use in this project.
11-
│   ├── analysis <- e.g. Code to generate reports
12-
│   ├── data <- Scripts to download, generate or process data.
13-
│   ├── exploratory <- Exploratory code and scipts in progress.
14-
│   ├── functions <- Reusable code such as functions.
15-
│   └── viz <- Scripts to create exploratory and results oriented visualizations.
16-
|
17-
├── data
18-
│   ├── external <- Data from third party sources.
19-
│   ├── interim <- Intermediate data that has been transformed.
20-
│   └── processed <- The final data sets for modeling or analysis.
21-
22-
├── resources <- Figures, literature, manuals, and all other explanatory materials.
23-
│   ├── documents <- External documents such as project outlines.
24-
│   ├── figures <- External figures used in reports such as logos.
25-
│   └── website <- files to build website with quarto
26-
27-
└── results <- Results as part of this project.
28-
  ├── figures <- Generated graphics and figures to be used in reporting
29-
  └── reports <- Generated analysis as HTML, PDF, LaTeX, etc.
30-
--------
3+
This repository is meant as a personal spcae to gather and organize information about research and applications of lidar data for forestry.

_quarto.yml

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
project:
2+
type: website
3+
output-dir: _site
4+
5+
website:
6+
title: "Lidar for Forestry"
7+
description: "Documentation about Lidar data for forestry"
8+
site-url: https://github.com/wiesehahn/lidar-forestry/index.html
9+
repo-url: https://github.com/wiesehahn/lidar-forestry
10+
open-graph: true
11+
twitter-card:
12+
creator: '@JensWiesehahn'
13+
search: false
14+
navbar:
15+
# title: false
16+
logo: /images/logo.png
17+
logo-alt: "Website logo image"
18+
# logo-href: https://wiesehahn.github.io/
19+
collapse: true
20+
21+
left:
22+
- text: "About"
23+
href: content/00_about.qmd
24+
- text: "Lidar"
25+
href: content/01_lidar.qmd
26+
- text: "Data Availability"
27+
href: content/02_data.qmd
28+
- text: "Scientific Advances"
29+
href: content/03_scientific-advances.qmd
30+
- text: "Applications"
31+
href: content/04_applications.qmd
32+
33+
right:
34+
- icon: triangle-fill
35+
href: https://wiesehahn.github.io
36+
- icon: github
37+
href: https://github.com/wiesehahn
38+
- icon: twitter
39+
href: https://twitter.com/JensWiesehahn
40+
- icon: mastodon
41+
href: https://elk.zone/fosstodon.org/@JensWiesehahn
42+
- icon: envelope-fill
43+
href: mailto::[email protected]
44+
45+
page-footer:
46+
border: false
47+
left: "© 2023, [Jens Wiesehahn](https://wiesehahn.github.io/)"
48+
right:
49+
- icon: github
50+
href: https://github.com/wiesehahn/lidar-forestry
51+
52+
format:
53+
html: # (https://quarto.org/docs/reference/formats/html.html)
54+
theme: [litera, assets/custom_theme.scss]
55+
mainfont: Nunito
56+
toc: true
57+
smooth-scroll: true
58+
highlight: arrow
59+
page-layout: full
60+
code-copy: hover
61+
code-overflow: wrap
62+
code-line-numbers: false
63+
grid:
64+
sidebar-width: 250px
65+
body-width: 1200px
66+
margin-width: 250px
67+
68+
tbl-cap-location: top
69+
70+
bibliography: ../references.bib

0 commit comments

Comments
 (0)