The Turing Geovisualisation Engine (TGVE) is an open source, web-based, interactive visual analytics tool for geospatial(Zou et al. 2018) data analysis, built using R and React (JavaScript).
“The most profound technologies are those that disappear”
~ (Weiser 1991)
tgver
(not on CRAN yet)function App() {
return (
<Eatlas
defaultURL='https://api.coronavirus.data.gov.uk/v1/data?filters=areaType=utla&structure={"date":"date","newCases":"newCasesBySpecimenDate","ctyua19cd":"areaCode"}&format=csv'
geographyURL='https://raw.githubusercontent.com/tgve/example-data/main/utlas.geojson'
geographyColumn='ctyua19cd'
column="newCases"
dark="false"
/>
);
}
The R vignette: https://tgve.github.io/tgver/articles/r-and-js.html
We can pass data and geography sources (all API values) to an instance of the TGVE.
www.instance.com?defaultURL=url&geographyURL=geoURL&geographycolumn=name
www.instance.com?...filter={column:[1,2]}