installing collections in adl create collection-level metadata create or map item-level metadata

18
Installing Collections in ADL 1. Create collection-level metadata 2. Create or map item-level metadata 3. Locate data objects, thumbs, and browse images 4. Create configuration files 5. Final steps

Upload: kioshi

Post on 19-Mar-2016

47 views

Category:

Documents


2 download

DESCRIPTION

Installing Collections in ADL Create collection-level metadata Create or map item-level metadata Locate data objects, thumbs, and browse images Create configuration files Final steps. Create Collection Level Metadata. Create or Map Item Level Metadata. Mapping to the buckets…. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Installing Collections in ADL

1. Create collection-level metadata

2. Create or map item-level metadata

3. Locate data objects, thumbs, and browse images

4. Create configuration files

5. Final steps

Page 2: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Create Collection Level Metadata

Page 3: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata
Page 4: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata
Page 5: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata
Page 6: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Create or MapItem Level Metadata

Page 7: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata
Page 8: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Mapping to the buckets…1. Does each item have dec bounding box coordinates? This is a required field.

If not, you must create decimal coordinates.2. Does each item have a unique identifier with no spaces? See " Tips for creating unique identifiers" on page 14" . This is a required field.

If not, you must run scripts to eliminate spaces.3. Does each item have a Type, such as map, aerial photo? This is a required field.4. Does each item have a Format listed, such as tiff, jpg, gif? This is a required field.5. Does each item have a Title?

Which fields are used to create the Title? This is a required field.6. Does each item have Assigned Terms

(from an authority list (LCSH)?7. Does each item have any subject-related text? This is used to generate keywords.8. Does each item have a date or date range?

This consists of the start date and end date in the format of yyyymmdd. The start and end date can be the same.

9. Does each item have an Originator? You can have multiple originators.

Page 9: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

ADL Buckets - General SchemaCREATE TABLE ADL_fields_buckets (

collection varchar(25) NOT NULL,

unique_identifier varchar(30) NOT NULL,

title varchar(100) NOT NULL,

last_updated timestamp(14) NOT NULL,

w_b_coord float(9,3) NOT NULL,

e_b_coord float(9,3) NOT NULL,

n_b_coord float(9,3) NOT NULL,

s_b_coord float(9,3) NOT NULL,

other_coords varchar(255)

subject_related_text varchar(255)

assigned_terms char(1)

assigned_terms_authority_list varchar(50)

originator varchar(255) NOT NULL,

type varchar(25) NOT NULL,

frmt varchar(25) NOT NULL,

beginning_date date NOT NULL,

ending_date date NOT NULL,

scale int(11)

mapname_quadname varchar(25)

other_info varchar(255) )

Page 10: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Original metadata

Page 11: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Massaging metadata 1

Page 12: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Massaging metadata 2

Page 13: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Massaging metadata 3

Page 14: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Locate data objects, thumbs, and browse imagesData objects—the actual images that you will be serving out through ADL, need to be located on a web server. You will also need a small thumb version (no larger than 128 pixels on a side) and an easy-to-view "browse" version (no larger than 512 pixels on a side) . We suggest you locate your data objects, thumbs and browse images in a directory called ../collections/your-collection-name/distribution_forms/data (thumb, browse). But if your data, browse and thumbs already exist in their native location, you may prefer to leave them where they are. In either case you will point to their location via the access.xml and browse.xml reports created above.

Page 15: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Create Configuration Filesbucket99.conf (configuration file)

query-translator.py (search bucket field names)

scan.xml (fields required to list result set)

access.xml (access report, link to data)

browse.xml (link to thumb and browse images)

full.xml (full report, complete item level metadata record)

user.properties (database login id and password)

Page 16: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

Final Steps•Copy configuration files created above into ADLStandalone/collections/your-collection-name.

• Stop and start the server

•Go to http://yourhostname:8080/ADLStandalone/admin/configuration.jsp

•Create the metadata html for your collection and note the url.

•Update collection_opml.xml in C:\adl_mw_wc\hierarchies with your collection name and location of your metadata html file.

•Refresh the server.

Page 17: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

What’s missing?

CLM

Stats need to be included/automated

xml rendering needs to be incorporated into webclient

Automation of html rendering from xml - xslt

ILM

Create config file templates, xslt

Automate mapping from metadata to bucket99, report config files, query translator

What else???

Page 18: Installing Collections in ADL Create collection-level metadata  Create or map item-level metadata

ADL Nodes