README.md

carbondater

Estimate the Age of Web Resources

Description

Methods are provided to read ‘URL’ metadata and scan web archives/use web archive ‘APIs’ to determine the approxate age of the resource.

What’s Inside The Tin

The following functions are implemented:

TODO

Installation

devtools::install_github("hrbrmstr/carbondater")

Usage

library(carbondater)
library(tidyverse)

# current verison
packageVersion("carbondater")
## [1] '0.1.0'

Carbon data a few URIs

(x <- carbondate("https://rud.is/b/2013/12/27/points-polygons-and-power-outages/"))
## Oldest publication record found: 2013-12-27 in url (1592d 8h 50m 23.6s ago)
glimpse(x)
## Observations: 5
## Variables: 3
## $ method <chr> "url", "memento", "memento", "pubdate", "last_modified"
## $ date   <dttm> 2013-12-27 00:00:00, 2014-03-30 14:18:34, 2014-01-10 02:26:45, 2013-12-27 15:30:09, NA
## $ uri    <chr> "https://rud.is/b/2013/12/27/points-polygons-and-power-outages/", "http://wayback.vefsafn.is/wayback...
(x <- carbondate("http://www.cs.odu.edu"))
## Oldest publication record found: 1997-01-02 13:01:37 in memento (7794d 19h 48m 48.7s ago)
glimpse(x)
## Observations: 8
## Variables: 3
## $ method <chr> "url", "memento", "memento", "memento", "memento", "memento", "pubdate", "last_modified"
## $ date   <dttm> NA, 1997-06-06 10:50:39, 2009-12-23 04:30:49, 2012-02-08 03:54:08, 2017-03-04 16:34:53, 1997-01-02 ...
## $ uri    <chr> "http://www.cs.odu.edu", "http://archive.is/19970606105039/http://www.cs.odu.edu/", "http://arquivo....
(x <- carbondate("http://example.org/"))
## Oldest publication record found: 2013-08-09 23:54:35 in last_modified (1731d 9h 55m 55.8s ago)
glimpse(x)
## Observations: 4
## Variables: 3
## $ method <chr> "url", "memento", "pubdate", "last_modified"
## $ date   <dttm> NA, NA, NA, 2013-08-09 23:54:35
## $ uri    <chr> "http://example.org/", "http://example.org/", "http://example.org/", "http://example.org/"
(x <- carbondate("http://www.cnn.com/2011/10/28/living/ways-to-look-better-is/index.html"))
## Oldest publication record found: 2011-10-28 in url (2383d 9h 50m 32.3s ago)
glimpse(x)
## Observations: 5
## Variables: 3
## $ method <chr> "url", "memento", "memento", "pubdate", "last_modified"
## $ date   <dttm> 2011-10-28 00:00:00, 2011-10-28 22:09:26, 2011-10-28 22:09:26, 2011-10-28 11:57:43, NA
## $ uri    <chr> "http://www.cnn.com/2011/10/28/living/ways-to-look-better-is/index.html", "http://wayback.archive-it...


hrbrmstr/carbondater documentation built on May 10, 2019, 8:06 a.m.