[x] plot_style: type of gridding for the plot. 'imshow' plots the data as an image and can be interpolated, though the image is stretched to the station spacing and plot_period, the cells remain of equal size, so the interpolation might be a little skewed. For an accurate location of resistivity values use pcolormesh, which can plot the data on an irregular grid, but with no interpolation. default is 'imshow'
[x] imshow_interp: defines the interpolation method if plot_style is 'imshow', if you use 'nearest' same as pcolormesh except the lateral boxes are equal size instead of set in a grid like pcolormesh. Imshow just gives a smoother interpretation of the pseudo-section. default is 'bicubic'
[x] ftol: tolerance to extract periods relative to plot_period. default is 0.1
[x] linedir: the predominant direction of profile line. default is 'ew'
[x] aspect parameter: aspect ratio of each subplot, default is 'auto'
~~ - [ ] Color Bar parameters ~~
[x] fig_num: number of figure instance, default is 1
[x] period_limits: (min_period, max_period) limits on the plotting period in a linear scale. default is None and extracts limits from data
[x] phase_cma: color map for phase plots, at the moment, only supports
[x] phase_limits: (min_phase, max_phase) minimum and maximum phase in degrees for coloring default is (0, 90)
[x] plot_period: np.ndarray(periods) array of periods to plot. default is None, which extracts the longest period from the input data assuming that the longest is the most complete if it is not input manually. If there are same lengths, it picks the first one it finds.
[x] plot_xx: boolean to plot Z_xx, default is 'n'
[x] plot_xy: boolean to plot Z_xy, default is 'y'
[x] plot_yx: boolean to plot Z_yx, default is 'y'
[x] plot_yy: boolean to plot Z_yy, default is 'n'
[x] res_cmap: color map for phase plots, at the moment, only supports colormaps from mtpy.imaging.mtcolors
[x] res_limits: (min_resistivity, max_resistivity) limits on resistivity in log scale, default is (0,3)
- [ ] stationid: min and max indices to extract from each station name. default is (0,4)
[x] text_location: location for text label for each resistivity subplot. location is in relative coordinates of the data. default is None, which locates the label in the upper left hand corner
[x] text_size: size of text for sub plot label, default is font_size
[x] text_weight: weight of text label font
[x] text_xpad: padding from x-axis, as a percentage of the xmin, default is 0.95
[x] text_ypad: padding from y-axis, as a percentage of the ymin, default is 0.95
[x] xtickspace: integer telling at what interval to place station names as the tick labels, in case they are closely spaced. default is 1
GUI to configure
- [ ] stationid: min and max indices to extract from each station name. default is (0,4)