anycoder-0b0eca81 / pages /api /worlds.js
Juanfa's picture
Upload pages/api/worlds.js with huggingface_hub
e16bc9d verified
export default function handler(req, res) {
const worlds = [
{
id: 'japanese-garden',
name: 'Kyoto Zen Garden',
description: 'A serene Japanese garden captured during cherry blossom season. Features traditional stone arrangements and koi ponds.',
location: 'Kyoto, Japan',
captureDate: '2024-03-15',
cameraModel: 'Insta360 X3',
fileSize: '245 MB',
pointCount: 125000,
resolution: '5.7K',
aperture: 'f/2.0',
shutterSpeed: '1/120s',
iso: '100',
software: 'Insta360 Studio',
tags: ['Nature', 'Garden', '360°'],
colorPalette: [[0.8, 0.4, 0.6], [0.2, 0.6, 0.3], [0.9, 0.8, 0.7]]
},
{
id: 'urban-alley',
name: 'Tokyo Night Alley',
description: 'Neon-lit alleyway in Shinjuku district. High contrast urban environment with reflective surfaces.',
location: 'Tokyo, Japan',
captureDate: '2024-02-28',
cameraModel: 'Ricoh Theta X',
fileSize: '189 MB',
pointCount: 98000,
resolution: '11K',
aperture: 'f/2.1',
shutterSpeed: '1/60s',
iso: '800',
software: 'Theta App',
tags: ['Urban', 'Night', 'Neon'],
colorPalette: [[0.9, 0.2, 0.4], [0.2, 0.3, 0.9], [0.8, 0.1, 0.8]]
},
{
id: 'mountain-peak',
name: 'Swiss Alps Summit',
description: 'Panoramic view from 3,000 meters elevation. Snow-capped peaks and glacier formations.',
location: 'Zermatt, Switzerland',
captureDate: '2024-01-20',
cameraModel: 'GoPro MAX',
fileSize: '312 MB',
pointCount: 150000,
resolution: '5.6K',
aperture: 'f/2.8',
shutterSpeed: '1/500s',
iso: '100',
software: 'GoPro Player',
tags: ['Mountain', 'Snow', 'Panoramic'],
colorPalette: [[0.9, 0.95, 1.0], [0.4, 0.5, 0.7], [0.8, 0.85, 0.9]]
},
{
id: 'desert-dunes',
name: 'Sahara Dunes',
description: 'Golden hour capture of sand dunes. Warm tones and dramatic shadows across the desert landscape.',
location: 'Merzouga, Morocco',
captureDate: '2024-04-10',
cameraModel: 'Insta360 ONE RS',
fileSize: '198 MB',
pointCount: 87500,
resolution: '6K',
aperture: 'f/2.4',
shutterSpeed: '1/1000s',
iso: '100',
software: 'Insta360 Studio',
tags: ['Desert', 'Sunset', 'Dunes'],
colorPalette: [[0.9, 0.7, 0.4], [0.8, 0.5, 0.3], [0.95, 0.85, 0.6]]
},
{
id: 'coral-reef',
name: 'Great Barrier Reef',
description: 'Underwater 360 capture of coral formations. Vibrant marine life and crystal clear waters.',
location: 'Queensland, Australia',
captureDate: '2024-05-05',
cameraModel: 'Qoocam 8K',
fileSize: '425 MB',
pointCount: 200000,
resolution: '8K',
aperture: 'f/2.0',
shutterSpeed: '1/250s',
iso: '200',
software: 'Qoocam Studio',
tags: ['Underwater', 'Coral', 'Marine'],
colorPalette: [[0.2, 0.6, 0.8], [0.9, 0.4, 0.5], [0.3, 0.8, 0.6]]
}
];
res.status(200).json(worlds);
}