In my case, in the twistpy code, the azimuth will divide in two parts, such as (1) azi1 =[0,30] (2) azi1=[170,180]
So, is this possible during filtering we can provide both cases of azimuth together, for ex either we can do->
data_filtered_majorazimuth = analysis.filter(
plot_filtered_attributes=True,dop=[.8,1],elli=[.2,1],azi1=[0,30],inc1=[20,90]
)
plt.show()
or, we can do->
data_filtered_majorazimuth = analysis.filter(
plot_filtered_attributes=True,dop=[.8,1],elli=[.2,1],azi1=[170,180],inc1=[20,90]
)
plt.show()
So, is this possible we can filter both cases of azimuth together and then plot? Please help asap. Thank you
In my case, in the twistpy code, the azimuth will divide in two parts, such as (1) azi1 =[0,30] (2) azi1=[170,180]
So, is this possible during filtering we can provide both cases of azimuth together, for ex either we can do->
data_filtered_majorazimuth = analysis.filter(
plot_filtered_attributes=True,dop=[.8,1],elli=[.2,1],azi1=[0,30],inc1=[20,90]
)
plt.show()
or, we can do->
data_filtered_majorazimuth = analysis.filter(
plot_filtered_attributes=True,dop=[.8,1],elli=[.2,1],azi1=[170,180],inc1=[20,90]
)
plt.show()
So, is this possible we can filter both cases of azimuth together and then plot? Please help asap. Thank you