Activity log for bug #934166

Date Who What changed Old value New value Message
2012-02-17 12:41:14 Lars Butler bug added bug
2012-02-17 12:51:34 Lars Butler description --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations: List completed calculations for the current user This command prints a table of calculation ids and descriptions --list-outputs <calculation id>: List outputs/output types available for the given calculation id --export <result id> --output-dir <output dir>: Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 --output-dir /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> --output-dir <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 --output-dir /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where
2012-02-17 13:04:50 Lars Butler description The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> --output-dir <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 --output-dir /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where [et=16h] [at=] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> --output-dir <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 --output-dir /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where
2012-02-17 13:04:53 Lars Butler openquake: status New Confirmed
2012-02-17 13:04:55 Lars Butler openquake: importance Undecided Medium
2012-02-17 13:04:58 Lars Butler openquake: assignee Lars Butler (lars-butler)
2012-02-17 13:05:01 Lars Butler openquake: milestone 0.6.0
2012-02-20 11:12:20 Lars Butler openquake: status Confirmed In Progress
2012-02-20 11:18:54 Lars Butler description [et=16h] [at=] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> --output-dir <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 --output-dir /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where [et=16h] [at=] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> --output-dir <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 --output-dir /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where ---------- Export API ---------- The following basic API functions are required for the above CLI options. def get_calculations(user_name): # see --list-calculations """Get pairs of (oq_calculation_id, description) for the specified user.""" def get_outputs(oq_calculation_id): # see --list-outputs """Get pairs (output_id, output_type) for the specified calculation.""" def export(output_id, target_dir): # see --export """Export the specified output to the specified location.""" def print_result(data): """Utility method for printing the results of `get_calculation` or `get_outputs` in a nice way."""
2012-02-22 09:26:32 Lars Butler description [et=16h] [at=] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> --output-dir <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 --output-dir /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where ---------- Export API ---------- The following basic API functions are required for the above CLI options. def get_calculations(user_name): # see --list-calculations """Get pairs of (oq_calculation_id, description) for the specified user.""" def get_outputs(oq_calculation_id): # see --list-outputs """Get pairs (output_id, output_type) for the specified calculation.""" def export(output_id, target_dir): # see --export """Export the specified output to the specified location.""" def print_result(data): """Utility method for printing the results of `get_calculation` or `get_outputs` in a nice way.""" [et=16h] [at=] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where ---------- Export API ---------- The following basic API functions are required for the above CLI options. def get_calculations(user_name): # see --list-calculations   """Get pairs of (oq_calculation_id, description) for the specified user.""" def get_outputs(oq_calculation_id): # see --list-outputs   """Get pairs (output_id, output_type) for the specified calculation.""" def export(output_id, target_dir): # see --export   """Export the specified output to the specified location.""" def print_result(data):   """Utility method for printing the results of `get_calculation` or   `get_outputs` in a nice way."""
2012-02-22 16:38:05 Lars Butler description [et=16h] [at=] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where ---------- Export API ---------- The following basic API functions are required for the above CLI options. def get_calculations(user_name): # see --list-calculations   """Get pairs of (oq_calculation_id, description) for the specified user.""" def get_outputs(oq_calculation_id): # see --list-outputs   """Get pairs (output_id, output_type) for the specified calculation.""" def export(output_id, target_dir): # see --export   """Export the specified output to the specified location.""" def print_result(data):   """Utility method for printing the results of `get_calculation` or   `get_outputs` in a nice way.""" [et=16h] [at=8.5h] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where ---------- Export API ---------- The following basic API functions are required for the above CLI options. def get_calculations(user_name): # see --list-calculations   """Get pairs of (oq_calculation_id, description) for the specified user.""" def get_outputs(oq_calculation_id): # see --list-outputs   """Get pairs (output_id, output_type) for the specified calculation.""" def export(output_id, target_dir): # see --export   """Export the specified output to the specified location.""" def print_result(data):   """Utility method for printing the results of `get_calculation` or   `get_outputs` in a nice way."""
2012-02-24 18:01:18 Lars Butler tags export
2012-02-28 11:29:31 Lars Butler description [et=16h] [at=8.5h] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where ---------- Export API ---------- The following basic API functions are required for the above CLI options. def get_calculations(user_name): # see --list-calculations   """Get pairs of (oq_calculation_id, description) for the specified user.""" def get_outputs(oq_calculation_id): # see --list-outputs   """Get pairs (output_id, output_type) for the specified calculation.""" def export(output_id, target_dir): # see --export   """Export the specified output to the specified location.""" def print_result(data):   """Utility method for printing the results of `get_calculation` or   `get_outputs` in a nice way.""" [et=16h] [at=9h] The actual export action itself (for a particular artifact type) will need to be custom written for each type. The scope of this bug just includes the basic interface and initial framework bits. --------------------------------- Command line interface --------------------------------- A few new command line options will be added: --list-calculations:   List completed calculations for the current user   This command prints a table of calculation ids and descriptions  --list-outputs <calculation id>:   List outputs/output types available for the given calculation id  --export <result id> <output dir>:   Export a given set of out puts to the specified output dir -------------------- Example usage -------------------- $ openquake --list-calculations 7: Disaggregation for Zürich 18: Classical PSHA for my garden 1283: Uniform Hazard Spectra for the state of Iowa $ openquake --list-outputs 1283 686: uh_spectra $ openquake --export 686 /home/lars/uhs_data/iowa_uhs/ # print some message about which files where created and where ---------- Export API ---------- The following basic API functions are required for the above CLI options. def get_calculations(user_name): # see --list-calculations   """Get pairs of (oq_calculation_id, description) for the specified user.""" def get_outputs(oq_calculation_id): # see --list-outputs   """Get pairs (output_id, output_type) for the specified calculation.""" def export(output_id, target_dir): # see --export   """Export the specified output to the specified location.""" def print_result(data):   """Utility method for printing the results of `get_calculation` or   `get_outputs` in a nice way."""
2012-02-28 14:43:08 Lars Butler openquake: status In Progress Fix Committed
2013-04-08 10:34:56 Lars Butler openquake: status Fix Committed Fix Released