Skip to content

Commit c9cee31

Browse files
author
squarebot[bot]
committed
Initial commit
0 parents  commit c9cee31

File tree

14 files changed

+566
-0
lines changed

14 files changed

+566
-0
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
8+
- package-ecosystem: "pip"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"

.github/workflows/ci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: CI
2+
3+
'on': [push, pull_request, workflow_dispatch]
4+
5+
jobs:
6+
call-workflow:
7+
uses: lsst-sqre/rubin-sphinx-technote-workflows/.github/workflows/ci.yaml@v1
8+
with:
9+
handle: sitcomtn-179
10+
secrets:
11+
ltd_username: ${{ secrets.LTD_USERNAME }}
12+
ltd_password: ${{ secrets.LTD_PASSWORD }}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_build/
2+
.technote/
3+
.tox/
4+
venv/
5+
.venv/

.pre-commit-config.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.5.0
4+
hooks:
5+
# - id: trailing-whitespace
6+
- id: check-yaml
7+
- id: check-toml

COPYRIGHT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Copyright 2026 Association of Universities for Research in Astronomy, Inc. (AURA)

LICENSE

Lines changed: 395 additions & 0 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.PHONY:
2+
init:
3+
pip install tox pre-commit
4+
pre-commit install
5+
6+
.PHONY:
7+
html:
8+
tox run -e html
9+
10+
.PHONY:
11+
lint:
12+
tox run -e lint,linkcheck
13+
14+
.PHONY:
15+
add-author:
16+
tox run -e add-author
17+
18+
.PHONY:
19+
sync-authors:
20+
tox run -e sync-authors
21+
22+
.PHONY:
23+
clean:
24+
rm -rf _build
25+
rm -rf .technote
26+
rm -rf .tox

README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
[![Website](https://img.shields.io/badge/sitcomtn--179-lsst.io-brightgreen.svg)](https://sitcomtn-179.lsst.io)
2+
[![CI](https://github.com/lsst-sitcom/sitcomtn-179/actions/workflows/ci.yaml/badge.svg)](https://github.com/lsst-sitcom/sitcomtn-179/actions/workflows/ci.yaml)
3+
4+
# Characterizing the Influence of Wind Speed and Direction on Portable and Fixed DIMM seeing measurements
5+
6+
## SITCOMTN-179
7+
8+
This technical note provides a comprehensive comparative analysis of seeing measurements obtained from portable and fixed Differential Image Motion Monitors (DIMM). We investigate the correlation between these two systems and quantify the systematic influences of local meteorological conditions. Specifically, we demonstrate the dependency of seeing discrepancies on wind speed.
9+
10+
**Links:**
11+
12+
- Publication URL: https://sitcomtn-179.lsst.io
13+
- Alternative editions: https://sitcomtn-179.lsst.io/v
14+
- GitHub repository: https://github.com/lsst-sitcom/sitcomtn-179
15+
- Build system: https://github.com/lsst-sitcom/sitcomtn-179/actions/
16+
17+
18+
## Build this technical note
19+
20+
You can clone this repository and build the technote locally if your system has Python 3.11 or later:
21+
22+
```sh
23+
git clone https://github.com/lsst-sitcom/sitcomtn-179
24+
cd sitcomtn-179
25+
make init
26+
make html
27+
```
28+
29+
Repeat the `make html` command to rebuild the technote after making changes.
30+
If you need to delete any intermediate files for a clean build, run `make clean`.
31+
32+
The built technote is located at `_build/html/index.html`.
33+
34+
## Publishing changes to the web
35+
36+
This technote is published to https://sitcomtn-179.lsst.io whenever you push changes to the `main` branch on GitHub.
37+
When you push changes to a another branch, a preview of the technote is published to https://sitcomtn-179.lsst.io/v.
38+
39+
## Editing this technical note
40+
41+
The main content of this technote is in `index.md` (a Markdown file parsed as [CommonMark/MyST](https://myst-parser.readthedocs.io/en/latest/index.html)).
42+
Metadata and configuration is in the `technote.toml` file.
43+
For guidance on creating content and information about specifying metadata and configuration, see the Documenteer documentation: https://documenteer.lsst.io/technotes.

conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# See the Documenteer docs for how to customize conf.py:
2+
# https://documenteer.lsst.io/technotes/
3+
4+
from documenteer.conf.technote import * # noqa F401 F403

index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Characterizing the Influence of Wind Speed and Direction on Portable and Fixed DIMM seeing measurements
2+
3+
```{abstract}
4+
This technical note provides a comprehensive comparative analysis of seeing measurements obtained from portable and fixed Differential Image Motion Monitors (DIMM). We investigate the correlation between these two systems and quantify the systematic influences of local meteorological conditions. Specifically, we demonstrate the dependency of seeing discrepancies on wind speed.
5+
```
6+
7+
## Add content here
8+
9+
See the [Documenteer documentation](https://documenteer.lsst.io/technotes/index.html) for tips on how to write and configure your new technote.

0 commit comments

Comments
 (0)