Skip to content

Commit

Permalink
Merge pull request #32 from tibonto/29-remove-dot-notation-from-dfgo-…
Browse files Browse the repository at this point in the history
…terms-uris

caught all those dots
  • Loading branch information
André Castro authored Aug 20, 2024
2 parents dc232b4 + 8238db3 commit a98859a
Show file tree
Hide file tree
Showing 3 changed files with 705 additions and 705 deletions.
2 changes: 1 addition & 1 deletion csv/2024-2028/CVS_Creation_Process.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
4. remove header rows (except row 1): 57, 137, 169
5. remove empty rows (search in column A)
6. fill-in the missing values (in Review Board, Subject Area, Scientific Discipline columns) - this is tedious but important, as we cannot reply on merged cells in the CSV. And it is at the core of the tree structure
7. simplified the number notation removing the dots, ie. '1.22-01' -> '122-01'. Used regex `^(\d)\.(\d)` and replacement `$1$2`
7. simplified the number notation removing the dots, ie. '1.22-01' -> '122-01'. Used regex `^(\d)\.(\d)` with replacement `$1$2`. And regex `,"(\d)\.(\d\d)` with replacement `,"$1$2` for references to parent nodes

## Join both CSVs

Expand Down
Loading

0 comments on commit a98859a

Please sign in to comment.