Skip to main content

Crystal presets database for gemmological and mineralogical visualization

Project description

mineral-database

PyPI version Python License: MIT

Mineral Database - A comprehensive database of mineral crystal habits with CDL notation and gemmological properties for visualization applications.

Part of the Gemmology Project.

Installation

pip install mineral-database

Quick Start

from mineral_database import get_preset, list_presets, search_presets

# Get a specific mineral preset
diamond = get_preset('diamond')
print(diamond['cdl'])      # 'cubic[m3m]:{111}@1.0 + {110}@0.2'
print(diamond['system'])   # 'cubic'
print(diamond['hardness']) # 10

# List all presets
all_presets = list_presets()

# List presets by crystal system
cubic_presets = list_presets('cubic')

# Search presets
garnet_matches = search_presets('garnet')

Features

  • 94+ mineral presets with accurate crystallographic data
  • CDL notation for crystal habit visualization
  • FGA-standard properties (RI, SG, optical character, etc.)
  • SQLite backend for fast queries
  • Full-text search across mineral names and properties
  • Backwards compatible with original CRYSTAL_PRESETS dict API

Database Contents

The database includes presets for all major crystal systems:

System Count Examples
Cubic ~25 Diamond, Garnet, Fluorite, Pyrite
Hexagonal ~8 Beryl, Emerald, Aquamarine, Apatite
Trigonal ~15 Quartz, Ruby, Sapphire, Tourmaline
Tetragonal ~5 Zircon, Rutile, Cassiterite
Orthorhombic ~10 Topaz, Peridot, Tanzanite
Monoclinic ~10 Kunzite, Epidote, Gypsum
Triclinic ~5 Turquoise, Kyanite, Labradorite
Twins ~15 Japan Law, Spinel Macle, Iron Cross

Database Completeness (Updated 2026-01-25)

The mineral database has been comprehensively enriched with FGA-standard gemmological data:

  • 95 minerals with complete crystallographic data
  • 92/95 minerals (96.8%) with complete RI (refractive index)
  • 94/95 minerals (98.9%) with complete SG (specific gravity)
  • 94/95 minerals (98.9%) with optical character classification
  • 93/95 minerals (97.9%) with pleochroism data
  • 94/95 minerals (98.9%) with lustre, cleavage, and fracture data
  • 60/95 minerals (63.2%) with dispersion values
  • 40+ gemstones with comprehensive treatments and diagnostic inclusions

Data Completeness by Crystal System

System Minerals RI SG Optical Character
Cubic 26 92.3% 100% 100%
Trigonal 19 100% 100% 100%
Monoclinic 15 100% 100% 100%
Orthorhombic 13 92.3% 92.3% 92.3%
Hexagonal 8 100% 100% 100%
Triclinic 7 100% 100% 100%
Tetragonal 6 100% 100% 100%
Amorphous 1 100% 100% 100%

Data Sources

  • FGA (Fellowship of the Gemmological Association) curriculum materials
  • Mindat.org mineralogical database
  • GIA (Gemological Institute of America) gem encyclopedia
  • Webmineral.com physical property database
  • International Gem Society reference materials

All data has been cross-validated against multiple authoritative sources and validated for consistency with crystal system optical properties.

API Reference

Query Functions

from mineral_database import (
    get_preset,           # Get preset dict by name
    get_mineral,          # Get Mineral object by name
    list_presets,         # List preset names
    list_preset_categories,  # List categories
    search_presets,       # Full-text search
    filter_minerals,      # Filter by criteria
    get_presets_by_form,  # Get by crystal form
    count_presets,        # Total count
)

Backwards Compatibility

The package provides dict-like CRYSTAL_PRESETS for code migration:

from mineral_database import CRYSTAL_PRESETS

# All dict operations work
preset = CRYSTAL_PRESETS['diamond']
preset = CRYSTAL_PRESETS.get('ruby')
'garnet' in CRYSTAL_PRESETS
for name in CRYSTAL_PRESETS:
    print(name)

Mineral Object

from mineral_database import get_mineral, Mineral

mineral = get_mineral('ruby')
print(mineral.id)           # 'ruby'
print(mineral.name)         # 'Ruby'
print(mineral.system)       # 'trigonal'
print(mineral.chemistry)    # 'Al2O3:Cr'
print(mineral.hardness)     # 9
print(mineral.ri)           # '1.762-1.770'
print(mineral.localities)   # ['Myanmar', 'Mozambique', ...]

Property Formatting

from mineral_database import (
    INFO_GROUPS,
    get_info_properties,
    get_property_label,
    format_property_value,
)

# Get FGA-style properties
props = get_info_properties('ruby', 'fga')
# Returns: {'name': 'Ruby', 'ri': '1.762-1.770', 'sg': 4.0, ...}

# Format for display
label = get_property_label('sg')  # 'SG'
value = format_property_value('sg', 4.0)  # '4'

CLI Usage

# List all presets
mineral-db --list

# List by crystal system
mineral-db --list cubic

# Show preset details
mineral-db --info diamond

# Search presets
mineral-db --search garnet

# Output as JSON
mineral-db --json ruby

# Show categories
mineral-db --categories

Database Schema

The SQLite database stores minerals with full gemmological properties:

# Core fields (all minerals)
id, name, cdl, system, point_group, chemistry, hardness, description

# Optional gemmological properties
sg, ri, birefringence, optical_character, dispersion, lustre,
cleavage, fracture, pleochroism, twin_law, phenomenon

# List fields (JSON-encoded)
localities, forms, colors, treatments, inclusions

Building the Database

For development, you can rebuild the database from source:

# From legacy Python dict
python scripts/build_db.py --from-legacy crystal_presets.py -o minerals.db

# From YAML files
python scripts/build_db.py --from-yaml data/source/minerals -o minerals.db

# Export to YAML for editing
python scripts/build_db.py --export-yaml minerals.db -o data/source/minerals

Development

# Clone and install
git clone https://github.com/gemmology-dev/mineral-database.git
cd mineral-database
pip install -e ".[dev]"

# Run tests
pytest

# Build database
python scripts/build_db.py --from-legacy /path/to/crystal_presets.py -o src/mineral_database/data/minerals.db

License

MIT License - see LICENSE for details.

Related Projects

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gemmology_mineral_database-1.8.1.tar.gz (563.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gemmology_mineral_database-1.8.1-py3-none-any.whl (568.2 kB view details)

Uploaded Python 3

File details

Details for the file gemmology_mineral_database-1.8.1.tar.gz.

File metadata

File hashes

Hashes for gemmology_mineral_database-1.8.1.tar.gz
Algorithm Hash digest
SHA256 0e1ff40d27a3bf977782ac0c63ab4f96cd40550bcc06a39f81df12b6a8b3325e
MD5 5c1a7f93ca0b9e80cdac5a80ba0dc7b9
BLAKE2b-256 21bcd6e347ccb0b0fe5ddd6e5ab52914ee91230194f35f6c0d61c612576718d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for gemmology_mineral_database-1.8.1.tar.gz:

Publisher: pypi-publish.yml on gemmology-dev/mineral-database

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gemmology_mineral_database-1.8.1-py3-none-any.whl.

File metadata

File hashes

Hashes for gemmology_mineral_database-1.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b591785eb1ec25ea13fd2184c269b350595e3d37a9d20c7f06be33db8f4a0417
MD5 59112b00cf6ee695b7c2d1d2b22eb894
BLAKE2b-256 843a95391662f3c7fba85ff88977fc0cafb2c2638b907d45d2542ba9cd8e358d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gemmology_mineral_database-1.8.1-py3-none-any.whl:

Publisher: pypi-publish.yml on gemmology-dev/mineral-database

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page