small fixes

This commit is contained in:
Anson 2022-05-01 23:19:20 -07:00
parent 6904e7e894
commit 87de60c556
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,4 @@
DebriSat DebriSat
GrabCAD GrabCAD
dataframe dataframe
CATIA

View File

@ -1,3 +1,4 @@
{"rule":"UPPERCASE_SENTENCE_START","sentence":"^\\Qmodels that are in the \\E(?:Dummy|Ina|Jimmy-)[0-9]+\\Q format.\\E$"} {"rule":"UPPERCASE_SENTENCE_START","sentence":"^\\Qmodels that are in the \\E(?:Dummy|Ina|Jimmy-)[0-9]+\\Q format.\\E$"}
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QWikipedia gives a different definition^[Wikipedia: Characteristic Length] that defines characteristic length as the volume divided by the surface area.\\E$"} {"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QWikipedia gives a different definition^[Wikipedia: Characteristic Length] that defines characteristic length as the volume divided by the surface area.\\E$"}
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QCalculation of Characteristic Length, @hillMeasurementSatelliteImpact slide 9\\E$"} {"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QCalculation of Characteristic Length, @hillMeasurementSatelliteImpact slide 9\\E$"}
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QCurrently, algorithms have been made that are capable of getting many key features from solid ^A mesh with a surface that is fully closed and has no holes in its geometry.\\E$"}

View File

@ -192,8 +192,8 @@ using LinearAlgebra
### `loop` Setup ### `loop` Setup
To setup for the loop that processes all of the `stl` files a dataframe has to be initalized, and To set up for the loop that processes all the `stl` files a dataframe has to be initialized, and the
the path to the folder containing all the `stl` files needs to be defined. path to the folder containing all the `stl` files needs to be defined.
```{julia} ```{julia}
#| output: false #| output: false
@ -258,11 +258,13 @@ describe(df)
::: :::
Finally, the dataset can be saved to a `csv` file for Matlab to import.
```julia ```julia
CSV.write("scaled_dataset.csv", df) CSV.write("scaled_dataset.csv", df)
``` ```
Finally, the dataset can be saved to a `csv` file for Matlab to import. ---
## Gathering Data ## Gathering Data