|
| 1 | +# ompp_export_dat.py |
| 2 | + |
| 3 | +## Introduction |
| 4 | +`ompp_export_dat.py` is a Python utility script to export model output data from an OMPP-compatible SQLite database into `.dat` files. |
| 5 | + |
| 6 | +By processing the contents of a given SQLite database, `ompp_export_dat.py` creates a series of `.dat` files, one for each table found in the database. |
| 7 | + |
| 8 | +## Usage |
| 9 | +To run the script, invoke the Python interpreter with `ompp_export_dat.py`, followed by two arguments: the input SQLite database file and the output directory where the `.dat` files will be generated. |
| 10 | + |
| 11 | +### Example Syntax |
| 12 | +```bash |
| 13 | +python ompp_export_dat.py <input-sqlite-file> <output-directory> |
| 14 | +``` |
| 15 | + |
| 16 | +### Arguments |
| 17 | +- `<input-sqlite-file>`: The path to the SQLite database that contains OMPP model output tables. |
| 18 | +- `<output-directory>`: The path to the directory where the script will write the generated `.dat` files. |
| 19 | + |
| 20 | +## Example |
| 21 | +Below is an example invocation of the script on a Windows system. This example uses the RiskPaths model output database and exports data to the user's desktop folder `ompp_exportDAT`. |
| 22 | + |
| 23 | +```bash |
| 24 | +C:\OpenM\openm\libopenm\common> python ompp_export_dat.py C:\OpenM\models\RiskPaths\ompp\bin\RiskPaths.sqlite C:\Users\parsaba\Desktop\ompp_exportDAT |
| 25 | +``` |
| 26 | + |
| 27 | +As the script runs, it displays informational messages for each processed table and confirms where the `.dat` file is written: |
| 28 | + |
| 29 | +```plaintext |
| 30 | +ompp_export_dat: Processing table 'T01_LifeExpectancy' |
| 31 | +write_to_dat_file: Data written to 'C:\Users\parsaba\Desktop\ompp_exportDAT\T01_LifeExpectancy.dat' |
| 32 | +
|
| 33 | +ompp_export_dat: Processing table 'T02_TotalPopulationByYear' |
| 34 | +write_to_dat_file: Data written to 'C:\Users\parsaba\Desktop\ompp_exportDAT\T02_TotalPopulationByYear.dat' |
| 35 | +
|
| 36 | +ompp_export_dat: Processing table 'T03_FertilityByAge' |
| 37 | +write_to_dat_file: Data written to 'C:\Users\parsaba\Desktop\ompp_exportDAT\T03_FertilityByAge.dat' |
| 38 | +
|
| 39 | +ompp_export_dat: Processing table 'T04_FertilityRatesByAgeGroup' |
| 40 | +write_to_dat_file: Data written to 'C:\Users\parsaba\Desktop\ompp_exportDAT\T04_FertilityRatesByAgeGroup.dat' |
| 41 | +
|
| 42 | +ompp_export_dat: Processing table 'T05_CohortFertility' |
| 43 | +write_to_dat_file: Data written to 'C:\Users\parsaba\Desktop\ompp_exportDAT\T05_CohortFertility.dat' |
| 44 | +
|
| 45 | +ompp_export_dat: Processing table 'T06_BirthsByUnion' |
| 46 | +write_to_dat_file: Data written to 'C:\Users\parsaba\Desktop\ompp_exportDAT\T06_BirthsByUnion.dat' |
| 47 | +
|
| 48 | +ompp_export_dat: Processing table 'T07_FirstUnionFormation' |
| 49 | +write_to_dat_file: Data written to 'C:\Users\parsaba\Desktop\ompp_exportDAT\T07_FirstUnionFormation.dat' |
| 50 | +
|
| 51 | +ompp_export_dat: Successfully exported 'C:\OpenM\models\RiskPaths\ompp\bin\RiskPaths.sqlite' to 'C:\Users\parsaba\Desktop\ompp_exportDAT' |
| 52 | +
|
| 53 | +ompp_export_dat: Database connection closed. |
| 54 | +``` |
| 55 | + |
| 56 | +This output confirms that each table has been processed and that the corresponding `.dat` files have been created successfully. |
| 57 | + |
| 58 | +## File Contents |
| 59 | +Within each generated `.dat` file, the script includes a header line with the table name and columns, followed by rows of data. These rows are space-separated by default. |
| 60 | + |
| 61 | +## Error Handling |
| 62 | +If the input database does not exist or the output directory is invalid, the script logs an error message and stops. Database connectivity issues or unexpected runtime errors are also reported to help you diagnose and fix problems quickly. |
0 commit comments