-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* All information available in the asteroid table was added to the prediction pipeline. #807 * Minor fixes * Closed #807 - Prediction pipeline now records all asteroid data for each prediction event. * Updated documentation * Added progress bar dowload external inputs * Added progress bar to update_asteroid_table command #807 * Recreate container for predict_occultation pipeline. in this moment pipeline running in local success * prediction pipeline has been updated to run in the python 3.8 environment. * Removed files related with orbit Trace #811 * New folder for Orbit Trace Pipeline * Added path coef to pipelie stage * Pipeline predict Running with py3.8 And Path Coeff running inside pipeline. Closed #812 * Update daemon.sh * Refactoring da classe dao. agora separada por arquivos para facilitar a manutenção * minor fixes
- Loading branch information
1 parent
d28fe6c
commit bd268d0
Showing
136 changed files
with
32,516 additions
and
36 deletions.
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
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 |
---|---|---|
|
@@ -58,3 +58,6 @@ env_tno | |
core_admin/.astropy | ||
|
||
database_subset/ | ||
|
||
# Parsl Runinfo | ||
predict_occultation/runinfo |
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,28 @@ | ||
# Generated by Django 3.2.18 on 2024-02-05 19:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('tno', '0058_auto_20240201_1703'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='predictionjobresult', | ||
name='calc_path_coeff_exec_time', | ||
field=models.DurationField(blank=True, help_text='Execution time of the path coeff step.', null=True, verbose_name='Calc Path Coeff Execution Time'), | ||
), | ||
migrations.AddField( | ||
model_name='predictionjobresult', | ||
name='calc_path_coeff_finish', | ||
field=models.DateTimeField(blank=True, help_text='End of path coeff.', null=True, verbose_name='Calc Path Coeff Finish'), | ||
), | ||
migrations.AddField( | ||
model_name='predictionjobresult', | ||
name='calc_path_coeff_start', | ||
field=models.DateTimeField(blank=True, help_text='Start of path coeff.', null=True, verbose_name='Calc Path Coeff Start'), | ||
), | ||
] |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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,6 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
*.pyc | ||
*.pyo |
Oops, something went wrong.