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 4e21532
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Simple2D/elastic_marmousi.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh

wget https://s3.amazonaws.com/open.source.geoscience/open_data/elastic-marmousi/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 4e21532

Please sign in to comment.