Friday, September 4, 2026
Science
No Result
View All Result
  • Login
  • HOME
  • SCIENCE NEWS
  • CONTACT US
  • HOME
  • SCIENCE NEWS
  • CONTACT US
No Result
View All Result
Scienmag
No Result
View All Result
Home Science News Technology and Engineering

Open-source tool automates volcanic cone analysis on Mars and Earth

September 4, 2026
in Technology and Engineering
Violet Maxwell
By Violet Maxwell Scienmag Editorial Profile - Natural Hazards
Reading Time: 5 mins read
0
Open-source tool automates volcanic cone analysis on Mars and Earth

Open-source tool automates volcanic cone analysis on Mars and Earth

65
SHARES
587
VIEWS
Share on FacebookShare on Twitter
ADVERTISEMENT

Scientists measuring volcanic cones on Mars and Earth have long faced a frustrating bottleneck: the landscape is full of cones, but characterizing them reliably means hours of manual measurement in geographic information systems, with results that vary from expert to expert. A new open-source software package, MarsCONE 2.0, aims to break that bottleneck by turning what was once a specialist scripting task into an accessible desktop application that can measure hundreds of thousands of conical landforms consistently across two planets.

The software, described in the journal SoftwareX, was developed by Jakub Śledziowski, Bartosz Pieterek, and Thomas J. Jones. It extends an earlier command-line tool called MarsCONE, which was designed to automatically extract morphometric measurements of pitted cones from digital elevation models, or DEMs, of the Martian surface. The new version wraps the validated computational core in a graphical user interface, adds quality-control and manual-correction tools, and broadens support from Mars alone to both Earth and Mars, including the coordinate reference system complications that come with comparing data across planetary bodies.

Pitted cones are among the most abundant landforms on Mars. Hundreds of thousands have been cataloged globally, yet their origins remain contested. Morphologically, they resemble volcanic scoria cones, spatter cones, tuff cones, and rootless cones formed where lava interacted with water ice in the subsurface. Some researchers argue that many are actually mud volcanoes, formed by sedimentary rather than igneous processes. Because these different origins produce similar shapes from orbit, planetary geologists increasingly rely on precise, quantitative measurements of parameters such as cone basal width, summit crater width, cone height, crater depth, and flank slope to discriminate among formation mechanisms. The problem is that manual measurements depend heavily on how an individual researcher delineates a cone’s base or crater rim, introducing subjectivity that limits reproducibility and makes it difficult to combine results across studies.

MarsCONE 2.0 preserves the three-stage architecture of its predecessor. The Generator module reads a DEM along with cone locations, either as polygons or, preferably, as point markers of cone centers, and cuts radial cross-sections around each landform, extracting elevation profiles along eight transects. The Finder module then analyzes those profiles to detect the characteristic topographic break points: the cone base on either side, the summit rim, and the central depression. The Analyzer module aggregates detections across all transects into cone-level metrics, including height, crater depth, base and crater diameters, slope statistics, shape descriptors, and dimensionless morphometric ratios. The revised Finder offers configurable profile smoothing and a lower-edge protection option to guard against false detections caused by noisy terrain or edge effects near DEM boundaries.

Where the new version differs most visibly is in how users interact with that pipeline. The original MarsCONE required users to edit Python scripts; its predecessors in terrestrial volcanology, MORVOLC and NETVOLC, were likewise command-line tools. MarsCONE 2.0, built with the PySide6 toolkit, places the entire workflow in a desktop interface. Users configure the coordinate reference system, processing parameters, and export options in one panel, launch the Generator, Finder, and Analyzer as separate processes, and monitor logs and preview results in the same window. Results are exported in interoperable formats—CSV tables, GeoPackage or GeoJSON spatial layers, and PNG diagnostic images—so they can flow directly into QGIS, ArcGIS, R, or Python-based analyses.

A suite of new modules handles cases that automated pipelines typically struggle with. The Cross-section module lets users inspect the detected points on individual profiles; in one demonstration, a cone in Arizona’s San Francisco Volcanic Field showed marked asymmetry, with left- and right-flank heights of 264 and 289 meters and differing relative crater depths. The Manual Fix module allows researchers to reposition points on problematic profiles, but crucially, corrections are stored as separate override records rather than overwriting automatic detections, keeping every intervention transparent and auditable. A DEM Overlay module projects detections onto hillshade imagery, and the Elevation Explorer permits freeform profiling in any orientation, useful for breached cones, disrupted rims, and overflow pathways that standard radial metrics cannot capture.

Perhaps the most significant new capability for planetary science is the Complex Cones module. Volcanic fields frequently contain overlapping edifices with multiple summit craters, landforms that earlier workflows either excluded from datasets or analyzed separately, precisely because automated tools cannot reliably define their boundaries. Rather than attempting automatic classification, MarsCONE 2.0 lets users group cones into composite systems based on geological interpretation; the software then records those relationships explicitly and generates morphometric summaries for both individual cones and the grouped system.

The team verified the software against the original validated MarsCONE workflow using 58 Martian rootless cones, confirming close correspondence of outputs. Because the original tool had been tested only on Martian data, the authors added a terrestrial validation: a single experienced volcanologist manually measured 27 scoria cones in ArcGIS Pro from the highest-resolution DEMs available, and those measurements were compared with MarsCONE 2.0’s automated outputs. The agreement was strong for cone height and crater width, with Pearson correlation coefficients of 0.93 and 0.928 respectively, regression values of 0.86, and symmetric mean absolute percentage errors of 9.3 and 13.2 percent. Basal width showed weaker agreement, with a correlation of 0.76 and a positive bias of roughly 167 meters, about 11.7 percent of the mean manually measured width—a difference the authors attribute to the inherent ambiguity of manually defining a cone’s base.

The software also quantifies a subtle but important issue: DEM resolution. Comparing 11 co-registered scoria cones in the San Francisco Volcanic Field imaged at 1-, 10-, and 30-meter resolution, the team found that height and crater depth matched the 1-meter reference most closely across resolutions, while basal width was the most sensitive parameter, deviating most at 30 meters per pixel. The practical recommendation is straightforward: use the highest-resolution DEM available, and interpret basal dimensions with particular caution at coarse resolutions.

To demonstrate transplanetary applicability, the team ran the workflow on scoria cone fields in Ulysses Colles and Hydraotes Colles on Mars, using DEMs derived from Context Camera imagery at 12 meters per pixel and HiRISE imagery at 1 meter per pixel, and on terrestrial fields in San Francisco, Arizona, and Michoacán-Guanajuato, Mexico, with datasets ranging from 30 meters down to 1.5 meters per pixel. In the integrated multi-dataset comparison module, Martian cones showed distinctly larger basal widths and proportionally smaller craters relative to their bases than their terrestrial counterparts, consistent with expectations for volcanic eruptions under Mars’s lower atmospheric pressure and gravity, where ballistic clasts travel farther and build wider edifices. The module supports scatter plots with dataset centroids and convex-hull envelopes, pairwise similarity heatmaps, and principal component or UMAP embedding projections, letting researchers compare cone populations across planets within a standardized metric space.

Every cone processed by the Analyzer receives explicit quality-assurance metadata—a quality flag rated good, moderate, or poor, a numeric quality score, and diagnostic reason codes computed from user-configurable thresholds and transect-dispersion statistics. That uncertainty screening matters when applying the same workflow to DEMs that differ in resolution, noise structure, and acquisition source, whether from NASA orbiters or national mapping agencies.

The software is released under the MIT License on GitHub, with a Conda environment file supporting Windows, Linux, and macOS, a video tutorial, and a demonstration dataset archived on Zenodo alongside all the DEMs used in the study. Funded by Poland’s National Science Centre and a UK Research and Innovation Future Leaders Fellowship, the project reflects a broader push in planetary science toward tools that satisfy FAIR principles—making data findable, accessible, interoperable, and reusable.

For a field whose interpretations increasingly hinge on morphometric comparisons across hundreds of thousands of landforms on multiple worlds, the significance goes beyond convenience. The authors argue that progress depends not just on better algorithms but on transparent, reproducible tools that convert expert visual interpretation into reusable datasets. By lowering the programming barrier and embedding quality control into the workflow itself, MarsCONE 2.0 moves

Subject of Research: Technology and Engineering

Subject of Research: Technology and Engineering

Article Title: Open-source tool automates volcanic cone analysis on Mars and Earth

Article References: Śledziowski, J., Pieterek, B., & Jones, T. J. (2026). MarsCONE 2.0: An open-source software framework for automated morphometric analysis of planetary and terrestrial volcanic cones. SoftwareX, 35, Article 102976. https://doi.org/10.1016/j.softx.2026.102976

Image Credits: AI Generated

DOI: 10.1016/j.softx.2026.102976

Keywords: automated landform measurement on Mars and Earth, cross-planetary coordinate system support, digital elevation models for volcanic structures, GIS automation for volcanic landforms, Mars and Earth comparative geomorphology, morphometric analysis of planetary cones, open-source planetary geomorphology tools, pitted volcanic cone identification and measurement, planetary surface feature characterization software, volcanic cone analysis software, volcanic cone morphology analysis, volcanic landforms cataloging and analysis

Cite Scienmag News

Violet Maxwell. (September 4, 2026). Open-source tool automates volcanic cone analysis on Mars and Earth. Scienmag. https://scienmag.com/open-source-tool-automates-volcanic-cone-analysis-on-mars-and-earth/

Violet Maxwell. "Open-source tool automates volcanic cone analysis on Mars and Earth." Scienmag, 4 September 2026, https://scienmag.com/open-source-tool-automates-volcanic-cone-analysis-on-mars-and-earth/. Accessed 4 September 2026.

Violet Maxwell. "Open-source tool automates volcanic cone analysis on Mars and Earth." Scienmag. September 4, 2026. https://scienmag.com/open-source-tool-automates-volcanic-cone-analysis-on-mars-and-earth/

Tags: automated landform measurement on Mars and Earthautomated measurement of pitted volcanic conesautomated volcanic landform measurement toolscross-planetary coordinate system supportcross-planetary geological data comparisondigital elevation models for volcanic featuresdigital elevation models for volcanic structuresGIS automation for volcanic landformsGIS-based volcanic cone characterizationMars and Earth comparative geomorphologyMars and Earth landformsMarsCONE 2.0 software featuresmorphometric analysis of planetary conesopen-source planetary geology softwareopen-source planetary geomorphology toolspitted volcanic cone identification and measurementplanetary surface feature characterization softwareplanetary surface morphology analysisvolcanic cone analysisvolcanic cone analysis softwarevolcanic cone cataloging and analysis techniquesvolcanic cone morphology analysisvolcanic cone morphology and origin studiesvolcanic landforms cataloging and analysis
Share26Tweet16
Previous Post

Microplastics found in brains of endangered island foxes

Next Post

Dry-heat treatment enhances quinoa flour function and shows hypoglycemic effects

Related Posts

New Fusion-Based Method Detects Drones at Long Range in Cluttered Backgrounds
Technology and Engineering

New Fusion-Based Method Detects Drones at Long Range in Cluttered Backgrounds

September 4, 2026
Defending federated learning from backdoors with semantic filters and geometry
Technology and Engineering

Defending federated learning from backdoors with semantic filters and geometry

September 4, 2026
Real-time multimedia CPR training feedback using pose estimation and action recognition
Technology and Engineering

Real-time multimedia CPR training feedback using pose estimation and action recognition

September 4, 2026
Researchers build GPU-based distributed computing framework
Technology and Engineering

Researchers build GPU-based distributed computing framework

September 4, 2026
AI Disclosure and Emotional Support in Chatbot Talks with International Students
Technology and Engineering

AI Disclosure and Emotional Support in Chatbot Talks with International Students

September 4, 2026
Magnetic regulation robot design tackles obstacle-crossing challenges
Technology and Engineering

Magnetic regulation robot design tackles obstacle-crossing challenges

September 4, 2026
Next Post
Dry-heat treatment enhances quinoa flour function and shows hypoglycemic effects

Dry-heat treatment enhances quinoa flour function and shows hypoglycemic effects

  • Mothers who receive childcare support from maternal grandparents show more optimized

    Mothers who receive childcare support from maternal grandparents show more parental warmth, finds NTU Singapore study

    27656 shares
    Share 11059 Tweet 6912
  • University of Seville Breaks 120-Year-Old Mystery, Revises a Key Einstein Concept

    1061 shares
    Share 424 Tweet 265
  • Bee body mass, pathogens and local climate influence heat tolerance

    682 shares
    Share 273 Tweet 171
  • Researchers record first-ever images and data of a shark experiencing a boat strike

    546 shares
    Share 218 Tweet 137
  • Groundbreaking Clinical Trial Reveals Lubiprostone Enhances Kidney Function

    531 shares
    Share 212 Tweet 133
Science

Embark on a thrilling journey of discovery with Scienmag.com—your ultimate source for cutting-edge breakthroughs. Immerse yourself in a world where curiosity knows no limits and tomorrow’s possibilities become today’s reality!

RECENT NEWS

  • Dry-heat treatment enhances quinoa flour function and shows hypoglycemic effects
  • Open-source tool automates volcanic cone analysis on Mars and Earth
  • Microplastics found in brains of endangered island foxes
  • Gender gaps found in sustainable rice farming indicators across sub-Saharan Africa

Categories

  • Agriculture
  • Anthropology
  • Archaeology
  • Athmospheric
  • Biology
  • Biotechnology
  • Blog
  • Bussines
  • Cancer
  • Chemistry
  • Climate
  • Earth Science
  • Editorial Policy
  • Marine
  • Mathematics
  • Medicine
  • Pediatry
  • Policy
  • Psychology & Psychiatry
  • Science Education
  • Social Science
  • Space
  • Technology and Engineering

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 5,151 other subscribers

© 2025 Scienmag - Science Magazine

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • HOME
  • SCIENCE NEWS
  • CONTACT US

© 2025 Scienmag - Science Magazine

Discover more from Science

Subscribe now to keep reading and get access to the full archive.

Continue reading