feat(repo): Add poe observation extraction task
Extracts the yml data into a single csv file which can be more easily exported and imported into other applications. CSV file contains a row per observation.
This commit is contained in:
parent
fbd7e6c216
commit
e960d9a8e9
1 changed files with 5 additions and 0 deletions
|
@ -38,3 +38,8 @@ cmd = "quarto render"
|
|||
[tool.poe.tasks.edit]
|
||||
help = "Edit the main project file in-environment"
|
||||
cmd = "nvim"
|
||||
[tool.poe.tasks.extract]
|
||||
help = "Extract the csv data from raw yaml files"
|
||||
shell = """
|
||||
python src/data.py > 02-data/processed/extracted.csv
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue