List of listed buildings in Auchterless, Aberdeenshire

This is a list of listed buildings in the parish of Auchterless in Aberdeenshire, Scotland.

List

Name Location Date Listed Grid Ref. [note 1] Geo-coordinates Notes LB Number [note 2] Image
Home Farm Of Blackford, Dovecot 57°24′35″N 2°29′34″W Category B 3027
Mains Of Badenscoth, Fragment Of Old House, Outbuildings, Walled Garden With Barn On E. With Gatepiers 57°26′28″N 2°30′09″W Category C(S) 3025
Old Parish Church Of Auchterless (St. Donan) 57°27′51″N 2°28′44″W Category B 3045
Duff Of Hatton Mausoleum, Auchterless Churchyard 57°27′49″N 2°28′44″W Category B 3019
Auchterless Churchyard 57°27′49″N 2°28′44″W Category C(S) 3020
Auchterless Parish Church 57°27′49″N 2°28′44″W Category C(S) 3044
Templand, Farmhouse 57°27′18″N 2°29′13″W Category C(S) 3023
New Mill, Mill 57°27′37″N 2°28′55″W Category B 3022
Netherthird Farmhouse 57°26′48″N 2°31′12″W Category C(S) 3026
Hatton Manor, Farmhouse 57°28′03″N 2°29′14″W Category B 3021
Knockleith House 57°27′13″N 2°29′45″W Category C(S) 3024

Key

The scheme for classifying buildings in Scotland is:

  • Category A: "buildings of national or international importance, either architectural or historic; or fine, little-altered examples of some particular period, style or building type."[1]
  • Category B: "buildings of regional or more than local importance; or major examples of some particular period, style or building type, which may have been altered."[1]
  • Category C: "buildings of local importance; lesser examples of any period, style, or building type, as originally constructed or moderately altered; and simple traditional buildings which group well with other listed buildings."[1]

In March 2016 there were 47,288 listed buildings in Scotland. Of these, 8% were Category A, and 50% were Category B, with the remaining 42% being Category C.[2]

gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```
gollark: Well, I guess that's systemd replaced.
gollark: I can define a service in a TOML file and it's automatically restarted on exit and all.
gollark: So it does actually work now.
gollark: I like it and it was really easy to serde it.

See also

Notes

  1. Sometimes known as OSGB36, the grid reference (where provided) is based on the British national grid reference system used by the Ordnance Survey.
    "Guide to National Grid". Ordnance Survey. Retrieved 2007-12-12.
    "Get-a-map". Ordnance Survey. Retrieved 2007-12-17.
  2. Historic Environment Scotland assign a unique alphanumeric identifier to each designated site in Scotland, for listed buildings this always begins with "LB", for example "LB12345".

References

  1. "What is Listing?". Historic Environment Scotland. Retrieved 29 May 2018.
  2. Scotland's Historic Environment Audit 2016 (PDF). Historic Environment Scotland and the Built Environment Forum Scotland. pp. 15–16. Retrieved 29 May 2018.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.