Skip to content

Commit

Permalink
Change default magnitude cutoff
Browse files Browse the repository at this point in the history
  • Loading branch information
fintelia committed Apr 9, 2023
1 parent cfe299d commit 3903e78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cargo run --release

This will stream about 700 GB Gaia data and save it in condensed form (still ~27 GB) to your local cache directory. If interrupted, it will resume where it left off. Once complete, the program will output `cubemap-1024x1024.png` and `net-1024x1024.png` to the local directory.

Stars brighter than a set magnitude (defaulting to 7.0) are not written to the cubemap. They are instead stored in `bright-stars.bin` so they can be composited on afterwards.
Stars brighter than a set magnitude (defaulting to 6.0) are not written to the cubemap. They are instead stored in `bright-stars.bin` so they can be composited on afterwards.

# License

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct Args {
#[clap(value_name = "RESOLUTION", index = 1, default_value = "1024")]
size: usize,
/// Cutoff magnitude to include stars in the cubemap.
#[clap(value_name = "MIN_MAGNITUDE", index = 2, default_value = "7.0")]
#[clap(value_name = "MIN_MAGNITUDE", index = 2, default_value = "6.0")]
min_magnitude: f32,
}

Expand Down

0 comments on commit 3903e78

Please # to comment.