Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ci:
autoupdate_schedule: "monthly"
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.15"
rev: "v0.16.1"
hooks:
- id: ruff
args: ["--fix", "--unsafe-fixes"]
Expand All @@ -20,7 +20,7 @@ repos:
"--remove-unused-variable",
]
- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.8.3
rev: v3.9.6
hooks:
- id: prettier
types_or: [css, scss, javascript, rst, json, yaml, toml, markdown]
Expand All @@ -38,7 +38,7 @@ repos:
args: ["--fix=lf"]
- id: trailing-whitespace
- repo: https://github.com/codespell-project/codespell
rev: v2.4.2
rev: v2.4.3
hooks:
- id: codespell
args: ["--write-changes"]
23 changes: 12 additions & 11 deletions posts/2023/2023-05-10-timeseries_sdg.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,18 @@ sunpy currently has built in support for reading CDF files that conform to the [
Alongside this several custom data readers have been written to support different data sources:

(links point to the data source information web page)
| Data product(s) | File format |
| -- | -- |
| [SDO EVE/ESP L1](https://lasp.colorado.edu/eve/data_access/eve_data/products/level1/esp/2020/) | FITS | |
| [SDO EVE/ESP L0CS](https://lasp.colorado.edu/home/eve/data/) | Text file |
| [FERMI GBM summary](https://fermi.gsfc.nasa.gov/ssc/data/access/) | FITS |
| GOES XRS | FITS, netCDF |
| PROBA-2 LYRA ligthcurve | FITS |
| [NOAA solar cycle monthly indices](https://www.swpc.noaa.gov/products/solar-cycle-progression) | JSON |
| [NOAA solar cycle predicted indices](https://www.swpc.noaa.gov/products/solar-cycle-progression) | JSON |
| [NoRH radio](https://solar.nro.nao.ac.jp/norh/archive.html) | FITS |
| RHESSI x-ray summary | FITS |

| Data product(s) | File format |
| ------------------------------------------------------------------------------------------------ | ------------ |
| [SDO EVE/ESP L1](https://lasp.colorado.edu/eve/data_access/eve_data/products/level1/esp/2020/) | FITS |
| [SDO EVE/ESP L0CS](https://lasp.colorado.edu/home/eve/data/) | Text file |
| [FERMI GBM summary](https://fermi.gsfc.nasa.gov/ssc/data/access/) | FITS |
| GOES XRS | FITS, netCDF |
| PROBA-2 LYRA ligthcurve | FITS |
| [NOAA solar cycle monthly indices](https://www.swpc.noaa.gov/products/solar-cycle-progression) | JSON |
| [NOAA solar cycle predicted indices](https://www.swpc.noaa.gov/products/solar-cycle-progression) | JSON |
| [NoRH radio](https://solar.nro.nao.ac.jp/norh/archive.html) | FITS |
| RHESSI x-ray summary | FITS |

## Evaluating options

Expand Down
1 change: 1 addition & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ lint.extend-ignore = [
"ISC001", # May cause conflicts when used with the formatter
"PD011", # Use `.to_numpy()` instead of `.values`
"T201", # Print statements
"CPY001", # Copyright statements in each file
]

[lint.per-file-ignores]
Expand Down
Loading