mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-19 08:41:54 -05:00
* Python script to download all the columns needed * Update task file. Use strings instead of std::filesystem::path, so that relative paths and tokens can be used
13 lines
432 B
Plaintext
13 lines
432 B
Plaintext
local dataFolder = "D:/data/prepared_exoplanets_data"
|
|
return {
|
|
{
|
|
Type = "ExoplanetsDataPreparationTask",
|
|
|
|
InputDataFile = "${DATA}/tasks/exoplanets/downloaded_exo_data.csv",
|
|
InputSPECK = "${SYNC}/http/digitaluniverse_exoplanets_speck/2/expl.speck",
|
|
TeffToBvFile = "${SYNC}/http/exoplanets_data/2/teff_bv.txt",
|
|
OutputBIN = dataFolder .. "/exoplanets_data.bin",
|
|
OutputLUT = dataFolder .. "/lookup.txt"
|
|
}
|
|
}
|