Weather Daily (US Cities)
Daily temperature observations for major US cities with full provenance metadata.
Updated 2025-12-31License CC BY 4.0
Downloads
Preview
A small slice of the dataset for quick inspection.
| date | city | tmax_c | tmin_c |
|---|---|---|---|
| 2025-12-27 | Boston | 6.2 | -2.1 |
| 2025-12-28 | Boston | 4.8 | -3.6 |
| 2025-12-29 | Boston | 5.1 | -1.9 |
Reproducibility
Supporting artifacts and documentation.
Sources
Embed
Use this iframe snippet to embed a lightweight widget.
HTML
<iframe
src="https://www.novaaetus.com/embed/sample-weather-daily"
width="640"
height="360"
loading="lazy"
style="border:0"
></iframe>Code examples
Copy/paste examples for local, offline, or classroom use.
Python
import pandas as pd
url = "https://www.novaaetus.com/datasets/sample-weather-daily.csv"
df = pd.read_csv(url)
print(df.head())R
library(readr)
df <- read_csv("https://www.novaaetus.com/datasets/sample-weather-daily.csv")
head(df)JavaScript
const res = await fetch("https://www.novaaetus.com/datasets/sample-weather-daily.csv")
const text = await res.text()
const preview = text.split("\n").slice(0, 6).join("\n")
console.log(preview)