Published
Edited
Jan 11, 2021
Insert cell
md`# Fuel Economy Data`
Insert cell
data = cors_fetch('https://gasprices.aaa.com/wp-admin/admin-ajax.php', {
body: post_data,
headers: {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
accept: "application/json, text/javascript, */*; q=0.01"
},
method: 'POST',
debug: true
})
Insert cell
post_data = {
const e = encodeURIComponent;
const i = _ => _;
return `action=${e('states_cost_data')}&${i('data[locL]')}=${e('CA')}&${i(
'data[locR]'
)}=${e('US')}`;
}
Insert cell
`data ${data.status} ${data.statusText}`
Insert cell
Insert cell
STATES = fetch_jsonp(
/^(?:.|\n)*var\s+results\s*=\s*|;\n\s*gviz\..*$|\n\s*gviz\..*$|\n.*\(\);\n?/gm
)('https://www.gstatic.com/charts/regioncoder/0/geocodes/us.js')
Insert cell
fetch_jsonp = re => async url =>
JSON.parse((await (await fetch(url)).text()).replace(re, ""))
Insert cell
US_GEO = fetch_geo(
'https://www.gstatic.com/charts/geochart/10/mapfiles/US_PROVINCES.js'
)
Insert cell
fetch_geo = url => fetch_jsonp(/^.*=|;$/g)
Insert cell
REGIONS = fetch_geo(
'https://www.gstatic.com/charts/geochart/10/info/mapList.js'
)
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more