You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -186,14 +186,14 @@ The data processing pipeline consists of modular steps that transform raw survey
186
186
4.**[Link Trips](https://bayareametro.github.io/travel-diary-survey-tools/pipeline_steps/link_trips/)** - Aggregates individual trip segments into complete journey records by detecting mode changes and transfers
6.**[Extract Tours](https://bayareametro.github.io/travel-diary-survey-tools/pipeline_steps/extract_tours/)** - Builds hierarchical tour structures (home-based tours and work-based subtours) from linked trips
189
-
7.**Weighting***(placeholder)* - Calculates expansion weights to match survey sample to population targets
189
+
7.**[Weighting](https://bayareametro.github.io/travel-diary-survey-tools/pipeline_steps/weighting/)***(placeholder)* - Calculates expansion weights to match survey sample to population targets
190
190
8.**Format Output** - Transforms canonical data to model-specific formats (DaySim, ActivitySim, etc.)
191
191
-**[DaySim Format](https://bayareametro.github.io/travel-diary-survey-tools/pipeline_steps/format_output/daysim/)** - Formats data for DaySim model input
192
192
-**[CT-RAMP Format](https://bayareametro.github.io/travel-diary-survey-tools/pipeline_steps/format_output/ctramp/)** - Formats data for CT-RAMP model input
193
-
9.**[Final Check](src/processing/final_check/README.md)** - Validates complete dataset against canonical schemas before export
193
+
9.**[Final Check](https://bayareametro.github.io/travel-diary-survey-tools/pipeline_steps/final_check/)** - Validates complete dataset against canonical schemas before export
194
194
10.**[Write Data](https://bayareametro.github.io/travel-diary-survey-tools/pipeline_steps/read_write/)** - Writes processed tables to output files with optional validation
195
195
196
-
Each step README provides detailed documentation on:
196
+
Each step links to documentation generated by the step's docstring, and provides detailed documentation on:
Copy file name to clipboardExpand all lines: src/processing/final_check/README.md
+4-59Lines changed: 4 additions & 59 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,64 +2,9 @@
2
2
3
3
# Final Check Pipeline Step
4
4
5
-
This module performs final validation checks on the complete processed dataset to ensure data quality and schema compliance. It is basically a dummy module to run Pydantic validation on all tables at the end of the pipeline.
5
+
This module performs final validation checks on the complete processed dataset to ensure data quality and schema compliance before export.
6
6
7
-
## Pipeline Steps
7
+
For detailed API documentation including validation algorithm, error handling, and implementation notes, see: [Final Check API Documentation](https://bayareametro.github.io/travel-diary-survey-tools/pipeline_steps/final_check/)
8
8
9
-
### `final_check`
10
-
11
-
Runs comprehensive validation on all canonical survey tables at the end of the pipeline.
0 commit comments