Skip to content
Open
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
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,23 @@ Our Package Ecosystem page and Comparison page are integrated with the rest of t

```julia
(
name = "eschnett/ASDF2.jl",
repo = "https://github.com/eschnett/ASDF2.jl",
doc = "https://eschnett.github.io/ASDF2.jl/dev/",
tagline = "ASDF, the Advanced Scientific Data Format",
name = "PairPlots.jl",
repo = "https://github.com/sefffal/PairPlots.jl",
doc = "https://sefffal.github.io/PairPlots.jl/dev/",
tagline = "Beautiful and flexible visualizations of high dimensional data",
descr = """
- A new [Advanced Scientific Data Format (ASDF)](https://asdf-standard.readthedocs.io/en/latest/index.html) package, written in Julia
- Corner plots or scatter plot matrices. Both Julia and Python are supported (PairPlots.jl and [pairplots.py](https://pypi.org/project/pairplots/))
- Inspired by [corner.py](https://corner.readthedocs.io/en/latest/index.html) and [chainconsumer.py](https://samreay.github.io/ChainConsumer/usage.html)

See also:
- [ReferenceFrameRotations.jl](https://github.com/JuliaSpace/ReferenceFrameRotations.jl)
""",
astropy = ["asdf-astropy"],
astropy = ["astropy.visualization"],
),
```

> [!NOTE]
> The overall `ecosystem` object that this entry is stored in determines the order of the top level dropdown menus on the site (`highlevel`) and how each package appears on both pages, alphabetically by package name (`name`). Packages under the JuliaAstro organization are listed as their bare name, while packages outside of the organization have their parent repo name prepended to it, e.g., `eschnett/ASDF2.jl`
> The overall `ecosystem` object that this entry is stored in determines the order of the top level dropdown menus on the site (`highlevel`) and how each package appears on both pages, alphabetically by package name (`name`). Packages under the JuliaAstro organization are listed as their bare name, while packages outside of the organization have their parent repo name prepended to it, e.g., `sefffal/PairPlots.jl`

If appropriate, we appreciate a quick entry for your package in the `astropy` field that relates it to a similar package in the [Astropy ecosystem](https://www.astropy.org/). This helps new users who may be more familiar with Python get more easily oriented in the Julia ecosystem. See our [Comparison page](https://juliaastro.org/home/comparison/) for examples. If you feel that there is not a good match for your package, you can just leave the `astropy` field blank (i.e., as an empty array `[]`) and it will not appear in this page.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/community/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The core product of JuliaAstro is high quality astronomical software, including

🟢 Determine a plan for [long-term support of FITS](https://github.com/JuliaAstro/FITSIO.jl), while also improving performance and making contributions easier.

🔶 Determine a plan for long-term support of a [pure Julia implementation of FITS](https://github.com/JuliaAstro/FITSFiles.jl) and [ASDF](https://github.com/JuliaAstro/ASDF2.jl), while also improving performance and making contribution easier.
🔶 Determine a plan for long-term support of a [pure Julia implementation of FITS](https://github.com/JuliaAstro/FITSFiles.jl) and [ASDF](https://github.com/JuliaAstro/ASDF.jl), while also improving performance and making contribution easier.

🟥 Provide next-generation radio analysis tools usable by individual researchers and larger surveys with [EHTJulia coordinated packages](https://github.com/EHTJulia) and formation of a Radio Astronomy Group (RAG).

Expand Down
8 changes: 4 additions & 4 deletions src/JuliaAstroDocs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -709,12 +709,12 @@ ecosystem() = (
"Utilities" => (
"Data I/O" => (
(
name = "ASDF2.jl",
repo = "https://github.com/JuliaAstro/ASDF2.jl",
doc = "https://juliaastro.org/ASDF2.jl/dev/",
name = "ASDF.jl",
repo = "https://github.com/JuliaAstro/ASDF.jl",
doc = "https://juliaastro.org/ASDF/stable/",
tagline = "ASDF, the Advanced Scientific Data Format",
descr = """
- A new [Advanced Scientific Data Format (ASDF)](https://asdf-standard.readthedocs.io/en/latest/index.html) package, written in Julia
- A Julia implementation of the Advanced Scientific Data Format (ASDF)
""",
astropy = ["asdf-astropy"],
),
Expand Down
Loading