-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9efe5a
commit 8253019
Showing
6 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
# Create a data directory if it doesn't exist | ||
mkdir -p data | ||
|
||
# Download the data from Zenodo | ||
echo "Downloading spectra data from Zenodo..." | ||
curl -L "https://zenodo.org/records/11611178/files/multimodal_spectroscopic_dataset.zip" -o data/multimodal_spectroscopic_dataset.zip | ||
|
||
# Unzip the file | ||
echo "Extracting data..." | ||
unzip -q data/multimodal_spectroscopic_dataset.zip -d data/ | ||
|
||
# Remove the zip file to save space (optional) | ||
echo "Cleaning up..." | ||
rm data/multimodal_spectroscopic_dataset.zip | ||
|
||
echo "Download complete! Data is available in the data directory." | ||
|
||
# Make the script executable | ||
chmod +x download_spectra.sh |