stemflow.utils.plot_gif
make_sample_gif(data, file_path, col='abundance', Spatio1='longitude', Spatio2='latitude', Temporal1='DOY', figsize=(18, 9), xlims=None, ylims=None, grid=True, lng_size=20, lat_size=20, xtick_interval=None, ytick_interval=None, log_scale=False, vmin=0.0001, vmax=None, lightgrey_under=True, adder=1, dpi=300, fps=30, cmap='plasma', verbose=1)
Create a GIF visualizing spatio-temporal data using plt.imshow.
Parameters:
-
data
(DataFrame
) –Input DataFrame, pre-filtered for the target area/time.
-
file_path
(str
) –Output GIF file path.
-
col
(str
, default:'abundance'
) –Column containing the values to plot.
-
Spatio1
(str
, default:'longitude'
) –First spatial variable column.
-
Spatio2
(str
, default:'latitude'
) –Second spatial variable column.
-
Temporal1
(str
, default:'DOY'
) –Temporal variable column.
-
figsize
(Tuple[Union[float, int], Union[float, int]]
, default:(18, 9)
) –Figure size.
-
xlims
(Tuple[Union[float, int], Union[float, int]]
, default:None
) –x-axis limits.
-
ylims
(Tuple[Union[float, int], Union[float, int]]
, default:None
) –y-axis limits.
-
grid
(bool
, default:True
) –Whether to display a grid.
-
lng_size
(int
, default:20
) –Number of longitudinal pixels (resolution).
-
lat_size
(int
, default:20
) –Number of latitudinal pixels (resolution).
-
xtick_interval
(Union[float, int, None]
, default:None
) –Interval between x-ticks.
-
ytick_interval
(Union[float, int, None]
, default:None
) –Interval between y-ticks.
-
log_scale
(bool
, default:False
) –Whether to apply a logarithmic scale to the data.
-
vmin
(Union[float, int]
, default:0.0001
) –Minimum value for color scaling.
-
vmax
(Union[float, int, None]
, default:None
) –Maximum value for color scaling.
-
lightgrey_under
(bool
, default:True
) –Use light grey color for values below vmin.
-
adder
(Union[int, float]
, default:1
) –Value to add before log transformation.
-
dpi
(Union[float, int]
, default:300
) –Dots per inch for the output GIF.
-
fps
(int
, default:30
) –Frames per second for the GIF.
-
cmap
(str
, default:'plasma'
) –Colormap to use.
-
verbose
(int
, default:1
) –Verbosity level.
Source code in stemflow/utils/plot_gif.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
|