Figures: renaming unassorted images

This commit is contained in:
Eric Teunis de Boone 2023-07-06 13:28:06 +02:00
parent aa4b4f6928
commit 937eb6d1ef
7 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Also found at https://icecube.wisc.edu/news/research/2016/10/neutrinos-and-gamma-rays-partnership-to-explore-extreme-universe/
Image: Juan Antonio Aguilar and Jamie Yang. IceCube/WIPAC
Figure 1.2 from
@incollection{Filipovi2021,
doi = {10.1088/2514-3433/ac2256ch1},

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

View File

@ -0,0 +1,3 @@
https://www.researchgate.net/figure/A-schematic-of-the-Pierre-Auger-Observatory-where-each-black-dot-is-a-water-Cherenkov_fig1_319524774
Hans O. Klages

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

View File

Before

Width:  |  Height:  |  Size: 3.8 MiB

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 KiB

View File

@ -137,7 +137,7 @@ def correlation_figure(y1, y2, lags=None, lag_dt=1, ax=None, fig_kwargs={}, **li
def main(N_x = 1e4, x_delay=5, separate_figures=True, fig_kwargs={}):
x = np.linspace(-2, 8, N_x)
x = np.linspace(-2, 8, int(N_x))
y1 = slanted_boxcar(x, x0=0, slant_width=0, box_width=3) + 1/4*sine(x, x0=-3/2, x1=3/2, phase=np.pi/2)
y2 = slanted_boxcar(x, x0=0+x_delay, slant_width=1, box_width=0)
@ -210,8 +210,10 @@ if __name__ == "__main__":
if args.fname == 'none':
args.fname = None
pfl.rcParams['font.size'] *= 1.5
###
figs = main(separate_figures=True, fig_kwargs=dict(figsize=(6,3)))
figs = main(separate_figures=True, fig_kwargs=dict(figsize=(6,4)))
### Save or show figures
if not args.fname: