Datasets:
image
imagewidth (px) 550
4.1k
| label
class label 3
classes |
---|---|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
0originals
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
2thumbnails
|
|
1static
|
Flickr Data Lifeboat: ENOLA_GAY - Raw Data Lifeboat
Overview
This is the raw, unprocessed version of the Flickr Data Lifeboat: ENOLA_GAY Data Lifeboat - a self-contained digital preservation archive created by the Flickr Foundation.
π ML-Ready Version: For machine learning applications, see the processed dataset: flickr-data-lifeboat:-enola_gay
What is a Data Lifeboat?
Data Lifeboats are self-contained archives designed to preserve not just images, but the complete social and cultural context that makes them meaningful. Unlike traditional datasets, they include:
- π Complete file structure with original organization
- π Built-in web viewer for browsing without external tools
- π Rich metadata preserved in JavaScript format
- π No external dependencies - everything needed is included
- ποΈ Community context - tags, comments, and social interactions
Collection Details
- Collection ID:
ENOLA_GAY
- Created: 2025-06-18 16:38:58.275935
- Curator: Unknown Creator
- Total Files: ~32
- Archive Size: ~3 MB
Purpose
Legacy Data Lifeboat collection
Archive Structure
data/ENOLA_GAY/
βββ viewer/ # Built-in web viewer application
β βββ index.html # Main viewer interface
β βββ browse.html # Browse photos interface
β βββ photo.html # Individual photo viewer
β βββ static/ # CSS, JavaScript, and assets
βββ metadata/ # All metadata in JavaScript format
β βββ lifeboat.js # Collection metadata
β βββ photoIndex.js # Index of all photos
β βββ tagIndex.js # Tag index and frequencies
β βββ licenseIndex.js # License information
β βββ contributorIndex.js # User/institution data
β βββ albumIndex.js # Album information
β βββ galleryIndex.js # Gallery data
β βββ groupIndex.js # Group information
β βββ photos/ # Individual photo metadata
β βββ [photo_id].js # One file per photo
β βββ ...
βββ media/ # All image files
β βββ originals/ # Full resolution images
β βββ thumbnails/ # Thumbnail versions
βββ README.html # Collection documentation
How to Use This Archive
Option 1: Web Viewer (Recommended)
- Download the entire archive
- Open
data/ENOLA_GAY/viewer/index.html
in any web browser - Browse photos, view metadata, and explore the collection
Option 2: Direct File Access
- Images:
data/ENOLA_GAY/media/originals/
anddata/ENOLA_GAY/media/thumbnails/
- Metadata:
data/ENOLA_GAY/metadata/
directory contains all structured data - Documentation:
data/ENOLA_GAY/README.html
for collection details
Option 3: Programmatic Access
The metadata is stored in JavaScript format but can be easily parsed:
import json
import re
from pathlib import Path
def parse_js_metadata(js_file_path):
"""Parse JavaScript metadata files"""
content = Path(js_file_path).read_text()
# Extract JSON from: var variableName = {...};
json_match = re.search(r'var\s+\w+\s*=\s*(\{.*\});?', content, re.DOTALL)
if json_match:
return json.loads(json_match.group(1))
return None
# Load collection metadata
collection_info = parse_js_metadata('data/ENOLA_GAY/metadata/lifeboat.js')
photo_index = parse_js_metadata('data/ENOLA_GAY/metadata/photoIndex.js')
Data Format and Standards
Metadata Format
- JavaScript Objects: Structured data in
.js
files - UTF-8 Encoding: All text files use UTF-8
- Consistent Naming: File names follow Flickr conventions
- Cross-References: IDs link photos, tags, comments, and users
Image Format
- Originals: JPEG/PNG in original resolution and format
- Thumbnails: JPEG thumbnails for web viewing
- Naming:
[photo_id]_[secret]_[size].[format]
Licensing
All photos in this collection have open licenses:
- Primary: "No known copyright restrictions" (Commons)
- Others: Various Creative Commons licenses
- See:
metadata/licenseIndex.js
for complete license information
Preservation Principles
This Data Lifeboat follows digital preservation best practices:
β
Self-Contained: No external dependencies or API calls
β
Standards-Based: Uses HTML, CSS, JavaScript - universally supported
β
Human-Readable: Can be understood without specialized software
β
Machine-Readable: Structured data for computational analysis
β
Documented: Comprehensive metadata and documentation included
β
Portable: Works on any system with a web browser
Research Applications
This raw format is ideal for:
- Digital Preservation Research: Studying self-contained archive formats
- Metadata Analysis: Examining community-generated tags and comments
- Cultural Heritage: Preserving social context of cultural artifacts
- Web Archaeology: Understanding historical web interfaces and formats
- Custom Processing: Building your own analysis tools
Related Resources
Processed Version
For machine learning and computational analysis, use the processed version:
- Dataset:
flickr-data-lifeboat:-enola_gay
- Features: Images as HuggingFace Image features, structured metadata
- Ready-to-use: Compatible with
datasets
library and ML frameworks
Learn More
Technical Notes
Browser Compatibility
The viewer works in all modern browsers:
- Chrome/Chromium 70+
- Firefox 65+
- Safari 12+
- Edge 79+
File Handling
- Some browsers may restrict local file access for security
- For full functionality, serve files through a local web server:
# Python 3 python -m http.server 8000 # Node.js npx serve .
Citation
@misc{enola_gay_raw},
title = {Flickr Data Lifeboat: ENOLA_GAY - Raw Data Lifeboat},
author = {Unknown Creator},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/[your-username]/[dataset-name]-raw},
note = {Self-contained digital preservation archive}
}
Future Considerations
This is an older format Data Lifeboat without lifeboat.js metadata.
Preservation Notice: This archive is designed to remain accessible indefinitely. The self-contained format ensures that future researchers can access and understand this collection even if external services or APIs change.
- Downloads last month
- 0