CoolFace
Datasetpublic

NoraResearchLab/ds424-geologic-map-north-america

DS-424 Geologic Map of North America β€” GeoParquet Edition A standardized, AI/API-ready GeoParquet conversion of the USGS Database of the Geologic Map of North America (DS-424, 2009). This dataset modernizes the original GIS distribution into a format built for programmatic access β€” no geological reinterpretation, only representation, validation, and metadata enhancement on top of the authoritative USGS/GSA source. Quick Links πŸ“¦ Dataset on… See the full description on the dataset page: https://huggingface.co/datasets/NoraResearchLab/ds424-geologic-map-north-america.

sourceHugging Facecc0-1.0updated 1mo agoView on Hugging Face
1likes147downloads
Dataset Card

<p align="center"> <img src="https://i.ibb.co/d020TxqC/image.png" alt="NORA Research Lab Banner" width="800"> </p>

<p align="center"> <a href="https://github.com/Nora-Research-Lab"><img src="https://img.shields.io/badge/GitHub-Nora--Research--Lab-181717?style=flat&logo=github" alt="GitHub"></a> <a href="https://huggingface.co/NoraResearchLab"><img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-NoraResearchLab-yellow?style=flat" alt="Hugging Face"></a> <a href="https://www.linkedin.com/company/nora-research-lab"><img src="https://img.shields.io/badge/LinkedIn-Nora%20Research%20Lab-0A66C2?style=flat&logo=linkedin" alt="LinkedIn"></a> <a href="https://x.com/noraresearchlab"><img src="https://img.shields.io/badge/X-@noraresearchlab-000000?style=flat&logo=x" alt="X"></a> </p>

DS-424 Geologic Map of North America β€” GeoParquet Edition

A standardized, AI/API-ready GeoParquet conversion of the USGS Database of the Geologic Map of North America (DS-424, 2009). This dataset modernizes the original GIS distribution into a format built for programmatic access β€” no geological reinterpretation, only representation, validation, and metadata enhancement on top of the authoritative USGS/GSA source.

Quick Links

Core Principle

We are not modifying the geology. We are modernizing the representation of the geology.

The original DS-424 dataset remains the authoritative source. This GeoParquet release is a derived, standardized representation intended for modern computational workflows β€” GeoPandas, databases, AI pipelines, and APIs.

Dataset Contents

LayerFileFeature CountGeometry TypeNotes
Geologic Unitsgeologic_units.parquet39,828Polygon74 invalid geometries repaired (buffer(0))
Geologic Contactsgeologic_contacts.parquet53,356LineStringβ€”
Faultsfaults.parquet12,424LineStringβ€”

All layers are reprojected to EPSG:4326 (WGS 84) and column names normalized to snake_case.

Usage

python
import geopandas as gpd

units = gpd.read_parquet("geologic_units.parquet")
contacts = gpd.read_parquet("geologic_contacts.parquet")
faults = gpd.read_parquet("faults.parquet")

print(units.crs)
units.plot(column="rocktype", legend=True)  # example β€” see metadata.json for actual field names

Or load directly from the Hugging Face Hub:

python
from huggingface_hub import hf_hub_download
import geopandas as gpd

path = hf_hub_download(
    repo_id="NoraResearchLab/ds424-geologic-map-north-america",
    filename="geologic_units.parquet",
    repo_type="dataset",
)
gdf = gpd.read_parquet(path)

Metadata & Provenance

Full field-level metadata (units, types, CRS, provenance, transformation log) is provided in metadata.json, generated automatically from the conversion pipeline. It documents:

  • β€”Source dataset identity and publication details
  • β€”Transformation steps applied (reprojection, column normalization, geometry repair)
  • β€”Explicit confirmation that no new geological interpretation was introduced

Source Data

  • β€”Title: Database of the Geologic Map of North America (DS-424)
  • β€”Publisher: U.S. Geological Survey / Geological Society of America
  • β€”Publication year: 2009
  • β€”Original source: http://pubs.usgs.gov/ds/424/
  • β€”Distribution used: Shapefile release (GDAL/OpenFileGDB cannot read the compressed File Geodatabase distribution)

License

Distributed under the same terms as the source USGS/GSA data (public domain / CC0 for USGS-produced data). See the original DS-424 publication for full licensing details.

Citation

If you use this dataset, please cite the original USGS publication:

Garrity, C.P., and Soller, D.R., 2009, Database of the Geologic Map of North America; adapted from the map by J.C. Reed, Jr. and others (2005): U.S. Geological Survey Data Series 424.

And optionally reference this derived GeoParquet edition as prepared by NORA Research Lab.