I found a matlab command to extract automatically the depth of the geographical coordinates provided:
>> getDepth([lat_mean_st123_array transpose(lat_final_line_point_mean)], [long_mean_st123_array transpose(long_final_line_point_mean)])
ans =
-2022
-4370
at_mean_st123_array and transpose(lat_final_line_point_mean) are the initial and final latitude
long_mean_st123_array and transpose(long_final_line_point_mean) are the initial and final longitude
Then, I only need to find a way to identify all lat/long coordinates along the line linking the initial and final lat/long. After that, I can apply all coordinates on the getDepth plugin to obtain all depths. Any suggestion to obtain all coordinates between the two points?
thanks,