Staffordshire Hoard conservation opportunities

Kevin Leahy photographing a hoard fragmentBirmingham Museums & Art Gallery and Stoke Potteries Museum are seeking expressions of interest for several Conservation opportunities associated with the amazing Staffordshire Hoard. These would suit experienced conservation professionals and students and allow the successful applicants to influence the future of these objects in a world-class museum setting. Competition will no doubt be very fierce for these posts. Below are the basic details for each role and a PDF of the brief and please note that dates of closing differ for the first post and the second two posts.

Hoard Conservation Advisory Panel

For conservation Professionals, Scientists, Archaeologists and related professionals who wish to to join the Hoard Conservation Advisory Panel. The deadline for applications is June 30th. Download information on the Advisory panel specification.

Conservation professional placements

For conservation professionals who wish to take advantage of a unique professional development opportunity through contributing to the conservation of the Staffordshire Hoard as part of a placement. The deadline for applications is July 30th. Download information on the Conservation professionals specification.

Student placements

Student placements to contribute to the conservation of the Staffordshire Hoard. The first deadline for applications is July 30th. Download information on the Student placement specification.

If you require any further information please email Deborah Cane

Ordnance Survey 1:50 000 Gazetteer import and reuse

OS opendata logoOn April Fool’s day, the Ordnance Survey opened up its data for people to reuse with less restrictions applied. At the heart of everything we do, place perhap the most important. The Scheme uses National Grid References and place names that you would find on an OS map. The things that these maps depict, often inform where people discover objects; they represent habitation in a past and present form, sometimes concurrently, sometimes from anitiquity. The last word in that sentence is the key to why I wanted to use the 1:50 000 data in our web application (our database). Two categories of place are defined within this dataset:

  • Roman Antiquity – of which there are 237 instances
  • Antiquity – of which there are 5252 instances

If you download the 1:50k dataset from the Ordnance Survey or from the mysociety cache (remember they are charity, so don’t abuse their servers), there is a document that outlines what the fields mean in the dataset. The important one here was the f_code or feature code column. The data is available via SPARQL (see Leigh Dodd’s article on this), but I wanted to keep a local copy of this data on my server so that I could use it and transform it for some other tasks. After downloading and unzipping onto our server (placing it into the /tmp folder will save you getting error 13 codes with the mysqlimport later), I then created the following MySQL table:

[bash toolbar="true"]
CREATE TABLE `osdata` (
`id` int(11) NOT NULL,
`km_ref` char(6) collate utf8_unicode_ci default NULL,
`name` char(60) collate utf8_unicode_ci default NULL,
`tile_ref` char(4) collate utf8_unicode_ci default NULL,
`lat_degrees` int(2) default NULL,
`lat_minutes` float default NULL,
`lon_degrees` int(2) default NULL,
`lon_minutes` float default NULL,
`northing` int(7) default NULL,
`easting` int(7) default NULL,
`gmt` char(1) collate utf8_unicode_ci default NULL,
`county_code` char(2) collate utf8_unicode_ci default NULL,
`county` char(20) collate utf8_unicode_ci default NULL,
`full_county` char(60) collate utf8_unicode_ci default NULL,
`f_code` char(3) collate utf8_unicode_ci default NULL,
`e_date` char(11) collate utf8_unicode_ci default NULL,
`update_code` char(1) collate utf8_unicode_ci default NULL,
`sheet1` int(3) default NULL,
`sheet2` int(3) default NULL,
`sheet3` int(3) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT=’OSDATA 1:50000′;[/bash]

I then needed to import this data, which I accomplished using mysqlimport command in my terminal as below (I use putty at work and OSX terminal at home). Note that I renamed the gazetteer data to the same table name as the MySQL table and retained the txt extension. Fields are delimited by a colon and there is no header row.

[bash toolbar="true"]mysqlimport –user={username} –password={password} –fields-terminated-by=":" {your database name} ‘/tmp/osdata.txt’[/bash]

The import should run through and insert 259080 rows of data. Even though I am only interested in the antiquity type fields, I have imported the lot in case I want the rest later. Now I have the data installed, I can manipulate it and use it in the way that I want. If you know your grid references, then it is apparent that the data presents at just 1KM square resolution; this is the maximum precision level to which we publicly display our find spots, so it will tie in quite nicely to the public display of information.

However, I wanted decimal degrees for the latitude and longitude within my table. I therefore inserted two new rows into the MySQL table – latitude and longitude (DOUBLE) and then used a PHP function to convert the 1km square grid reference into lat/lon values. I’ve also done some further manipulations to get the imprecise centred 1KM grid reference WOEID to get enhanced geographical data.

Now the grid reference has been converted into decimal values, I can now plot these quickly onto a Google Map or use mathematical formulae to get distance from a point; for example the Haversine.

d = R \, {haversin}^{-1}(h) = 2 R \arcsin\left(\sqrt{h}\,\right)

There’s s some very good discussion and code available on these resources, so there’s no point reinventing the wheel:

  • Haversine formula can be obtained from various sources, and this page lists 9 scripting language variants.
  • Vincenty formula can be found on the Movable Type script pages (via @codepo8).
  • More detailed explanation can be found at the Seventh Sense blog

For the Scheme’s database, I wanted to work out if objects were close to an antiquity or Roman antiquity or whether a MP’s constituency or district has them within their bounding box (as found from querying theyworkforyou’s API – more on that later.) As I use Zend Framework, I created a model and then used a view helper to render data onto a finds record. If you’re interested in my code for this, you’re welcome to have it….this one uses the Haversine and is just the model that generates a MySQL query against my database table.

[PHP toolbar="true"]
<?php
class Osdata extends Zend_Db_Table_Abstract
{
protected $_name = ‘osdata’;
protected $_primary = ‘id’;

public function get50KNearby($lat,$long,$distance,)
{
$radius = 6378.137; //KM value, swap to 3960.00 for Imperial miles
$pi = ’3.141592653589793′;
$nearbys = $this->getAdapter();
$select = $nearbys->select()
->from($this->_name,array(‘name’,'id’, ‘latitude’, ‘longitude’,'distance’ => ‘acos((SIN(‘.$pi.’*’.$lat.’/180 ) * SIN(‘.$pi.’* latitude /180)) + (cos(‘.$pi.’*’.$lat.’/180) * COS(‘.$pi.’* latit$
->where($radius . ‘ * ACOS((SIN(‘.$pi.’*’.$lat.’/180) * SIN(‘.$pi.’* latitude/180)) + (COS(‘.$pi.’*’.$lat.’/180) * cos(‘.$pi.’* latitude /180 ) * COS(‘.$pi.’* longitude /180 -’.$pi.’* ( ‘.$long.$
->where(’1=1′)
->where(new Zend_Db_Expr(‘f_code = "R" OR f_code = "A"’))
->order($radius . ‘ * ACOS((SIN(‘.$pi.’*’.$lat.’/180 ) * SIN(‘.$pi.’* latitude/180)) + (COS(‘.$pi.’*’.$lat.’/180) * cos(‘.$pi.’ * latitude /180 ) * COS(‘.$pi.’* longitude /180 – ‘.$pi.’* (‘.$long.’$
return $nearbys->fetchAll($select);

}
}

}
[/php]

Below is a record of an object from the controversial Water Newton rally, which was near the site of the Roman town of Durobrivae, near Chesterton in Cambridgeshire [WOEID: 39263, 1KM NGR - TL1295, Lat: 52.561508 Lon: -0.364190].

Alert for Durobrivae

You’ll see that there are two Scheduled Monument Alerts – there are actually 5 entries in the National Monuments Record for this SAM – and there is 1:50k OS alert for a Roman antiquity. These SAM alerts aren’t shown to users below ‘research’ level. I can then click through to find all records associated within a certain distance of this OS point, and map them if I have at least ‘Research’ user rights on our database. In future, I will try and link these place names through to other linked data resources. By tying them to a WOEID, I can find archaeological photos on Flickr for example.

I don’t think that this breaches the OS licence and there are probably other ways to accomplish this in PHP, I just dabble in code, so don’t rip me to shreds….

Access levels and what you can view

Following our Portable Antiquities Advisory Group meeting, I was asked what levels of detail people are privy to on the Scheme’s database. The below outlines what these account levels can do/see and what geo information is displayed.

Public user – not logged in

The public user level is the most basic of all our levels of access. This gives you access to:

  • Finds awaiting validation (denoted by the yellow flag)
  • Finds that have been validated and published by our finds advisers (denoted by green flag)
  • Low level mapping
    • no dots on maps
    • findspot to 1km grid square level and slight obfuscation of findspot by randomised subtraction/addition of 10ths of a degree to the degraded findspot
    • limited zoom level.
  • No access to personal data
  • Can add comments but has to fill in reCaptcha

Registered user – most basic level of login

  • Finds awaiting validation (denoted by the yellow flag)
  • Finds that have been validated and published by our finds advisers (denoted by green flag)
  • They can create their own records of their objects and get full mapping capabilities for only these objects which is enhanced over the below low level grade map.
  • Low level mapping
    • no dots on maps,
    • findspot to 1km grid square level and slight obfuscation of findspot by randomised subtraction/addition of 10ths of a degree to the degraded findspot,
    • limited zoom level.
  • Cannot see maps or retrieve finds by parish for any record with the findspot form’s “to be known as” field completed
  • No access to personal data
  • Can add comments without having to fill in reCaptchas
  • Can add/edit their own records
  • Can save searches

Researchers

  • Finds awaiting validation (denoted by the yellow flag)
  • Finds that have been validated and published by our finds advisers (denoted by green flag)
  • Cannot view finds that are still in progress (quarantine/review)
  • As above, they can create their own records of their objects and get full mapping capabilities forthese objects.
  • High level mapping
    • findspot plotted with a dot on the map
    • full precision for findspot
    • Flickr shapefile outline for parishes
    • Access to Scheduled Ancient Monument proximity search
    • Full zoom capabilities
  • No access to personal data
  • Can add/edit their own records
  • Enhanced spreadsheet downloads

Historic Environment Officers

  • Finds awaiting validation (denoted by the yellow flag)
  • Finds that have been validated and published by our finds advisers (denoted by green flag)
  • Cannot view finds that are still in progress (quarantine/review)
  • As above, they can create their own records of their objects and get full mapping capabilities forthese objects.
  • High level mapping
    • findspot plotted with a dot on the map
    • full precision for findspot
    • Flickr shapefile outline for parishes
    • Access to Scheduled Ancient Monument proximity search
    • Full zoom capabilities
  • No access to personal data
  • Can add/edit own records
  • Enhanced spreadsheet download
  • Special download of csv for import into exeGesis HBSMR (if you don’t know what that is, don’t worry!)

Treasure & Finds Liaison Officers

  • Finds in quarantine – records that need more data (reminds them to do so!)
  • Finds on review – current working versions
  • Finds awaiting validation (denoted by the yellow flag)
  • Finds that have been validated and published by our finds advisers (denoted by green flag)
  • As above, they can create their own records of their objects and get full mapping capabilities forthese objects.
  • High level mapping
    • findspot plotted with a dot on the map
    • full precision for findspot
    • Flickr shapefile outline for parishes
    • Access to Scheduled Ancient Monument proximity search
    • Full zoom capabilities
  • Full access to personal data
  • Can add/edit own records
  • Can edit records made by member, HERO and research users
  • Can edit any records they made when working in other counties
  • Can edit records made by anyone at their institution
  • Enhanced spreadsheet download
  • Special download of csv for import into exeGesis HBSMR

Find Advisers

  • Finds in quarantine – records that need more data (reminds them to do so!)
  • Finds on review – current working versions
  • Finds awaiting validation (denoted by the yellow flag)
  • Finds that have been validated and published by our finds advisers (denoted by green flag)
  • As above, they can create their own records of their objects and get full mapping capabilities forthese objects.
  • High level mapping
    • findspot plotted with a dot on the map
    • full precision for findspot
    • Flickr shapefile outline for parishes
    • Access to Scheduled Ancient Monument proximity search
    • Full zoom capabilities
  • Full access to personal data
  • Can add/edit own records
  • Can edit any records created by any user and can publish finds
  • Enhanced spreadsheet download
  • Special download of csv for import into exeGesis HBSMR

Admin

Now that would be telling.

Adding records to our database as a registered member

The Scheme’s database has changed significantly since it went live in its original format in 1999. It is now possible for all users to add and edit their own finds (descriptive, spatial, numismatic, reference and visual details) and add to this country’s archaeological record of public discovery. To add your own ‘finds’ to our database is relatively straight forward and this post outlines how to do this. As with a few other features of this site, you need to get a few things in place before it works properly for you!

So how do you record?

  1. Register for a user account on our site (or if you already have an account and haven’t logged in since 21st March 2010, reset your password). We need to have you registered for auditing changes and notifications etc. Your personal details won’t be sold or divulged to evil marketing companies or anyone else who hasn’t sighed up to our T&C.
  2. Contact your local Finds Liaison Officer and talk to them about self-recording your objects (we have a strict vocabulary for data entry and there’s some things you might like explained before proceeding). We have to use strict terminology to ensure that things can be found easily and that we can interoperate with other people’s databases.
  3. You can only record your own finds as we can’t divulge other people’s details under the Data Protection Act (sorry!) Once we link your personal details to your account, you can see your own records easily and your name gets appended to records created by you automatically.
  4. If you have a Treasure object, we would rather that this is reported directly to the FLO for recording so that all the steps needed to dispense the law are followed and no confusion arises (sorry!)
  5. Once you have spoken to your FLO, you can happily record away! So keep reading.

Adding a find’s basic information

Find form interface screen capture

  1. Once you have logged in, look for the button labeled “Add a new object (or artefact in some places)” on either your home screen or on the artefact listers, click on this.
  2. Now you can fill in the data for your find.  Many fields are strictly controlled by driven vocabulary – for example, object type auto-completes and others are select driven drop-downs. Most are pretty obvious! Just follow the labels to the left of each form control.
  3. Out of all the fields, the only compulsory ones that you must enter are object type and broadperiod, therefore you can start records and return to them. However, we want really complete records with as much information as you can give (you can edit later of course).
  4. Once you have filled in your form, press submit and you will be taken to your record and you can now add extra bits. We haven’t adopted multi page forms as you might not have all details at hand and we’re trying to make it all very simple…
  5. We also use FCKEditor and HtmlPurifier to ensure valid HTML in the data that you enter. We’ll strip out a wide variety of tags generated by word if you paste from there and also remove curly quotes etc. If you are interested (which probably you aren’t) we store your text in UTF-8.

Adding numismatic data

Screen capture of numismatic interface

  1. You now have a choice of which bits of data you want to add to the record (if you have entered a coin, you can add numismatic data) and for this example we’re assuming you are entering a Roman coin. So to add numismatic data, look for the link entitled “add numismatic data”. Click on this.
  2. This step is driven by logic determined by the denomination type you have. If you choose a denomination, we set in motion a series of cascaded or linked dropdowns.
  3. Once you have chosen a denomination, then choose a ruler from the list that is generated (you can’t enter a ruler that doesn’t exist for a denomination type!)
  4. After a ruler has been chosen, the cascade sets in motion again and configures the mint, moneyer (only available for Republican coins), reverse type (only available for 4th Century coins) and Reece period. Choose the correct option for your coin if you can fill it in. If not leave blank.
  5. Enter any information for reverse/obverse inscription/description
  6. Choose die axis measurement and status options
  7. Now save your data and you will return to the record you have created.

Adding spatial data

Findspot data capture form

Provenance is vital for the study of stray archaeological finds. The majority of objects we record will have little or no archaeological context and are found in the plough soil, but their spatial co-ordinates may well tell you more about the area’s archaeology. By providing the Scheme with higher degrees of precision for your findspots, the better the research academics and lay researchers can do from these data. The form for recording the spatial data is again pretty straightforward and you have the option to hide sections from public view (comments, address, postcode, all co-ordinates). The below outlines how to enter the spatial information for a findspot (all finds can only have one!)

  1. All objects are attached to a named place. We use the Ordnance Survey’s place name data, so we have an  array of data to choose from (Euro-region, County, District, Parish). These place name drop-down lists are also cascaded, so start by choosing your county and then follow the dropdowns choices as presented.
  2. To hide the data entered in step 4 from the public, you can enter a pseudonym in the “known as” box (be sensible about it :) )
  3. If you have an address and postcode for the findspot, please fill these in (these never get displayed to the public or research user).
  4. Now we need to get the co-ordinates for the findspot. If you don’t have a provenance for the find, we’d rather it wasn’t recorded as it doesn’t add to our useful archaeological record. If possible, record to a higher precision than 4 figure grid reference (which is better than 1km square precision) – this is the maximum level we’ll publish data online to the public user. We also use the National Grid reference system to place our objects onto a map and this is transformed into the following after saving:
    1. Easting
    2. Northing
    3. 4 figure grid reference
    4. Latitude and longitude pair
    5. Elevation on landscape
    6. 1:25K map
    7. 1:10K map
    8. A Yahoo! Where on Earth ID or WOEID for cross referencing against their database (you can see this in action via the adjacent places displayed on the findspot section) and other services that may use their identifier system.
  5. After filling in this section you can tell us about the landuse types and any comments or descriptions needed about the findspot.
  6. Now save your data!
  7. This returns you to the record, where you will now see a map of your findspot and the data that you have entered. You’ll also see any data we’ve managed to retrieve on that area from Yahoo! – a Flickr shapefile for the parish (if available), adjacent places (from the geoplanet database) and postcode etc. More is planned for this section, news on that later!

Adding an image or images

A screen capture of the image interface

A visual record of the object is really important for research of the object (for many researchers it is often more important than the findspot!) Adding an image is quite straightforward and we add one at a time to make it more simple. We do suggest naming your files sensibly, avoiding non-alphanumeric characters and removing spaces (replace with an underscore, hyphen or camel case the  filename).

To add an image do the following:

  1. Look for the add an image link
  2. After clicking on this, you’ll see a form with several fields. Click on the ‘choose’  button to find your image that you want to attach (must be under 6MB and we would rather that you uploaded a high resolution JPEG or TIFF image.) If your filename already exists, we’ll tell you and likewise if it is an invalid filetype.
  3. When you get to the image label box, refer to the image labeling document produced by our Finds Advisers for the correct methodology that we want to adhere to.
  4. Choose your county, copyright, period and image type (your default copyright can be set from the edit account link under your home area. Set it and then logout and back in so that the session picks up the default.)
  5. Then submit the new image
  6. If everything works okay, you’ll then get redirected back to the record and you can add a new image if needed
  7. This process generates:
    1. Thumbnail
    2. Small derivative
    3. Display derivative
    4. Medium derivative (used for the lightbox overlays)
    5. A Zoomify derivative
    6. Original image
  8. All users can download the original image – we share everything on this site!

Taking good quality images

This is really important for the record of the object, you can get some good advice on-line or by purchasing Ian Cartwright’s short guide entitled ‘Photographing detector finds’.  If you want good examples of images, have a look at our FLO for the Isle of Wight, Frank Basford’s records.

Basic desires from the Scheme for images are:

  • 300 dpi resolution (so images can be reproduced for academic publication)
  • good lighting
  • a white or black background
  • well focused with good depth of field
  • scale bar – you can get some good ones from here: http://www.vendian.org/mncharity/dir3/paper_rulers/

Images and text on this website are disseminated under a Creative Commons Non-Commercial Share-Alike licence and are used in a variety of media for enriching our knowledge of the past. You can opt out of this by choosing ‘all rights reserved’ under the image copyright dropdown, or by choosing this as default from your profile settings.

We’ll have some more information on photography and scanning of objects and coins in the coming weeks.

How do my records go public?

As we’re trialling public data entry, we’re currently keeping all public records hidden from view in the review stage (you’ll see a quarantine flag- black biohazard symbol ~ I didn’t like black flags ~ next to your record number when you look at your my finds list). If this feature gains popularity, we’ll extend the system so that you do the following:

  1. Enter all data
  2. Decide it is ready for checking by our staff and you choose to push your record to review
  3. The object record is peer reviewed by the FLO for the county of origin of the object
  4. They then decide that it can be seen and it then goes to validation
  5. Eventually a finds adviser might check it and it will go green for published.

You can only edit your records in the quarantine (a legacy phrase from our old system) and review stages, if you have more to add at a later date, you can ask any of the Scheme’s staff to return it.

I’m still struggling with the above!

If you still need help self-recording objects, you can go firstly to your FLO for help and more information on our recording philosophy or contact us at the Central office on info@finds.org.uk

First month of beta site webstats

The Scheme’s website has been running in β for just over  a month now has experienced no down time in that period. Attached to this post, is an analytics report for the period 24th March – 24th April and is provided just for reference. The stats aren’t that impressive yet in terms of critical mass for visitors (we’ve not publicised the new features yet as we’re catching all glitches); but there’s two figures which are quite good – visit length at 12 minutes 41 seconds and pages per visit at 16. The Scheme’s content is possibly classed as niche interest as well, but very academic and lay research driven, so we probably won’t ever get huge visitor figures.

Shortly, the Google analytics analysis module will go online and you will be able to get our stats at any time for our content, If you want to quote these anywhere, please feel free to do so.

Mapping added to user profiles for recorded finds

To follow on from the linking of user accounts to finds recorded, I’ve now added a simple link to a Google map of the findspots of these artefacts. It is gives full precision find spots and is only visible at this level to  your user account. No one else can get access to a map at this level of your finds. If there is a demand, I will also enable a context switched download of personal finds lists to Excel formats and KML for importing into Google Earth.

To access your finds map, you must firstly get your personal details that we hold for you linked to your account; so remember to ask your friendly FLO or Central Unit to hook you up. Then look for the below link above your finds lister:

Records map link

Where to find your personal map link

The dots on the map are colour coded – quarantine (black), on review (red), awaiting validation (yellow) and published (green). You cannot view red or black finds directly on the database, but you can at least see that they are recorded. The map below shows some dummy finds at a high zoom level. If your browser can support the Google Earth plugin for Google maps, you can also view the objects within the Scheme’s database window in that format (and on an OpenStreetMap layer.)

Dummy finds map

A dummy set of finds locations

What is coming next on the new website

The Scheme’s new website has been running in public β format now for just over a week; in that time we’ve been adding lots more data to the database. Our staff have managed to add 1000 new records in the last week, many of these with images. You may wonder why you can’t see all of these as a public user, and this is all down to our workflow model. The following simple methodology is employed to provide access to records:

  1. Quarantine – visible to: creator of record, Finds Advisers, Admin
  2. Review – visible to creator of record, Finds Liaison Officers, Finds Advisers, Admin
  3. Validation – visible to all registered users
  4. Publication  - visible to all registered users and has been checked for accuracy by Finds Advisers.

However, after the initial release, there is a lot more sitting around waiting for phased deployment to the new site. These deployments include:

  1. REST applications programming interface or API
  2. RDFa throughout view templates (we currently have FOAF embedded on contacts pages as a test; I may have done it wrong, if so tell me!)
  3. Historic Enviroment transfer spreadsheet (will be out next week)
  4. More context switched data views and switching on of geoRss feeds now that we’ve been stable for a week.
  5. More text extraction across the site. We already use OpenCalais to tie records together on our database, but it will be employed across the data that we ingest from the Guardian, TheyWorkForYou and dbpedia
  6. More geo enrichment from Yahoo! and geonames services. We already use Yahoo’s geoplanet to enrich findspots without National Grid references, and to obtain elevation and various other data on our records. We’ll be using it to give spatial context to our news and events. I’ll explain more about how we used these services elsewhere.
  7. Publication of the Staffordshire Hoard artefact records (produced by Kevin Leahy) and images taken by our efficient Treasure team.
  8. A new module for tracking the progress of Treasure cases through the system and a large amount of metadata attached
  9. A Google Analytics module that will leverage data obtained via their API and redisplay it openly on our site. I’ve been developing analysis of top content etc.
  10. Expansion of the data that we’ve reused from TheyWorkForYou – specifically to find objects found within parliamentary constituencies. The Scheme is good at lobbying, cf. the Early Day Motion campaign of 2008!
  11. More personalisation of interfaces
  12. Fix all issues raised by our staff and all those users that have kindly submitted comments
  13. Expansion of comments across more areas of our site – the short trial seems to be proving to work very well. We’re changing and updating finds records thanks to the comments and error reports that our users have submitted.
  14. Use geolocation to provide you with objects found within a predefined radius of your current location.

There’s probably more to come, but as we’re very AGILE, we’ll come to that later!

New Centre for Audio-Visual Study and Practice in Archaeology

The Institute of Archaeology has recently agreed to host the new Centre for Audio-Visual Study and Practice in Archaeology (CASPAR). Archaeology has a long record of being a subject for television and radio, and is now making excellent use of the newer digital technologies. Sometimes the relationship between archaeology and audio-visual media has been controversial, yet there is no doubt that archaeology has benefited from widespread public exposure over the last 50 years, and that new technologies are allowing are allowing us to rethink how people engage with archaeology.

The aim of the Centre is to:

  1. advocate the greater use of audio-visual media within archaeology;
  2. be an active voice for greater use and understanding of archaeological practises and themes within broadcasting and ICT;
  3. enable inventive and creative use of audio-visual media by archaeologists;
  4. promote research into the relationship between audio-visual media and archaeology.

The Centre will pursue its aims through organising conferences and workshops; publishing books and articles; organising film festivals and showings; compiling and maintaining a database of archaeology films, TV and radio programmes and websites; helping to provide input into relevant university courses; helping to run research seminars at the Institute of Archaeology; and carrying out research into its area of study.

You are welcome to attend the launch and reception to mark the inauguration of the new Centre at 2.00 pm on the 23rd April 2010.

The programme for the afternoon is:

2:00 Steve Shennan, Director of the Institute of Archaeology, Introduction and welcome

2:30 Julian Richards, broadcaster, Archaeology on TV and radio

3:00 Dan Pett, British Museum, Archaeology on the Internet

3:45 Andy Gardner, Institute of Archaeology, Archaeology and gaming

4:15 Angela Piccini, Bristol University, Research into archaeology and
media

4:45 Don Henson, Hon. Director CASPAR, The potential and remit of the
Centre

5:00 Wine reception

If you would like to come along, please contact Don Henson at the Council for British Archaeology

Getting access to your finds

Building the Scheme’s new database was fraught with a huge array of privacy problems ranging from findspot to personal details. The Scheme takes this very seriously, but we do recognise that our registered users have always had a desire to get access to their records that the Scheme has recorded on their behalf. Many finders have hundreds of objects, some just have one; but, they all would like to be able to access these without searching for them/

What has been done is pretty simple and we need to do a few things before you can access your finds easily (and this obviously only works for those that have recorded!) These are:

  • Register for a user account with us (if you don’t have one already)
  • Contact your local finds liaison officer and tell them your user name
  • They then link your user account to the details that we safeguard on our database
  • Voila, next time you login, you have access to your finds (published and those on validation) from your logged in area. Look for the link that says “My finds recorded by FLOs” and which looks like the below image

Coming in the next few days to complement this are a couple of features:

  • Mapping of your finds from your home address (if we have it)
  • Distance travelled for your furthest discovery
  • RSS feeds of your objects so you could embed them on your own site

Hopefully, this new feature will enable many to find objects that they could never retrieve from our old database. One caveat, as we have 17,000 people registered on the system, there maybe a delay enabling you.