From 949db22a9172568dcbddfdd4492bf51fa3a9b278 Mon Sep 17 00:00:00 2001 From: Daniel Pett Date: Mon, 26 Dec 2022 11:37:38 +0000 Subject: [PATCH] Refactor: Add authors function, add sketchfab icon --- gatsby-browser.js | 1 + gatsby-node.js | 77 +++++++++------ src/components/icon.js | 15 +++ src/components/structure/authors.js | 26 +++++ src/components/structure/logos.js | 2 +- src/content/page/about-the-project.md | 3 +- src/content/page/about.md | 3 +- src/content/page/data-centre.md | 3 +- src/content/page/learning.md | 5 +- src/content/page/people.md | 3 +- ...-sourcing-crowd-funding-and-archaeology.md | 2 +- ...the-value-of-crowd-sourcing-archaeology.md | 9 +- ...c-archaeology-in-response-to-the-crisis.md | 11 +-- .../2014/01/29/british-museum-presentation.md | 4 + .../hello-micropasts-thrilled-to-meet-you.md | 12 +-- .../post/2014/04/27/micropastsgoestoparis.md | 1 - .../post/2014/04/30/preparing-the-index.md | 18 ++-- .../3d-modelling-of-the-arreton-down-hoard.md | 1 + src/content/post/2014/06/05/crowd-sourcing.md | 1 - .../post/2014/06/13/3d-modelling-via-sfm.md | 8 +- ...sts-at-digital-humanities-2014-lausanne.md | 5 + ...george-and-agnes-horsfields-photographs.md | 3 + src/content/post/2014/10/06/743.md | 6 +- .../2014/10/17/micropasts-crowd-funding.md | 14 ++- .../30/3d-models-of-olduvai-gorge-handaxes.md | 7 +- ...d-the-significance-of-lba-weapon-hoards.md | 10 +- ...analysis-of-middle-bronze-age-palstaves.md | 8 +- .../2014/12/11/later-bronze-age-ornaments.md | 10 +- ...seum-collection-in-the-bronze-age-index.md | 14 ++- src/content/post/2015/02/13/crowdsourced.md | 9 +- ...urcing-and-crowd-funding-our-human-past.md | 2 - .../2015/03/23/answers-in-the-amphoras.md | 2 - .../the-micropasts-conference-on-youtube.md | 20 +++- ...ry-rose-micropasts-collaboration-week-1.md | 12 ++- ...icropasts-knowledge-exchanges-workshops.md | 10 +- ...-micropasts-knowledge-exchange-workshop.md | 8 +- .../2015/12/11/i-was-made-in-the-year-1510.md | 12 ++- .../12/18/a-hollow-human-head-of-bronze.md | 5 +- ...he-river-thames-in-the-bronze-age-index.md | 8 +- src/content/post/2016/01/13/ees.md | 11 ++- ...heritage-from-the-mary-rose-to-hms-hood.md | 9 +- ...ubblica-e-crowdsourcing-al-museo-egizio.md | 6 +- .../14/morte-e-rinascita-nel-nuovo-regno.md | 7 +- .../07/quando-un-ippopotamo-puo-salvarti.md | 5 +- ...dsourcing-an-excavation-project-in-iraq.md | 5 +- .../24/a-beginners-step-into-crowdsourcing.md | 4 + ...a-new-3d-photo-masking-project-join-now.md | 4 + ...ivot-crowdsourced-photo-masking-project.md | 4 + ...-and-square-bowl-a-crowdsourcing-effort.md | 4 + ...he-data-science-behind-digital-heritage.md | 6 ++ src/pages/authors.js | 78 +++++++++++++++ src/templates/authors.js | 98 +++++++++++++++++++ src/templates/blog-page.js | 5 +- src/templates/tags.js | 3 +- 54 files changed, 500 insertions(+), 119 deletions(-) create mode 100644 src/components/icon.js create mode 100644 src/components/structure/authors.js create mode 100644 src/pages/authors.js create mode 100644 src/templates/authors.js diff --git a/gatsby-browser.js b/gatsby-browser.js index 61dedc20..345b5aa3 100644 --- a/gatsby-browser.js +++ b/gatsby-browser.js @@ -1,4 +1,5 @@ // You can delete this file if you're not using it + import "@popperjs/core/dist/umd/popper.min" import "bootstrap/dist/css/bootstrap.min.css" import "bootstrap/dist/js/bootstrap.min" diff --git a/gatsby-node.js b/gatsby-node.js index 51ccf78e..2c98b33e 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -8,45 +8,49 @@ exports.createPages = async ({ actions,graphql }) => { return graphql(` { - tagsGroup: allMarkdownRemark(limit: 2000) { + tagsGroup: allMarkdownRemark(limit: 2000) { group(field: {frontmatter: {tag: SELECT}}) { fieldValue } } - blogPosts: allMarkdownRemark( - filter: {frontmatter: {type: {eq: "post"}}} - sort: {frontmatter: {date: DESC}} - limit: 1000 - ) { - edges { - node { - id - frontmatter { - date - permalink - title + authorsGroup: allMarkdownRemark(limit: 2000) { + group(field: {frontmatter: {author: SELECT}}) { + fieldValue } } - } - } - blogPages: allMarkdownRemark( - filter: {frontmatter: {type: {eq: "page"}}} - sort: {frontmatter: {date: DESC}} - limit: 1000 - ) { - edges { - node { - id - frontmatter { - date - permalink - title + blogPosts: allMarkdownRemark( + filter: {frontmatter: {type: {eq: "post"}}} + sort: {frontmatter: {date: DESC}} + limit: 1000 + ) { + edges { + node { + id + frontmatter { + date + permalink + title + } + } + } + } + blogPages: allMarkdownRemark( + filter: {frontmatter: {type: {eq: "page"}}} + sort: {frontmatter: {date: DESC}} + limit: 1000 + ) { + edges { + node { + id + frontmatter { + date + permalink + title + } + } } } } - } -} - `).then(result => { if (result.errors) { return Promise.reject(result.errors) @@ -84,6 +88,19 @@ exports.createPages = async ({ actions,graphql }) => { }, }) }); + const author = result.data.authorsGroup.group + const authorTemplate = require.resolve("./src/templates/authors.js") + // Make tag pages + author.forEach(author => { + createPage({ + path: `/authors/${_.kebabCase(author.fieldValue)}/`, + component: authorTemplate, + context: { + author: author.fieldValue, + }, + }) + }); + paginate({ createPage: createPage, diff --git a/src/components/icon.js b/src/components/icon.js new file mode 100644 index 00000000..0489bd16 --- /dev/null +++ b/src/components/icon.js @@ -0,0 +1,15 @@ +import React from "react"; +import Icons from "../images/sketchfab-logo-white.svg"; +import PropTypes from 'prop-types'; + const Icon = ({ color, size }) => ( + + + +); + +Icon.propTypes = { + color: PropTypes.string, + size: PropTypes.number +}; + +export default Icon; \ No newline at end of file diff --git a/src/components/structure/authors.js b/src/components/structure/authors.js new file mode 100644 index 00000000..cedfd05d --- /dev/null +++ b/src/components/structure/authors.js @@ -0,0 +1,26 @@ +import React from "react" +import {kebabCase, startCase} from "lodash"; +import PropTypes from "prop-types" +import {Col, Row} from "react-bootstrap"; +import {Link} from "gatsby"; + +const Authors = ({author}) => ( + + {author && + {author.map((item, i) => ( + {startCase(item)} + ))} + } + +) + +Authors.propTypes = { + author: PropTypes.array +} + +Authors.defaultProps = { + author: ``, +} + +export default Authors; \ No newline at end of file diff --git a/src/components/structure/logos.js b/src/components/structure/logos.js index 6644b765..c90f8633 100644 --- a/src/components/structure/logos.js +++ b/src/components/structure/logos.js @@ -43,7 +43,7 @@ const Logos = () => { + height={100} placeholder={'NONE'} /> diff --git a/src/content/page/about-the-project.md b/src/content/page/about-the-project.md index aed29120..afd2fb07 100644 --- a/src/content/page/about-the-project.md +++ b/src/content/page/about-the-project.md @@ -3,9 +3,10 @@ title: 'About the project' date: '2013-10-18T14:43:58+01:00' status: publish permalink: /about-the-project -excerpt: '' type: page id: 26 +author: + - Chiara Bonacchi --- This project will be using the [MicroPasts](http://micropasts.org/ "Micropasts platform") platform and crowd-sourcing methods to allow traditional academics and other communities in archaeology to co-produce innovative open datasets, and thereafter pioneers a novel participatory model in which these same groups co-design and micro-fund follow-up research. diff --git a/src/content/page/about.md b/src/content/page/about.md index 2053a340..63c55a76 100644 --- a/src/content/page/about.md +++ b/src/content/page/about.md @@ -3,9 +3,10 @@ title: About date: '2014-04-08T16:17:44+01:00' status: publish permalink: /about -excerpt: '' type: page id: 341 +author: + - Daniel Pett --- **MicroPasts** is a web platform that brings together full-time academic researchers, volunteer archaeological and historical societies and other interested members of the public to collaborate on new kinds of research about archaeology, history and heritage. It is a place where enthusiasts (of any background) can not only create high-quality research data together, but also collaboratively design and fund entirely new research projects. In particular, we want to improve how people traditionally distinguished as ‘academics’, ‘professionals’ and ‘volunteers’ cooperate with one another (as well as with other people out there who as yet have no more than a passing interest). diff --git a/src/content/page/data-centre.md b/src/content/page/data-centre.md index b3e3eda5..4896e79f 100644 --- a/src/content/page/data-centre.md +++ b/src/content/page/data-centre.md @@ -3,7 +3,8 @@ title: 'Data Centre' date: '2014-04-08T16:19:16+01:00' status: publish permalink: /data-centre -excerpt: '' +author: + - Chiara Bonacchi type: page id: 345 --- diff --git a/src/content/page/learning.md b/src/content/page/learning.md index d283ae66..8c46c5fb 100644 --- a/src/content/page/learning.md +++ b/src/content/page/learning.md @@ -3,9 +3,10 @@ title: 'Learning Resources' date: '2014-04-28T11:06:57+01:00' status: publish permalink: /learning -excerpt: '' -type: page +stype: page id: 398 +author: + - Daniel Pett --- While contributing to MicroPasts, you may have wondered about (a) the ultimate purpose of specific data collection exercises, (b) how certain archives, objects, etc. fit into the wider archaeology or history of the period/region, and (c) how you might further make use of newly created data or explore certain kinds of methods offline. diff --git a/src/content/page/people.md b/src/content/page/people.md index 31643246..a1e8cc82 100644 --- a/src/content/page/people.md +++ b/src/content/page/people.md @@ -3,9 +3,10 @@ title: People date: '2013-10-18T14:29:29+01:00' status: publish permalink: /people -excerpt: '' type: page id: 16 +author: + - Chiara Bonacchi --- **Project team** diff --git a/src/content/post/2013/10/22/crowd-sourcing-crowd-funding-and-archaeology.md b/src/content/post/2013/10/22/crowd-sourcing-crowd-funding-and-archaeology.md index 83d22237..0a1649d4 100644 --- a/src/content/post/2013/10/22/crowd-sourcing-crowd-funding-and-archaeology.md +++ b/src/content/post/2013/10/22/crowd-sourcing-crowd-funding-and-archaeology.md @@ -6,7 +6,7 @@ permalink: /2013/10/22/crowd-sourcing-crowd-funding-and-archaeology excerpt: '' featuredImage: ../../../../uploads/2013/10/MP_SOCIALMEDIA.jpg author: - - Chiara Bonnachi + - Chiara Bonacchi - Daniel Pett type: post id: 91 diff --git a/src/content/post/2013/11/05/what-is-the-value-of-crowd-sourcing-archaeology.md b/src/content/post/2013/11/05/what-is-the-value-of-crowd-sourcing-archaeology.md index 5388874f..21dc6013 100644 --- a/src/content/post/2013/11/05/what-is-the-value-of-crowd-sourcing-archaeology.md +++ b/src/content/post/2013/11/05/what-is-the-value-of-crowd-sourcing-archaeology.md @@ -5,17 +5,16 @@ status: publish permalink: /2013/11/05/what-is-the-value-of-crowd-sourcing-archaeology featuredImage: ../../../../uploads/2013/11/3501625083_99f1091857_c.jpg author: - - Chiara Bonnachi -excerpt: '' + - Chiara Bonacchi type: post id: 144 tag: - crowd-funding - crowd-sourcing - - 'Cultural Heritage' - - 'Digital Humanities' + - Cultural Heritage + - Digital Humanities - MicroPasts - - 'Public Archaeology' + - Public Archaeology --- Hello, diff --git a/src/content/post/2013/12/09/public-archaeology-in-response-to-the-crisis.md b/src/content/post/2013/12/09/public-archaeology-in-response-to-the-crisis.md index 78d51ab2..6a779ea3 100644 --- a/src/content/post/2013/12/09/public-archaeology-in-response-to-the-crisis.md +++ b/src/content/post/2013/12/09/public-archaeology-in-response-to-the-crisis.md @@ -5,19 +5,18 @@ status: publish permalink: /2013/12/09/public-archaeology-in-response-to-the-crisis featuredImage: ../../../../uploads/2013/12/unnamed.jpg author: - - Chiara Bonnachi -excerpt: '' + - Chiara Bonacchi type: post id: 337 tag: - archaeology - - 'Archeologia Pubblica' + - Archeologia Pubblica - crowd-funding - crowd-sourcing - - 'economic crisis' + - economic crisis - financing - - 'Public Archaeology' - - 'public engagement' + - Public Archaeology + - public engagement --- Hello, diff --git a/src/content/post/2014/01/29/british-museum-presentation.md b/src/content/post/2014/01/29/british-museum-presentation.md index 8d02bcae..221670cd 100644 --- a/src/content/post/2014/01/29/british-museum-presentation.md +++ b/src/content/post/2014/01/29/british-museum-presentation.md @@ -11,6 +11,10 @@ category: tag: - presentation - 'British Museum' + - 'Digital Humanities' + - 'Public Archaeology' + - 'open data' + - 'open source' author: - Daniel Pett --- diff --git a/src/content/post/2014/01/31/hello-micropasts-thrilled-to-meet-you.md b/src/content/post/2014/01/31/hello-micropasts-thrilled-to-meet-you.md index b6cf4fe3..94959e20 100644 --- a/src/content/post/2014/01/31/hello-micropasts-thrilled-to-meet-you.md +++ b/src/content/post/2014/01/31/hello-micropasts-thrilled-to-meet-you.md @@ -9,23 +9,23 @@ id: 443 author: - Adi Keinan-Schoonbaert tag: - - '3D modelling' + - 3D modelling - archaeology - archives - - 'citizen science' + - citizen science - co-design - co-production - Communities - crowd-funding - crowd-sourcing - - 'Cultural Heritage' + - Cultural Heritage - databases - - 'Digital Humanities' + - Digital Humanities - history - MicroPasts - - 'open data' + - open data - photography - - SfM + - SFM - transcription --- My name is Adi, and I’m a research associate at the [UCL Institute of Archaeology](https://www.ucl.ac.uk/archaeology/). Earlier this month I joined the [MicroPasts team](https://blog.micropasts.org/people/) – and I’m especially excited about this project as it feeds into my background and interests in so many ways. Before coming to London I was an archaeologist and academic back home in Israel. A few years ago, I created the [West Bank and East Jerusalem Archaeological Database (WBEJAD)](http://digitallibrary.usc.edu/cdm/landingpage/collection/p15799coll74), an inventory of archaeological sites excavated or surveyed by Israeli archaeologists since the occupation of the West Bank in 1967. Archaeological databases in the Occupied Territories were also later on the subject of my PhD dissertation. So, I’m passionate about topics such as documentation, recording, and the management of archaeological and heritage data. Now, let me tell you why I’m so enthusiastic about MicroPasts. diff --git a/src/content/post/2014/04/27/micropastsgoestoparis.md b/src/content/post/2014/04/27/micropastsgoestoparis.md index 59ce7269..38ed162a 100644 --- a/src/content/post/2014/04/27/micropastsgoestoparis.md +++ b/src/content/post/2014/04/27/micropastsgoestoparis.md @@ -10,7 +10,6 @@ author: - Daniel Pett tag: - archaeology - - Austin - Co-creation - co-design - Communities diff --git a/src/content/post/2014/04/30/preparing-the-index.md b/src/content/post/2014/04/30/preparing-the-index.md index f7374455..37393b7e 100644 --- a/src/content/post/2014/04/30/preparing-the-index.md +++ b/src/content/post/2014/04/30/preparing-the-index.md @@ -13,15 +13,13 @@ tag: - Benin - 'Bronze Age collection curator' - Crowdsourcing - - 'Daniel Lombraña González' - - 'Daniel Pett' + - pybossa + - scifabric - Flickr - - 'Jennifer Wexler' - - 'Neil Wilkin' --- Since late 2013, the MicroPasts team has been preparing the [British Museum](http://britishmuseum.org)‘s (BM) Bronze Age Index to be the first offering on our [crowd-sourcing platform](http://crowdsourced.micropasts.org "The MicroPasts crowd sourcing platform"). This corpus consists of around 30,000 (roughly A4 sized) cards (holding information going back to as early as 1913). The majority of these are double sided and generally have text on the front and a line drawing on the reverse (there are many variants that have been discovered, such as large fold out shield plans.) -![MicroPasts Application British Museum Bronze Age Index Drawer B16 · Contribute](../../../../uploads/2014/04/MicroPasts-·-Application-British-Museum-Bronze-Age-Index-Drawer-B16-·-Contribute.png) +![MicroPasts Application British Museum Bronze Age Index Drawer B16 · Contribute](../../../../uploads/2014/04/MicroPasts-·-Application-British-Museum-Bronze-Age-Index-Drawer-B16-·-Contribute.png) Over the last few years, several curators have mooted exercises ([Ben Roberts](https://www.dur.ac.uk/archaeology/staff/?id=10573), now at Durham University attempted to turn the transcription into an AHRC funded collaborative Doctoral Award) to turn this amazing resource into a digital archive, but this had not come to fruition until the advent of the MicroPasts project. Internal discussions had been raging on how best to deal with these cards for a number of years, and it was felt that this project could perhaps be the ideal solution and provide museum and public interaction of a new type, which the BM had not explored previously. @@ -33,7 +31,7 @@ The equipment needed for this is relatively straight forward, the BM has acquire The first drawer scanned is known as A9 ([this application](http://crowdsourced.micropasts.org/app/drawA9/ "Application A9") on the platform), and this was done by the Bronze Age Curator Neil Wilkin ([@nwilkinBM](https://twitter.com/NWilkinBM "neil on Twitter") on Twitter) over a few weeks whilst dispensing with his other duties. Once Jennifer returned, scanning started in earnest! These high resolution images were then stored in various places to facilitate good data preservation (on an external 4TB hard drive, the Portable Antiquities Scheme server cluster and onto Amazon S3) and they were then stitched together by Daniel Pett ([@portableant](http://twitter.com/portableant) on Twitter), as composite images using a [simple python script](https://github.com/findsorguk/MicroPasts-Scripts/blob/master/imageStitch.py "Github script for image stitching") and then uploaded to Flickr (for example see [this set](https://www.flickr.com/photos/micropasts/sets/72157641305131374/ "Flickr set")) for the crowd-sourcing platform to access and then present them as tasks for our audience to assist with. All of these images have been released under the most liberal licence that Flickr permits (we would have ideally liked to make them CC0, but this option does not exist) and so they are served up under a CC-BY licence. The data that will be transcribed, will also be made available for download and reuse by anyone, under a CC0 licence. The embedded tweet below, shows an example of one of the stitched cards: -> Playing with Python scripts to merge Bronze Age Palstave images together for [@MicroPasts](https://twitter.com/MicroPasts?ref_src=twsrc%5Etfw) An example image attached. [pic.twitter.com/Xe0Rdb7prz](http://t.co/Xe0Rdb7prz)< +

Playing with Python scripts to merge Bronze Age Palstave images together for @MicroPasts An example image attached. pic.twitter.com/Xe0Rdb7prz

— Daniel Pett (@DEJPett) February 21, 2014
The platform that we’re using for serving up the crowd sourcing tasks has been created by Daniel Lombraña González (lead developer – [@teleyinex](https://twitter.com/teleyinex "Daniel's twitter profile") on Twitter) and the [Pybossa](http://pybossa.com "Pybossa site") team, and it is a departure from the usual technology stack that the project team has used previously. Installation of the platform is straightforward and it was deployed on to [Portable Antiquities Scheme](http://finds.org.uk) hardware in around 15 minutes. We then employed Daniel to assist with building the transcription application skeleton (in conjunction with project lead Andy Bevan (not on Twitter!) and Daniel Pett) that would be used for each drawer, whilst we also developed our own look and feel to give MicroPasts some visual identity. If you’re interested, the code is available on [GitHub](http://github.com/findsorguk) and if you have suggestions from improvements, you could either fork the code or comment on our [community forum](http://community.micropasts,org). @@ -43,15 +41,11 @@ For the last few months, building up to launch, lots of debugging and user testi And then we launched and tasks are ongoing: -> [@MicroPasts](https://twitter.com/MicroPasts?ref_src=twsrc%5Etfw) Launches today!Help us discover the lost secrets of the Bronze Age Index at the BM: [pic.twitter.com/nyTdUwjCyA](http://t.co/nyTdUwjCyA)> + This project is very exciting for the BM and especially for our curatorial staff. It could unlock new opportunities and Neil sums up very succinctly, why we are doing this public archaeology project, so we’ll leave it to him: -> Opening the treasures of the Bronze Age to the widest public is why I get up, I would love your help: -> -> — Neil Wilkin (@NWilkinBM) [April 16, 2014](https://twitter.com/NWilkinBM/status/456421634237140992?ref_src=twsrc%5Etfw) - - + Thank you for participating! \ No newline at end of file diff --git a/src/content/post/2014/05/30/3d-modelling-of-the-arreton-down-hoard.md b/src/content/post/2014/05/30/3d-modelling-of-the-arreton-down-hoard.md index c875705c..8fd6f6bc 100644 --- a/src/content/post/2014/05/30/3d-modelling-of-the-arreton-down-hoard.md +++ b/src/content/post/2014/05/30/3d-modelling-of-the-arreton-down-hoard.md @@ -20,6 +20,7 @@ tag: - metalwork - 'Society of Antiquaries of London' - 'Stuart Needham' + - 3D modelling --- We are in the process of adding a new photo-masking application to the MicroPasts site. This is going to be a bit of a ‘pop-up shop’ as it will only include one Bronze Age British hoard, although it is one of considerable importance. diff --git a/src/content/post/2014/06/05/crowd-sourcing.md b/src/content/post/2014/06/05/crowd-sourcing.md index 0ea59b60..6fa0be11 100644 --- a/src/content/post/2014/06/05/crowd-sourcing.md +++ b/src/content/post/2014/06/05/crowd-sourcing.md @@ -14,7 +14,6 @@ tag: - Crowdsourcing - GitHub - 'Jeff Howe' - - large - MicroPasts - Sourcing - 'transcription applications' diff --git a/src/content/post/2014/06/13/3d-modelling-via-sfm.md b/src/content/post/2014/06/13/3d-modelling-via-sfm.md index 8b4a47bc..2a64e9c9 100644 --- a/src/content/post/2014/06/13/3d-modelling-via-sfm.md +++ b/src/content/post/2014/06/13/3d-modelling-via-sfm.md @@ -3,17 +3,19 @@ title: '3D Modelling via SfM' date: '2014-06-13T10:18:26+01:00' status: publish permalink: /2014/06/13/3d-modelling-via-sfm -excerpt: '' type: post id: 647 author: - Andy Bevan tag: - '3D computer graphics' - - '3D modeling' - - 'Computer vision' + - 3D modelling + - Computer vision - 'Shape analysis' - 'Susie Green' + - 'Structure from motion' + - 'Virtual reality' + - SFMs featuredImage: ../../../../uploads/2014/06/axe2.png --- **What is it and how can it be used?** diff --git a/src/content/post/2014/07/10/micropasts-at-digital-humanities-2014-lausanne.md b/src/content/post/2014/07/10/micropasts-at-digital-humanities-2014-lausanne.md index 6ad65e18..9d89b28c 100644 --- a/src/content/post/2014/07/10/micropasts-at-digital-humanities-2014-lausanne.md +++ b/src/content/post/2014/07/10/micropasts-at-digital-humanities-2014-lausanne.md @@ -13,6 +13,11 @@ tag: - Switzerland - 'Digital Humanities' - 'Digital Humanities 2014' + - 'citizen science' + - 'crowd-sourcing' + - 'crowd-funding' + - archaeology + - 'community archaeology' --- The project has just been represented at the Digital Humanities 2014 conference in Lausanne, Switzerland.
diff --git a/src/content/post/2014/09/08/in-the-lens-george-and-agnes-horsfields-photographs.md b/src/content/post/2014/09/08/in-the-lens-george-and-agnes-horsfields-photographs.md index 6d28eadd..77f0165b 100644 --- a/src/content/post/2014/09/08/in-the-lens-george-and-agnes-horsfields-photographs.md +++ b/src/content/post/2014/09/08/in-the-lens-george-and-agnes-horsfields-photographs.md @@ -13,6 +13,9 @@ tag: - 'George Horsfield' - 'George Horsfield Collection' - UCL + - 'UCL Institute of Archaeology' + - 'citizen science' + - 'crowd-sourcing' --- **[Amara Thornton](mailto:amara.thornton@ucl.ac.uk) (British Academy Postdoctoral Research Fellow, UCL Institute of Archaeology)** diff --git a/src/content/post/2014/10/06/743.md b/src/content/post/2014/10/06/743.md index cf9298db..f3216d4a 100644 --- a/src/content/post/2014/10/06/743.md +++ b/src/content/post/2014/10/06/743.md @@ -5,12 +5,12 @@ status: publish permalink: /2014/10/06/crowdpsourcing-crowdfunding-the-collaborative-management-of-archaeological-heritage author: - Chiara Bonacchi -excerpt: '' type: post id: 743 --- A presentation given by Chiara Bonacchi at the 20th annual meeting of the European Association of Archaeologists, Istanbul, 10-14 September 2014. *Chiara* - - \ No newline at end of file +
+ +
\ No newline at end of file diff --git a/src/content/post/2014/10/17/micropasts-crowd-funding.md b/src/content/post/2014/10/17/micropasts-crowd-funding.md index 34702f5d..3c61182d 100644 --- a/src/content/post/2014/10/17/micropasts-crowd-funding.md +++ b/src/content/post/2014/10/17/micropasts-crowd-funding.md @@ -6,15 +6,21 @@ permalink: /2014/10/17/micropasts-crowd-funding author: - Daniel Pett - Chiara Bonacchi -excerpt: '' type: post id: 762 -category: - - Research +tag: + - 'crowd-funding' + - 'crowd-sourcing' + - 'financing' + - 'crowdfunding' + - archaeology + - 'community archaeology' + - 'citizen science' + - 'Digital Humanities' --- Hello! -We’ve just launched the latest part of theMicroPasts project: a crowd-funding website. Have a [look and see if you can help](https://crowdfunded.micropasts.org). +We’ve just launched the latest part of the MicroPasts project: a crowd-funding website. Have a [look and see if you can help](https://crowdfunded.micropasts.org). Through this website, it is possible to raise up to £5,000 to fund archaeological or historical research projects that have been developed and will be undertaken collaboratively by professionals with institutional links (e.g. working in universities, museums, libraries, etc.) and any volunteer group offline or online. We welcome project proposals from any team,who can be based anywhere in the world. The only kind of activity that we do not fund is excavation. diff --git a/src/content/post/2014/10/30/3d-models-of-olduvai-gorge-handaxes.md b/src/content/post/2014/10/30/3d-models-of-olduvai-gorge-handaxes.md index 38648e84..ba6709a0 100644 --- a/src/content/post/2014/10/30/3d-models-of-olduvai-gorge-handaxes.md +++ b/src/content/post/2014/10/30/3d-models-of-olduvai-gorge-handaxes.md @@ -8,8 +8,13 @@ author: featuredImage: ../../../../uploads/2014/10/EFHR-LO-2.jpg type: post id: 770 -category: +tag: - Research + - '3D models' + - 'Prehistoric technology' + - 'Olduvai Gorge' + - Handaxes + - Citizen Science --- These two handaxes belong to the EF-HR locality, in Olduvai Gorge (Tanzania). EF-HR is located in the North side of the Olduvai Gorge. It was discovered in 1931 by Sir Evelyn Fuchs and Professor Hans Reck, and named after their initials. The first excavations were undertaken by M. Leakey in 1963, and then by OGAP ([Olduvai Geochronology Archaeology Project](http://www.olduvai-gorge.org)) since 2009. diff --git a/src/content/post/2014/11/17/things-that-go-bump-in-the-night-the-selborne-blackmoor-hoard-the-significance-of-lba-weapon-hoards.md b/src/content/post/2014/11/17/things-that-go-bump-in-the-night-the-selborne-blackmoor-hoard-the-significance-of-lba-weapon-hoards.md index 5dd4c69a..7eccdbad 100644 --- a/src/content/post/2014/11/17/things-that-go-bump-in-the-night-the-selborne-blackmoor-hoard-the-significance-of-lba-weapon-hoards.md +++ b/src/content/post/2014/11/17/things-that-go-bump-in-the-night-the-selborne-blackmoor-hoard-the-significance-of-lba-weapon-hoards.md @@ -8,8 +8,16 @@ author: featuredImage: ../../../../uploads/2014/11/B1hKvcdCEAIudbw.jpg type: post id: 782 -category: +tag: - Research + - 'Late Bronze Age' + - 'Hoards' + - 'Selborne-Blackmoor Hoard' + - Hoards + - Metalwork + - 'Citizen Science' + - 'Crowd-sourcing' + - 'BAIs' --- ![Part of the Blackmoor Hoard in the British Museum Collections © Trustees of the British Museum](../../../../uploads/2014/11/Figure-1-–-Part-of-the-Blackmoor-Hoard-in-the-British-Museum-Collections-©-Trustees-of-the-British-Museum.jpg) diff --git a/src/content/post/2014/11/18/phd-project-analysis-of-middle-bronze-age-palstaves.md b/src/content/post/2014/11/18/phd-project-analysis-of-middle-bronze-age-palstaves.md index 8853c79e..cd7c1796 100644 --- a/src/content/post/2014/11/18/phd-project-analysis-of-middle-bronze-age-palstaves.md +++ b/src/content/post/2014/11/18/phd-project-analysis-of-middle-bronze-age-palstaves.md @@ -6,11 +6,15 @@ permalink: /2014/11/18/phd-project-analysis-of-middle-bronze-age-palstaves featuredImage: ../../../../uploads/2014/11/palstave2.png author: - Robert Kaleta -excerpt: '' type: post id: 798 -category: +tag: - Research + - 'PhD' + - 'Middle Bronze Age' + - 'Palstave' + - 'Morphology' + - 'museums' --- Hi everyone. My name is Robert Kaleta and I am a 1st year PhD student at the Institute of Archaeology, University College London, interested in using some of the data generated via the MicroPasts photo-masking applications for my research. For the next 3 years I will be looking very closely at various aspects of the Middle Bronze Age (MBA) metalwork with particular focus on palstaves. Metal artefacts are crucial to our understanding of the Bronze Age, and the ‘palstave’ is one of the period’s most well-known and widely-distributed forms. Analysis of prehistoric metal finds reveals not only technological aspects of production but also wider relationship between metal, metalworkers and prehistoric societies. I am hoping to use the metalwork as an indicator of various social and economic processes occurring during that time, through which the social organisation of Bronze Age communities across Britain can be explored. The project itself will employ a range of techniques, such as point pattern analysis, chemical composition analysis, and geometric morphometrics, to synthesise the existing data and generate new information. Point pattern analysis allows us to understand the spatial relationship between data points, i.e. whether they tend to congregate or not, and at what scales, which can be a useful indicator of the layout of the Bronze Age communities. This approach, when combined with chemical composition analysis can also shed light on metal circulation, reuse and trade networks. diff --git a/src/content/post/2014/12/11/later-bronze-age-ornaments.md b/src/content/post/2014/12/11/later-bronze-age-ornaments.md index 195ba21b..277051d9 100644 --- a/src/content/post/2014/12/11/later-bronze-age-ornaments.md +++ b/src/content/post/2014/12/11/later-bronze-age-ornaments.md @@ -6,11 +6,17 @@ permalink: /2014/12/11/later-bronze-age-ornaments featuredImage: ../../../../uploads/2014/12/East-Dean-hoard.jpg author: - Alex Davies -excerpt: '' type: post id: 810 -category: +tag: - Research + - 'East Dean' + - 'hoard' + - 'Bronze Age' + - 'archaeology' + - 'community archaeology' + - 'citizen science' + - 'crowd-sourcing' --- Bronze Age ornaments form a major category of metal artefact. Those made of gold are some of the most captivating prehistoric objects known to us. They are probably the most personal objects surviving as they were worn on the body and, as is still true today, were a daily and ever-present signaller of identity, status and an individual’s personality. diff --git a/src/content/post/2015/01/22/the-devizeswiltshire-museum-collection-in-the-bronze-age-index.md b/src/content/post/2015/01/22/the-devizeswiltshire-museum-collection-in-the-bronze-age-index.md index dda15075..3400ce8e 100644 --- a/src/content/post/2015/01/22/the-devizeswiltshire-museum-collection-in-the-bronze-age-index.md +++ b/src/content/post/2015/01/22/the-devizeswiltshire-museum-collection-in-the-bronze-age-index.md @@ -6,11 +6,19 @@ permalink: /2015/01/22/the-devizeswiltshire-museum-collection-in-the-bronze-age- featuredImage: ../../../../uploads/2015/01/StonehengeWorldHeritageSitemap.png author: - Jennifer Wexler -excerpt: '' type: post id: 838 -category: - - Research +tag: + - BAI + - 'Bronze Age Index' + - 'Devizes Museum' + - 'Devizes/Wiltshire Museum' + - Museum + - 'Wiltshire Museum' + - 'Weapons' + - 'Stonehenge' + - Archaeology + - 'Digital Humanities' --- In the process of digitising the Bronze Age Index, we have come across a small collection of Index cards recording artefacts in the Wiltshire Museum (formerly the Devizes Museum: ). This was recently written up by Culture24 [(http://www.culture24.org.uk/history-and-heritage/archaeology/art513504-bronze-age-finds-from-barrow-cemeteries-in-stonehenge-country-to-be-recreated-in-3d](http://www.culture24.org.uk/history-and-heritage/archaeology/art513504-bronze-age-finds-from-barrow-cemeteries-in-stonehenge-country-to-be-recreated-in-3d)), highlighting our ongoing collaboration with the Wiltshire Museum as we continue to research this collection. diff --git a/src/content/post/2015/02/13/crowdsourced.md b/src/content/post/2015/02/13/crowdsourced.md index 41562b9c..7b100515 100644 --- a/src/content/post/2015/02/13/crowdsourced.md +++ b/src/content/post/2015/02/13/crowdsourced.md @@ -8,8 +8,15 @@ author: featuredImage: ../../../../uploads/2015/02/Lisa-IMG_7285-e1423843094252.jpg type: post id: 863 -category: +tag: - Research + - 'crowd-sourcing' + - 'crowd-funding' + - archaeology + - 'community archaeology' + - 'citizen science' + - 'Digital Humanities' + - volunteering --- I’ve been a MicroPasts contributor for around two months now, a good time to write this post about why I wanted to be one of the ‘sourced’ crowd and what I’ve got out of it so far. To begin with, here’s *my* brief summary of MicroPasts: it’s a web-based collection of archaeological projects that anyone can get involved with. The MicroPasts site hosts lots of content, some of which I’ll return to later, but let me start with ‘crowdsourcing’. diff --git a/src/content/post/2015/03/19/crowd-sourcing-and-crowd-funding-our-human-past.md b/src/content/post/2015/03/19/crowd-sourcing-and-crowd-funding-our-human-past.md index 9abf5a37..ac890628 100644 --- a/src/content/post/2015/03/19/crowd-sourcing-and-crowd-funding-our-human-past.md +++ b/src/content/post/2015/03/19/crowd-sourcing-and-crowd-funding-our-human-past.md @@ -8,8 +8,6 @@ author: - Daniel Pett type: post id: 876 -category: - - Research tag: - 3D - 'Aberystwyth University' diff --git a/src/content/post/2015/03/23/answers-in-the-amphoras.md b/src/content/post/2015/03/23/answers-in-the-amphoras.md index 577d7275..b462b433 100644 --- a/src/content/post/2015/03/23/answers-in-the-amphoras.md +++ b/src/content/post/2015/03/23/answers-in-the-amphoras.md @@ -8,8 +8,6 @@ author: featuredImage: ../../../../uploads/2015/03/amphtypes.jpg type: post id: 879 -category: - - Research tag: - Amphora - Ceramics diff --git a/src/content/post/2015/05/19/the-micropasts-conference-on-youtube.md b/src/content/post/2015/05/19/the-micropasts-conference-on-youtube.md index 653cfb7f..1ffe629d 100644 --- a/src/content/post/2015/05/19/the-micropasts-conference-on-youtube.md +++ b/src/content/post/2015/05/19/the-micropasts-conference-on-youtube.md @@ -8,14 +8,28 @@ author: featuredImage: ../../../../uploads/2015/05/16793372877_15ec18896b_c.jpg type: post id: 887 -category: +tag: - Research + - 'crowd-sourcing' + - 'crowd-funding' + - 'crowdfunding' + - 'community archaeology' + - 'citizen science' + - 'Digital Humanities' + - 'conference' + - 'archaeology' + - Youtube + - 'archaeological research' --- If you missed the MicroPasts conference on ‘Crowdsourcing and Crowdfunding our Human Past’, on 31 March 2015, you can now catch-up! -We are publishing the videos of the presentations given on the day on our [MicroPasts YouTube channel](https://www.youtube.com/channel/UCHoSalhpL825RuHkQh2tbjg). +We have published the videos of the presentations given on the day on our [MicroPasts YouTube channel](https://www.youtube.com/channel/UCHoSalhpL825RuHkQh2tbjg). + +
+ +
Have a look and let us know any thoughts or questions! -*[Chiara](http://www.ucl.ac.uk/archaeology/people/staff/bonacchi)* \ No newline at end of file +Chiara \ No newline at end of file diff --git a/src/content/post/2015/05/29/the-mary-rose-micropasts-collaboration-week-1.md b/src/content/post/2015/05/29/the-mary-rose-micropasts-collaboration-week-1.md index 9ea3b1c0..02cdafca 100644 --- a/src/content/post/2015/05/29/the-mary-rose-micropasts-collaboration-week-1.md +++ b/src/content/post/2015/05/29/the-mary-rose-micropasts-collaboration-week-1.md @@ -8,8 +8,18 @@ author: featuredImage: ../../../../uploads/2015/05/Bone-angel-81A2851-©-Mary-Rose-Trust.jpg type: post id: 892 -category: +tag: - Research + - 'crowd-sourcing' + - 'crowd-funding' + - 'citizen science' + - 'crowdfunding' + - 'community archaeology' + - 'Digital Humanities' + - 'archaeology' + - 'maritime archaeology' + - '3D modelling' + --- On Friday 22nd May, the Mary Rose Trust and MicroPasts teams launched a collaborative [3D photo-masking pilot project](http://crowdsourced.micropasts.org/app/photomaskingMaryRose/) on the MicroPasts crowdsourcing platform. The aim is to create 3D models for three of the museum’s artefacts. We are really grateful to MicroPasts collaborators for helping complete 37% of the application already (as of 29th May)! It is exciting to see people engaging with the collection online, and it will be interesting to discover how the 3D models are viewed, downloaded and used, once developed. diff --git a/src/content/post/2015/09/22/micropasts-knowledge-exchanges-workshops.md b/src/content/post/2015/09/22/micropasts-knowledge-exchanges-workshops.md index 156c3e1f..743e5262 100644 --- a/src/content/post/2015/09/22/micropasts-knowledge-exchanges-workshops.md +++ b/src/content/post/2015/09/22/micropasts-knowledge-exchanges-workshops.md @@ -6,11 +6,17 @@ permalink: /2015/09/22/micropasts-knowledge-exchanges-workshops featuredImage: ../../../../uploads/2015/09/Screenshot 2022-12-22 at 23.13.21.png author: - Chiara Bonacchi -excerpt: '' type: post id: 942 -category: +tag: - Research + - 'crowd-sourcing' + - 'crowd-funding' + - 'knowledge exchange' + - 'workshops' + - 'community archaeology' + - 'citizen science' + - 'Digital Humanities' --- Two back-to-back workshops were held on 23 September at the UCL Institute of Archaeology. The aim of the MicroPasts Knowledge Exchanges workshops was to share the practices, shortcomings and achievements experienced by the MicroPasts project and use these as fodder for wider discussion about the use and evaluation of both crowd-sourcing and crowd-funding within a broader heritage ‘ecology’. diff --git a/src/content/post/2015/11/12/initial-reflections-on-the-micropasts-knowledge-exchange-workshop.md b/src/content/post/2015/11/12/initial-reflections-on-the-micropasts-knowledge-exchange-workshop.md index 43f4aa48..7cd2f1db 100644 --- a/src/content/post/2015/11/12/initial-reflections-on-the-micropasts-knowledge-exchange-workshop.md +++ b/src/content/post/2015/11/12/initial-reflections-on-the-micropasts-knowledge-exchange-workshop.md @@ -6,11 +6,15 @@ permalink: /2015/11/12/initial-reflections-on-the-micropasts-knowledge-exchange- featuredImage: ../../../../uploads/2015/11/FMLr6-6XMAA2rQH.jpg author: - James Doeser -excerpt: '' type: post id: 1107 -category: +tag: - Research + - 'crowd-sourcing' + - 'crowd-funding' + - policy + - archaeology + - review --- How do we use crowd-based methods? What benefits do they generate? Where do they fall short? How can we sustain them? And how do they support the work of organisations in a heritage ecology? These were the questions addressed at a knowledge exchange workshop hosted by the [UCL Institute of Archaeology](http://www.ucl.ac.uk/archaeology) on 23 September. It builds upon the [MicroPasts](http://micropasts.org/) project, which has put nearly £400,000 of Arts and Humanities Research Council money to work in creating crowd-sourcing, crowd-funding and forum platforms to support the collaborative study of the human past. The workshop was an opportunity to share the learning from the MicroPasts project and reflect further upon how this insight can be deployed more widely across the heritage world. Those present were experts from across the fundraising, policy, evaluation and public engagement professions. diff --git a/src/content/post/2015/12/11/i-was-made-in-the-year-1510.md b/src/content/post/2015/12/11/i-was-made-in-the-year-1510.md index 43fe7f4f..9507a8dc 100644 --- a/src/content/post/2015/12/11/i-was-made-in-the-year-1510.md +++ b/src/content/post/2015/12/11/i-was-made-in-the-year-1510.md @@ -8,8 +8,14 @@ author: featuredImage: ../../../../uploads/2015/12/Bell1.jpg type: post id: 1194 -category: +tag: - Research + - 'crowd-sourcing' + - 3D modelling + - archaeology + - 'archaeological research' + - maritime archaeology + - 'Mary Rose' --- The Mary Rose Trust are very excited to be working with Micropasts again. This time, we will be working towards the production of a 3D model of the *Mary Rose* bell, one of the most iconic items to have been raised from the wreck site. @@ -19,6 +25,4 @@ The bell was cast in bronze and metallurgy results showed it was made from coppe On board ships, the bell was used to signal the time, to mark the change of the watch and as a warning, particularly to other ships in fog. -*The Mary Rose team* - - \ No newline at end of file + \ No newline at end of file diff --git a/src/content/post/2015/12/18/a-hollow-human-head-of-bronze.md b/src/content/post/2015/12/18/a-hollow-human-head-of-bronze.md index 4b6f4a15..203bad01 100644 --- a/src/content/post/2015/12/18/a-hollow-human-head-of-bronze.md +++ b/src/content/post/2015/12/18/a-hollow-human-head-of-bronze.md @@ -8,8 +8,11 @@ author: featuredImage: ../../../../uploads/2015/11/EthiopianHead-copy.png type: post id: 1141 -category: +tag: - Research + - 'crowd-sourcing' + - British Museum + - Ethiopia --- ![EthiopianHead copy](../../../../uploads/2015/11/EthiopianHead-copy.png) diff --git a/src/content/post/2016/01/08/wonders-of-the-deep-bronze-age-finds-from-the-river-thames-in-the-bronze-age-index.md b/src/content/post/2016/01/08/wonders-of-the-deep-bronze-age-finds-from-the-river-thames-in-the-bronze-age-index.md index ec679dff..3403adbd 100644 --- a/src/content/post/2016/01/08/wonders-of-the-deep-bronze-age-finds-from-the-river-thames-in-the-bronze-age-index.md +++ b/src/content/post/2016/01/08/wonders-of-the-deep-bronze-age-finds-from-the-river-thames-in-the-bronze-age-index.md @@ -7,8 +7,14 @@ author: - Jennifer Wexler type: post id: 1295 -category: +tag: - Research + - 'crowd-sourcing' + - citizen science + - 'community archaeology' + - bronze age + - 'archaeology' + - BAI featuredImage: ../../../../uploads/2016/01/Lady_of_the_Lake.jpg --- ![Lady of the Lake drawing by M. Bowley](../../../../uploads/2016/01/Lady_of_the_Lake.jpg) diff --git a/src/content/post/2016/01/13/ees.md b/src/content/post/2016/01/13/ees.md index 68ee82b5..c8825280 100644 --- a/src/content/post/2016/01/13/ees.md +++ b/src/content/post/2016/01/13/ees.md @@ -8,8 +8,15 @@ author: featuredImage: ../../../../uploads/2016/01/Fig-1-TA.NEG_.30-31.0036.jpg type: post id: 1351 -category: - - Research +tag: + - Egypt + - 'crowd-sourcing' + - 'crowd-funding' + - archaeology + - 'archives' + - Egypt Exploration Society + - Museum + - Volunteers --- In 2015 the Egypt Exploration Society expanded its annual archive [volunteer programme](http://ees.ac.uk/archive/volunteerprojects.html) and made digitization its primary goal. Though the Society had already scanned a large number of archival documents and images, the [new referencing system](http://ees.ac.uk/news/index/264.html) developed for the archive during 2014 had to be implemented across its virtual collections. To this end, the Society’s collections of object cards were felt to present the greatest opportunity to test this system and provide valuable research material for teams still working in the field today. diff --git a/src/content/post/2016/06/03/naval-heritage-from-the-mary-rose-to-hms-hood.md b/src/content/post/2016/06/03/naval-heritage-from-the-mary-rose-to-hms-hood.md index 60b41d45..bf537fe3 100644 --- a/src/content/post/2016/06/03/naval-heritage-from-the-mary-rose-to-hms-hood.md +++ b/src/content/post/2016/06/03/naval-heritage-from-the-mary-rose-to-hms-hood.md @@ -9,8 +9,15 @@ author: featuredImage: ../../../../uploads/2016/06/Screen-Shot-2016-06-03-at-12.37.41.png type: post id: 1397 -category: +tag: - Research + - 'crowd-sourcing' + - Mary Rose + - maritime archaeology + - archaeology + - museum + - 3d modelling + - volunteers --- In March 2015, the team at the [Mary Rose Trust](http://www.maryrose.org/about-us/) met with [Chiara](http://www.ucl.ac.uk/archaeology/people/staff/honorary/bonacchi), who introduced MicroPasts and the various [projects](http://crowdsourced.micropasts.org/project/category/featured/) that the MicroPasts team had been involved in. The Mary Rose Trust team were hugely impressed with the passion of the [collaborators](http://crowdsourced.micropasts.org/account/) that had contributed to the online projects as well as the quality of the work that had been produced and the possibility of achieving a lot in a very short space of time! diff --git a/src/content/post/2016/06/14/archeologia-pubblica-e-crowdsourcing-al-museo-egizio.md b/src/content/post/2016/06/14/archeologia-pubblica-e-crowdsourcing-al-museo-egizio.md index 8e4f3cf3..1699ae57 100644 --- a/src/content/post/2016/06/14/archeologia-pubblica-e-crowdsourcing-al-museo-egizio.md +++ b/src/content/post/2016/06/14/archeologia-pubblica-e-crowdsourcing-al-museo-egizio.md @@ -8,8 +8,12 @@ author: featuredImage: ../../../../uploads/2016/06/Screen-Shot-2016-06-02-at-20.10.03.png type: post id: 1364 -category: +tag: - Research + - public archaeology + - 'crowd-sourcing' + - 'crowd-funding' + - citizen science --- **Archeologia e Pubblico**. Comprendere come la ricerca e i risultati da essa conseguiti divengono (o meno) parte del nostro vivere contemporaneo, studiare le implicazioni etiche, sociali, economiche, politiche derivanti dall’analisi archeologica della cultura materiale e dalla sua comunicazione e fruizione in senso più lato. Queste sono le tematiche affrontate dal settore dell’Archeologia Pubblica, declinazione italiana dell’inglese *Public Archaeology.* diff --git a/src/content/post/2016/06/14/morte-e-rinascita-nel-nuovo-regno.md b/src/content/post/2016/06/14/morte-e-rinascita-nel-nuovo-regno.md index 51303c12..a57e7ac7 100644 --- a/src/content/post/2016/06/14/morte-e-rinascita-nel-nuovo-regno.md +++ b/src/content/post/2016/06/14/morte-e-rinascita-nel-nuovo-regno.md @@ -8,8 +8,13 @@ author: featuredImage: ../../../../uploads/2016/06/boxME2-e1462396809335.jpg type: post id: 1366 -category: +tag: - Research + - 'crowd-sourcing' + - Egypt + - 'Egyptian archaeology' + - mortuary + - 'mummy studies' --- ![](../../../../uploads/2016/06/boxME2-e1462396809335.jpg) A partire dalla XVIII dinastia (1550-1295 a. C.) e fino all’età tolemaica (332-30 a. C.) le statuette funerarie, note con il nome di *[ushabty](https://blog.micropasts.org/2014/06/23/shabtis-and-the-ancient-egyptian-afterlife/),* furono spesso disposte all’interno di cofanetti per la maggior parte di legno. Durante tutto il Nuovo Regno (1550-1069 a. C.) e l’inizio del Terzo Periodo Intermedio (1069-945 a.C.) essi assunsero la forma di cappelle cultuali in miniatura. diff --git a/src/content/post/2016/12/07/quando-un-ippopotamo-puo-salvarti.md b/src/content/post/2016/12/07/quando-un-ippopotamo-puo-salvarti.md index 448b8ccb..e986cdc5 100644 --- a/src/content/post/2016/12/07/quando-un-ippopotamo-puo-salvarti.md +++ b/src/content/post/2016/12/07/quando-un-ippopotamo-puo-salvarti.md @@ -8,8 +8,11 @@ author: featuredImage: ../../../../uploads/2016/12/Screenshot-2016-12-07-16.26.46.png type: post id: 1498 -category: +tag: - Research + - 'crowd-sourcing' + - Egypt + - Egyptology --- Questa statuetta [(Museo Egizio, Torino](http://www.museoegizio.it), numero di inventario Cat.526, 40 x 17 x 21.5 cm), intagliata nel legno e dipinta a colori vivaci, raffigura una divinità femminile chiamata *Taweret* (“La grande” in egiziano antico) ed è databile al Nuovo Regno, probabilmente alla diciannovesima dinastia (1292-1190 a.C.). diff --git a/src/content/post/2016/12/11/crowdsourcing-an-excavation-project-in-iraq.md b/src/content/post/2016/12/11/crowdsourcing-an-excavation-project-in-iraq.md index 46851173..79367bc1 100644 --- a/src/content/post/2016/12/11/crowdsourcing-an-excavation-project-in-iraq.md +++ b/src/content/post/2016/12/11/crowdsourcing-an-excavation-project-in-iraq.md @@ -8,8 +8,11 @@ author: featuredImage: ../../../../uploads/2016/12/Sofia-Cafe-1-September-2016.jpg type: post id: 1519 -category: +tag: - Research + - 'crowd-sourcing' + - volunteering + - 'archaeological research' --- ![sofia-cafe-1-september-2016](../../../../uploads/2016/12/Sofia-Cafe-1-September-2016.jpg) diff --git a/src/content/post/2017/11/24/a-beginners-step-into-crowdsourcing.md b/src/content/post/2017/11/24/a-beginners-step-into-crowdsourcing.md index 988491bd..1c09c1a1 100644 --- a/src/content/post/2017/11/24/a-beginners-step-into-crowdsourcing.md +++ b/src/content/post/2017/11/24/a-beginners-step-into-crowdsourcing.md @@ -7,6 +7,10 @@ author: - Sarah type: post id: 1552 +tag: + - digital + - crowdsourcing + - 3D modelling --- I learnt about crowdsourcing by the joining the Level 2 Advanced Skills ‘Digital Heritage’ module which I am taking at the Archaeology Department of Durham University. As a complete beginner, I stepped into the daunting world (for me) of informatics and technology, a risk I was willing to take for the sake of engaging a wide range of people into the heritage sector. Indeed, using archaeological data and different platforms, the whole tutorial class worked on the creation of a project available on MicroPasts for a 3D photo-masking of a potter’s pivot and square bowl found at Gird I-Bazar -an archaeological site in the Kurdish Autonomous Region of Iraq dating to the Neo-Assyrian period (ca. 900-600 BCE)-. Now this application is ready and you can help with it! Exciting! Involving the public and specialists across the world into the conservation and spreading of our heritage -even when it is not a subject they are familiar with- but also sharing different knowledge and ideas makes this project a wonderful adventure; where anyone can contribute in small or big steps, just as I learned to do it. diff --git a/src/content/post/2017/11/24/a-new-3d-photo-masking-project-join-now.md b/src/content/post/2017/11/24/a-new-3d-photo-masking-project-join-now.md index 8242305a..f9b64dbe 100644 --- a/src/content/post/2017/11/24/a-new-3d-photo-masking-project-join-now.md +++ b/src/content/post/2017/11/24/a-new-3d-photo-masking-project-join-now.md @@ -8,6 +8,10 @@ author: featuredImage: ../../../../uploads/2017/11/IMG_2943.jpg type: post id: 1559 +tag: +- digital +- crowdsourcing +- 3d modelling --- Are you interested in the human past? diff --git a/src/content/post/2017/11/24/girdi-bazar-square-bowl-and-potters-pivot-crowdsourced-photo-masking-project.md b/src/content/post/2017/11/24/girdi-bazar-square-bowl-and-potters-pivot-crowdsourced-photo-masking-project.md index b215bba3..a1068daf 100644 --- a/src/content/post/2017/11/24/girdi-bazar-square-bowl-and-potters-pivot-crowdsourced-photo-masking-project.md +++ b/src/content/post/2017/11/24/girdi-bazar-square-bowl-and-potters-pivot-crowdsourced-photo-masking-project.md @@ -8,6 +8,10 @@ author: featuredImage: ../../../../uploads/2017/11/IMG_2883.jpg type: post id: 1550 +tag: +- digital +- crowdsourcing +- 3d modelling --- Hello all, diff --git a/src/content/post/2017/11/24/potters-pivot-and-square-bowl-a-crowdsourcing-effort.md b/src/content/post/2017/11/24/potters-pivot-and-square-bowl-a-crowdsourcing-effort.md index fa172b9e..04150b73 100644 --- a/src/content/post/2017/11/24/potters-pivot-and-square-bowl-a-crowdsourcing-effort.md +++ b/src/content/post/2017/11/24/potters-pivot-and-square-bowl-a-crowdsourcing-effort.md @@ -8,6 +8,10 @@ author: featuredImage: ../../../../uploads/2017/11/IMG_2883.jpg type: post id: 1542 +tag: +- digital +- crowdsourcing +- 3d modelling --- “Alone we can do so little, together we can do so much”. I believe this sentence encapsulates the essence of the Level 2 Digital Heritage course I am currently taking at the Department of Archaeology, Durham University. The focus of this course is heritage crowdsourcing, where we utilize the knowledge and skillsets of different people around the world to contribute to the heritage sector. This gradually builds a collaborative bond between institutions and the public, the likes of which is less seen in traditional GLAM institutions. As a task in our practical sessions with Digital Heritage, we have created a photo-masking project on MicroPasts for the public to contribute to. diff --git a/src/content/post/2017/12/12/the-data-science-behind-digital-heritage.md b/src/content/post/2017/12/12/the-data-science-behind-digital-heritage.md index 713fdf2f..1e3ac9f7 100644 --- a/src/content/post/2017/12/12/the-data-science-behind-digital-heritage.md +++ b/src/content/post/2017/12/12/the-data-science-behind-digital-heritage.md @@ -8,6 +8,12 @@ author: featuredImage: ../../../../uploads/2017/12/Screen-Shot-2017-12-01-at-20.05.38.png type: post id: 1598 +tag: +- digital +- crowdsourcing +- 3d modelling +- data science +- archaeology --- Digital engagement is beyond posting the odd picture of an artefact, as we learnt in our final practical session in Digital Heritage at Durham University. There is also a process of looking back and analyzing data, spotting trends and features to further improve whatever project you may be involved in. In this session, we utilized R software, an open-source software (and programming language). The task was to extract data from the MicroPasts Twitter account ([@MicroPasts](https://twitter.com/MicroPasts)), and conduct basic text analysis techniques. diff --git a/src/pages/authors.js b/src/pages/authors.js new file mode 100644 index 00000000..7f415943 --- /dev/null +++ b/src/pages/authors.js @@ -0,0 +1,78 @@ +import React from "react" +import PropTypes from "prop-types" +import Seo from "../components/structure/SEO"; + +// Utilities +import {kebabCase, startCase} from "lodash" + +// Components +import { Link, graphql } from "gatsby" +import Layout from "../components/layout" +import {Container,Row} from "react-bootstrap" + +const AuthorsPage = ({ + data: { + allMarkdownRemark: { group }, + site: { + siteMetadata: { title }, + }, + }, + }) => ( + + + +

Tags

+
    + {group.map(author => ( +
  • + + {startCase(author.fieldValue)} + + {author.totalCount} +
  • + ))} +
+
+
+
+) + +AuthorsPage.propTypes = { + data: PropTypes.shape({ + allMarkdownRemark: PropTypes.shape({ + group: PropTypes.arrayOf( + PropTypes.shape({ + fieldValue: PropTypes.string.isRequired, + totalCount: PropTypes.number.isRequired, + }).isRequired + ), + }), + site: PropTypes.shape({ + siteMetadata: PropTypes.shape({ + title: PropTypes.string.isRequired, + }), + }), + }), +} + +export default AuthorsPage + +export const pageQuery = graphql` + query { + site { + siteMetadata { + title + } + } + allMarkdownRemark(limit: 2000) { + group(field: {frontmatter: {author: SELECT}}) { + fieldValue + totalCount + } + } + } +` + +export const Head = () => ( + +) \ No newline at end of file diff --git a/src/templates/authors.js b/src/templates/authors.js new file mode 100644 index 00000000..ee4d4561 --- /dev/null +++ b/src/templates/authors.js @@ -0,0 +1,98 @@ +import React from "react" +import PropTypes from "prop-types" +import Layout from "../components/layout"; +// Components +import {Link, graphql} from "gatsby" +import PostCard from "../components/structure/post-card"; +import {Container, Row, Col} from "react-bootstrap"; +// Utilities +import {startCase} from "lodash" +import Seo from "../components/structure/SEO"; + +const Authors = ({pageContext, data}) => { + const {author} = pageContext + const {edges, totalCount} = data.allMarkdownRemark + const tagHeader = `${totalCount} post${ + totalCount === 1 ? "" : "s" + } authored by "${startCase(author)}"` + + return ( + + + +

{tagHeader}

+ + {edges.map(({node}) => { + return ( + + ) + })} + + + All authors + +
+
+
+ ) + +} + +Authors.propTypes = { + pageContext: PropTypes.shape({ + author: PropTypes.string.isRequired, + }), + data: PropTypes.shape({ + allMarkdownRemark: PropTypes.shape({ + totalCount: PropTypes.number.isRequired, + edges: PropTypes.arrayOf( + PropTypes.shape({ + node: PropTypes.shape({ + frontmatter: PropTypes.shape({ + title: PropTypes.string.isRequired, + }), + }), + }).isRequired + ), + }), + }), +} + +export default Authors + +export const pageQuery = graphql` + query($author: String) { + allMarkdownRemark( + limit: 2000 + filter: { frontmatter: { author: { in: [$author] } } } + ) { + totalCount + edges { + node { + excerpt(format: PLAIN, pruneLength: 400) + frontmatter { + title + permalink + author + tag + featuredImage { + childImageSharp { + gatsbyImageData( + placeholder: BLURRED + height: 250 + formats: [AUTO, WEBP] + width: 400 + ) + } + } + } + } + } + } + } +` +export function Head({pageContext}) { + return ( + + ) +} \ No newline at end of file diff --git a/src/templates/blog-page.js b/src/templates/blog-page.js index 120c9cfc..2e53b92d 100644 --- a/src/templates/blog-page.js +++ b/src/templates/blog-page.js @@ -4,6 +4,7 @@ import Layout from "../components/layout"; import {Container, Row} from "react-bootstrap"; import Seo from "../components/structure/SEO"; import {formatReadingTime} from "../utils/helpers"; +import Authors from "../components/structure/authors"; import Tags from "../components/structure/tag"; export default function BlogPageTemplate({data: {markdownRemark}}) { @@ -14,9 +15,7 @@ export default function BlogPageTemplate({data: {markdownRemark}}) {

{frontmatter.title}

-

{frontmatter.date} By {frontmatter.author && frontmatter.author.map(writer => ( - `${writer} ` - ))}

+

{`${formatReadingTime(timeToRead)}`}