--- license: mit language: - en tags: - remote-sensing - archaeology - satellite-imagery - Sentinel-2 - FABDEM - computer-vision task_categories: - image-classification - object-detection size_categories: - 1K 000001 # ineg_000045_rot120 -> 000045 df['site_index'] = df['grid_id'].str.extract(r'(grid|ineg)_(\d+)')[1] # Get unique sites (positives only for stratification) unique_sites = df[df['grid_id'].str.startswith('grid_')]['site_index'].unique() # Shuffle and split SITES (not samples!) np.random.seed(42) np.random.shuffle(unique_sites) n_train = int(0.7 * len(unique_sites)) n_val = int(0.15 * len(unique_sites)) train_sites = unique_sites[:n_train] val_sites = unique_sites[n_train:n_train+n_val] test_sites = unique_sites[n_train+n_val:] # Assign splits based on site membership df['split'] = 'test' df.loc[df['site_index'].isin(train_sites), 'split'] = 'train' df.loc[df['site_index'].isin(val_sites), 'split'] = 'val' # Distribute landcover negatives and unlabeled randomly mask = df['grid_id'].str.startswith(('lneg_', 'unla_')) df.loc[mask, 'split'] = np.random.choice( ['train', 'val', 'test'], size=mask.sum(), p=[0.7, 0.15, 0.15] ) # Verify no leakage train_sites_set = set(df[df['split'] == 'train']['site_index']) val_sites_set = set(df[df['split'] == 'val']['site_index']) test_sites_set = set(df[df['split'] == 'test']['site_index']) assert len(train_sites_set & val_sites_set) == 0, "Train-Val leakage!" assert len(train_sites_set & test_sites_set) == 0, "Train-Test leakage!" assert len(val_sites_set & test_sites_set) == 0, "Val-Test leakage!" print(f"Train: {len(df[df['split']=='train'])} samples from {len(train_sites)} sites") print(f"Val: {len(df[df['split']=='val'])} samples from {len(val_sites)} sites") print(f"Test: {len(df[df['split']=='test'])} samples from {len(test_sites)} sites") ``` ## Considerations for Use ### Data Characteristics 1. **Integrated Negatives**: Sampled from corners of the same geographic areas as positives (after rotation), representing surrounding landscape context. Sharp boundaries between corners with no blending. 2. **Unlabeled Data** (label = -1): Random background samples with exclusion buffer around known sites. May contain undiscovered archaeological sites. Suitable for semi-supervised learning or active learning scenarios. 3. **Landcover Negatives**: Explicitly sampled from urban areas (40%), water bodies (30%), and cropland (30%) to ensure the model learns to reject obvious non-archaeological features. 4. **Cloud Cover**: Maximum 20% cloud cover per image. ## Citation If you use this dataset, please cite: ```bibtex @inproceedings{li2025fusing, title={{Fusing Text and Terrain}: {An LLM}-Powered Pipeline for Preparing Archaeological Datasets from Literature and Remote Sensing Imagery}, author={Li, Linduo and Wu, Yifan and Wang, Zifeng}, booktitle={{CAA UK 2025}: Computer Applications and Quantitative Methods in Archaeology}, year={2025}, month={December}, address={University of Cambridge, UK}, organization={CAA UK}, note={Conference held 9--10 December 2025} } ``` **Presentation Links:** - [Abstract](https://drive.google.com/file/d/1zQ3-LrlsDmZiI1D3QkJo1lQ43e6MwYq1/view?usp=sharing) - [Slides](https://drive.google.com/file/d/1n79eqJ7XM3h3ftmJakhP5JOrqjONAnRE/view?usp=sharing) ## License This dataset is released under the MIT License. ## Acknowledgments - **Sentinel-2 satellite imagery** was provided by the European Space Agency (ESA) through the Copernicus Programme. - **FABDEM elevation data** were provided by the University of Bristol. - **Google Earth Engine** was used as the primary data processing and analysis platform. - **Geoglyph location data** were derived from publicly available archaeological compilations curated by James Q. Jacobs (2025), *JQ Jacobs Archaeology*, last modified July 31, 2025: https://jqjacobs.net/archaeology/geoglyph.html --- **Contact**: linduo.li@ip-paris.fr **Last Updated**: December 2025