Page 1 of 1
About process HV error
Posted: Mon Mar 03, 2025 11:08 pm
by ESBornand
Dear, I have some files to process HV *.SEG2, however when processing it throws me a screen and does not allow me to advance, "Add signal id 1 to component Vertical of station R001 at 55 0 0"
I attach reference image and file.
Thanks.
Re: About process HV error
Posted: Tue Mar 04, 2025 11:58 am
by IgnazioC
Hello,
your data seems to have 2 kinds of problem (see "original data"):
1) they are all loaded as vertical;
2) "Rec o" in "Table", have different values.
You need to edit table values (see "edit - lock table edition" image), with the rigth values of type of sensor per channel and it should work (see "final" image).
Bye
Re: About process HV error
Posted: Tue Apr 01, 2025 7:08 am
by admin
Hi,
I confirm IgnazioC's comments. A H/V station is supposed to have three components and located at the same coordinates (Receiver X and Y must be the same for all components). You can also modify these values with a script in menu
Edit/Set header.
For instance, in your particular case, you should run:
Code: Select all
for(i=0; i<signals.length; i+=3) {
signals[i].component="Z"
signals[i+1].component="N"
signals[i+2].component="E"
}
for(i=0; i<signals.length; i++) {
signals[i].receiverX=0;
signals[i].receiverY=0;
signals[i].receiverZ=0;
}
Adapt the order of components to your case.