from pptx import Presentation from pptx.util import Inches # Create a new PowerPoint presentation object prs = Presentation() #
Title Slide slide_layout = prs.slide_layouts[0] # Use the title slide layout slide = prs.slides.add_slide(slide_layout) title_placeholder = slide.shapes.title subtitle_placeholder = slide.placeholders[1] title_placeholder.text = "Stages of Exploration as per UNFC Nor subtitle_placeholder.text = "Focus on Geological Assessment ('G' Axis)\nYour Name\nDate" # Function to add a slide with a title and content def add_slide(title, content): slide_layout = prs.slide_layouts[1] # Use the layout with a title and conte slide = prs.slides.add_slide(slide_layout) title_placeholder = slide.shapes.title content_placeholder = slide.placeholders[1] title_placeholder.text = title content_placeholder.text = content #
Introduction to UNFC add_slide("Introduction to UNFC "The UNFC is a universal system for classifying, managing, and reporting energy, mineral, and raw material resources.\n" "Purpose: To provide a consistent framework to compare different types of resources.\n" "Objectives: Standardization, comparability, and clarity in resource reporting.") #
Reconnaissance (G4) add_slide("Reconnaissance (G4)", "1. Aerial Reconnaissance: Remote sensing, airborne geophysical etc "2. Geological Survey: Mapping on 1:50,000 or 1:25,000 scale.\n" "3. Geochemical Survey:\ " i) Grab, chip sampling\ " ii) Recording of broad geomorphology, drainage etc.\n" "4. Geophysical Survey: Ground Geophysical survey.\n" "5. Technological:\n" " i) Pitting/Trenching: one or two to expose mineralized zone at ideal location\n" " ii) Scout drilling: A few boreholes to know the existence of mineral\ " iii) Sampling: Regional and random chip samples.\n" "6. Petrographic and Mineralogical Studies: To determine principal rock types, mineral assemblage, identification of mineral of interest. "7. Synthesis of all available data/concepts.") #
Prospecting (G3) add_slide("Prospecting (G3)", "1. Geological Surveys:\n" " i) Mapping on 1:10,000 or larger scale\n" " ii) Linking of prepared maps with topogrid\n" " iii) Assessment of lithology, structure, surface mineralization, analysis of old workings etc
"2. Geochemical Survey: Geochemical sampling rock type wise, soil survey.\n" "3. Geophysical Survey: Detailed ground geophysical work, borehole logging.\n" "4. Technological:\n" " i) Pitting/trenching to explore mineralized zone\n" " ii) Drilling borehole\n" "5. Sampling: litho geochemical from a well known section, pit/trench and core sampling.\n" "6. Petrographic and Mineralogical Studies: study of host rock of the deposits and alteration zone, determination of phase in which minerals occur and mineralogical studies (ore microscopic, XRD, EPMA etc), identification of oxidized and prima #