problems with cross-correlation #69
-
Hello everyone I am currently using this code only for the part concerning the correlation and estimation of seismic velocity changes from ambient noise. Data recovery and H/V processing to determine the specific frequency range on which to work is carried out beforehand. I process data from three seismometers (RaspberryShake RS3D). The autocorrelations work very well for all three. However, when it comes to cross-correlations between the different stations and also between different components, that poses a problem. ( os.chdir(ipynb_path) ncpus = os.cpu_count()//6 ip = get_ipython() the only files created are solely from autocorrelations (for example, there are only files such as DV-AM-AM.R343A-R343A.EHE-EHE.npz and not those from cross-correlation). Here it is : Project wide parametersproj_dir : 'P:\PRODUCTION\MESURES_CONTINUES\Scripts_python\SEISMIC_survey\codes_evanna\data' log_level: 'WARNING' parameters that are network specificnet: parameters for correlation (emperical Green's function creation)co:
parameters for the estimation of time differencesdv:
parameters to compute the waveform coherencewfc: subfolder for storage of time difference results
Could the problem be more in the data itself? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi @Evalb44
With this configuration, it will only use data from the vertical/Z channel and, thus, no cross-components can be computed If you change component to allow all (i.e. to, '*' or '?'), it should work. I will close the discussion, if this doesn't solve the issue, feel free to comment again and it will be reopened. Cheers, |
Beta Was this translation helpful? Give feedback.
Hmm ok. This seems fine actually.
After going through the source code, I found something that could cause a bug.
Could you follow these three steps:
Do not change anything in your parameter file but the logging level, which should be changed to "DEBUG". Then, post the output here.
Could you make the following change to your parameters before executing the monitoring (as a workaround):
compute_velocity_change_bulk()``-method, could yo…