-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update TNRIS Lidar dataset & database against new projects in TNRIS S3 bucket #39
Comments
include in 2nd grand retiling if possible |
updating TACC's TNRIS Lidar DEM collection against the current TNRIS AWS S3 now All TNRIS Lidar DEMs & LPCs can be found at the following location at TACC: Please contact me if you have any issues with accessing the data. The following Lidar collections are being pulled now:
Here is how they are being pulled: cd /scratch/projects/tnris
while IFS= read -r line ; do aws s3 cp s3://tnris-public-data/production-data/${line}/ tnris-lidardata/${line} --recursive & done < tnris-missing-data.csv
cd /scratch/projects/tnris
aws s3 ls s3://tnris-public-data/production-data/ > tnris-public-data.csv
## use vim magic to modify above file slightly to strip out everything but the collection names
ls tnris-lidardata > tnris-tacc-data.csv
diff --suppress-common-lines -y tnris-public-data.csv tnris-tacc-data.csv > tnris-missing-data.csv
## use vim magic to capture the missing collections on the left side of the diff I have applied the following permissions against this dataset: cd /scratch/projects/tnris
find . -type d -exec bash -c "chgrp G-822180 {} ; chmod 755 {} ; chmod g+s {} ; setfacl -d -m g::rx,o::rx {}" \;
find . -type f -exec bash -c "chgrp G-822180 {} ; chmod 644 {}" \; |
|
|
cd /scratch/projects/tnris
while IFS= read -r directory ; do echo "${directory} $(~/local/bin/aws/aws s3 ls s3://tnris-public-data/production-data/${directory}/ --recursive | wc -l)" ; done < tnris-missing-data.csv
cd /scratch/projects/tnris
while IFS= read -r directory ; do echo "${directory} $(find tnris-lidardata/${directory} -type f | wc -l)" ; done < tnris-missing-data.csv
|
Update TNRIS Lidar dataset & database against new projects in TNRIS S3 bucket
for example,
stratmap21-50cm
is reported in the 2022/05/09 TNRIS availability file but not interrain_aggregator
DBThe text was updated successfully, but these errors were encountered: