Skip to content

Commit

Permalink
fetch elastic marmousi script
Browse files Browse the repository at this point in the history
  • Loading branch information
mloubout committed Aug 2, 2019
1 parent bbb6bc9 commit 86d0908
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Simple2D/elastic_marmousi.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh

wget https://s3.amazonaws.com/open.source.geoscience/open_data/elastic-marmousi/elastic-marmousi-model.tar.gz

tar xzvf elastic-marmousi-model.tar.gz && rm elastic-marmousi-model.tar.gz

cp elastic-marmousi-model/model/MODEL_DENSITY_1.25m.segy.tar.gz .
cp elastic-marmousi-model/model/MODEL_S-WAVE_VELOCITY_1.25m.segy.tar.gz .
cp elastic-marmousi-model/model/MODEL_P-WAVE_VELOCITY_1.25m.segy.tar.gz .

for i in *.tar.gz; do
tar xzvf "$i" && rm -r "$i"
done

0 comments on commit 86d0908

Please sign in to comment.