-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating Docs folder and improving README. #131
Conversation
…into issue-101-docs
docs/getting-started.md
Outdated
5. Run it | ||
|
||
```bash | ||
atsc -csv <input-file> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably be: cargo run --release -- -csv <input-file>
Or otherwise have a prereq step that copies target/release/atsc
to atsc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great catch!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the diff confusing me or was this not addressed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I addressed it in the README.md
not on this file -_-.
I need to do a release, I'll fix it there.
added iowait.csv fixed getting-started.md
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! I left some nits, but everything looks fine.
@@ -36,11 +66,11 @@ Internally ATSC uses the following methods for time series fitting: | |||
* Interpolation - Catmull-Rom | |||
* Interpolation - Inverse Distance Weight | |||
|
|||
For a more detailed insight into ATSC read the paper here: [ATSC - A novel approach to time-series compression](https://some.url.com) | |||
For a more detailed insight into ATSC read the paper here: [ATSC - A novel approach to time-series compression](https://github.com/instaclustr/atsc/tree/main/paper/ATCS-AdvancedTimeSeriesCompressor.pdf) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that the PDF is not available for now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, it will be valid once we merge. It is pointing to main branch.
atsc/demo/run_demo.sh
Outdated
array_data=$(echo $file_content | grep -oP '\[.*?\]') | ||
js_array="const idwData = $array_data;" | ||
echo "$js_array" >> $htmlfile | ||
|
||
file_content=$(<tmp_poly.txt) | ||
array_data=$(echo $file_content | grep -oP '\[.*?\]') | ||
js_array="const polyData = $array_data;" | ||
echo "$js_array" >> $htmlfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that file_content
indentations can be adjusted here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
atsc/demo/run_demo_csv.sh
Outdated
file_content=$(<tmp_idw.txt) | ||
array_data=$(echo $file_content | grep -oP '\[.*?\]') | ||
js_array="const idwData = $array_data;" | ||
echo "$js_array" >> $htmlfile | ||
|
||
file_content=$(<tmp_poly.txt) | ||
array_data=$(echo $file_content | grep -oP '\[.*?\]') | ||
js_array="const polyData = $array_data;" | ||
echo "$js_array" >> $htmlfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that file_content
indentations can be adjusted here also
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
LGTM! |
This PR adds proper DOCs and improves the README based on feedback.