gpdcreport in commandline

All geopsy forums are in their very early stage. So a restricted number of forums has been created. If your question does not fit into one of the available categories, post here.
Post Reply
aldiraharja
Posts: 1
Joined: Tue Mar 20, 2012 5:54 am

gpdcreport in commandline

Post by aldiraharja »

Hello dr.Wathelet,

I was working on the interpretation of microtremor data acquisition.
so far, the output in the form of dispersion curves and the ground profile has been obtained from dinver.
I would like to inquire about the use gpdcreport in windows commandline.
I've tried command gpdcreport -o run_01.report, then gpdcreport -vs run_01.report, but the results obtained is # 0 in run_01, whereas the results of my dinver already save.
how to use and open the *.report of the results already obtained from dinver in gpdcreport in commandline ?
My goal is to determine the values ​​of Vp and Vs of the dispersion curve has been obtained.

thank you for your attention.
regards,
aldi.
admin
Site Admin
Posts: 822
Joined: Mon Aug 13, 2007 11:48 am
Location: ISTerre
Contact:

Re: gpdcreport in commandline

Post by admin »

Option -o probably destroyed the content of your original report file. Do not use -o unless you know what you are doing. Run "gpdcreport -h all" for details.

To get the 100 best vs profiles:

Code: Select all

gpdcreport run_01.report -vs -best 100 > 100_best_vs_profiles.txt
Syl
Posts: 4
Joined: Tue Jun 26, 2012 9:35 am

Re: gpdcreport in commandline

Post by Syl »

Hi Marc,

I would like to use the -index option of gpdcreport to export dispersion curve corresponding to the ith model.
I tried

Code: Select all

gpdcreport run_01.report -pR 0 -index 1 > test.txt
to export the dispersion curve of the first mode of the first model but it doesn't print anything in the output file. I know I don't use the -index option correctly. Could you explain me how to use it ?

Thx

Syl
admin
Site Admin
Posts: 822
Joined: Mon Aug 13, 2007 11:48 am
Location: ISTerre
Contact:

Re: gpdcreport in commandline

Post by admin »

Option '-index' has no argument. You have to provide the index values through stdin

Code: Select all

echo 54 | gpdcreport 3layers_1pc.report -index
# 10097 3layers_1pc.report
# Layered model 54: value=1.02637
3
6.0557599951097369484 992.59292353639978046 206.24110177966454671 2000
9.0745359721217564442 2156.9413175987397153 280.76166378409209301 2000
0 3957.6932523848936398 782.4188537211714447 2000

Code: Select all

cat list
1
2
3
4

Code: Select all

cat list | gpdcreport 3layers_1pc.report -index
# 10097 3layers_1pc.report
# Layered model 1: value=0.215197
3
74.328410892471964644 2335.6583694080618443 964.24668930185987392 2000
156.82688078277135446 3341.7870840834689261 1075.7795096309109795 2000
0 3841.2980792844941789 1325.7819972600634628 2000
# Layered model 2: value=7.00451
3
86.292977548145231026 721.91690815113975077 160.82030281605153732 2000
305.39176115275694201 813.47404178018632592 208.30351279746119531 2000
0 3341.7870840834689261 1508.8635824011048499 2000
# Layered model 3: value=4.77618
3
24.387146333033051349 1420.1709698097861292 190.46019727978719516 2000
448.81069224366279968 1463.2035703659926185 269.80644038080544078 2000
0 1732.8784723851460967 782.4188537211714447 2000
# Layered model 4: value=6.55765
3
87.155907323626678362 1420.1709698097861292 169.0237545197954887 2000
6.3112050736578311216 1991.8991186813284457 200.17558148508501858 2000
0 3547.3743287727602365 806.12692740777674771 2000
Post Reply