Skip to content

Commit

Permalink
Merge pull request #64 from alan-turing-institute/41-release-v2.1
Browse files Browse the repository at this point in the history
Update to v2.1 outputs covering all GB (#41)
  • Loading branch information
sgreenbury authored Jul 25, 2023
2 parents 4bf87ce + e1b82a7 commit 2a4fba3
Show file tree
Hide file tree
Showing 34 changed files with 9,557 additions and 5,929 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ __pycache__
node_modules
web/dist
web/*pb
/.luarc.json
132 changes: 0 additions & 132 deletions config/special/birmingham.txt

This file was deleted.

61 changes: 0 additions & 61 deletions config/special/liverpool.txt

This file was deleted.

57 changes: 0 additions & 57 deletions config/special/manchester.txt

This file was deleted.

18 changes: 0 additions & 18 deletions config/special/oxford.txt

This file was deleted.

8 changes: 6 additions & 2 deletions data/generate_manifest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ set -e
manifest=data/manifest.csv
echo 'file,bytes,checksum' > $manifest

for file in `find data/raw_data/ -type f`; do
for file in `find data/raw_data -type f`; do
echo $file
checksum=`md5sum $file | cut -d ' ' -f1`
bytes=`stat -c %s $file`
if [[ `uname -s` == 'Darwin' ]]; then
bytes=`stat -f %z $file`
else
bytes=`stat -c %s $file`
fi
echo "$file,$bytes,$checksum" >> $manifest
done
Loading

0 comments on commit 2a4fba3

Please sign in to comment.