Quarto is cool!

news
Author

Matt Fisher

Published

March 27, 2023

This is a test announcement rendered using Quarto ❤️

With Quarto, I can render math:

\[\tau > \pi\]

…and I can calculate results:

import math
math.tau > math.pi
True

… and I can show maps and plots:

import cartopy.crs as ccrs
import matplotlib.pyplot as plt

ax = plt.axes(projection=ccrs.NorthPolarStereo(central_longitude=-45))
ax.set_extent([-180, 180, 90, 40], crs=ccrs.PlateCarree())
ax.stock_img()

# TODO: Put some data on the map

plt.show()