▲ 14 r/ScientificComputing+1 crossposts

TERRA release v3 Ember

00:00 TERRA for Explorers
00:46 TERRA Studio

I've been building an open source desktop app for classifying land cover over a specific area from Sentinel-2 time series.

You draw an area on a map, set a date range, and classify. Imagery is read on demand from the Planetary Computer STAC catalog as COGs. There's a Random Forest path, a temporal transformer, and Prithvi-EO 2.0 embeddings.

It reports where the classification is wrong, not only how much of it is right. Agreement with the reference map is broken down per class and across spatial blocks, so you can tell whether the disagreement sits in one corner of the area or throughout it. Throughout usually means the model is being asked about ground it never learned, and there's a diagnosis between two runs that measures that distance.

There's also a canopy simulation that grows the classified crop in 3D and lights it with the hourly sun for that location.

Why Sentinel-2 and not something else: it's what the method here was built and validated on, it's open at 10 m with a roughly five day revisit, and it carries the red edge and SWIR bands the indices depend on. The obvious weakness is cloud, and in Brazil the cloudiest months sit right on top of the crop cycle. That's why SAR is where I want to go next, with other sources after it.

What it isn't: a QGIS or Earth Engine replacement. It targets farm to landscape scale areas under a fixed protocol. The classifiers emit five land cover classes and were fitted for study areas in western Paraná, so an area in another biome can come back confident and semantically wrong. I'm aware of that and working on it; for now the domain-shift diagnosis exists so the problem is visible instead of silent. Agreement with the reference is concordance with an annual map, not field truth.

On AI: my background is machine learning and remote sensing, not full stack development, so I used AI coding assistants for much of this. The frontend is where that shows most, and where bugs are most likely. The Python sidecar, where the research methods actually land, and the Go backend are written and reviewed by me continuously.

https://github.com/rexionmars/TERRA

u/Beginning-Claim5655 — 3 days ago

TERRA

TERRA is a desktop app for AOI-scale land-cover classification from Sentinel-2 time series (STAC/COG clip, no full-scene download).

It isn’t meant to be “another EO platform.” It’s the delivery layer for methods I develop and validate in research. The default path is a spectro-temporal Random Forest aligned with my SBrT 2026 protocol; the same AOI workflow also runs a Temporal Transformer and optional Prithvi-EO 2.0 heads. You get confidence, phenology, MapBiomas context, run compare, and an export package (CSV + classification GeoTIFF).

FULL Video: https://youtu.be/ZxQo3gtTh8M

Code: https://github.com/rexionmars/TERRA

u/Beginning-Claim5655 — 17 days ago

macOS 27: Wacom Center 6.4.13-4 fix — driver not responding / connect a device (Apple Silicon)

Wacom driver 6.4.13-4 breaks on macOS 27 beta. The tablet may work as a basic pointer, but Wacom Center shows "The tablet driver is not responding" or "Connect a device to see its settings here".

I packaged a community fix for Apple Silicon (tested on macOS 27.0 / build `26A5378j`, One by Wacom CTL-672). It’s based on [citrus-rin’s analysis](https://citrus-rin.jp/?p=1033) plus extra patches for ad-hoc signing, IOManager checks, and `WacomMultiTouch.framework` Team ID issues.

Repo (scripts + full README):** https://github.com/rexionmars/wacom-macos27-fix

Quick start

git clone https://github.com/rexionmars/wacom-macos27-fix.git

cd wacom-macos27-fix

chmod +x *.sh

./repair-wacom-full.sh # sudo

./fix-framework-teamid.sh # sudo, if touch drivers crash

u/Beginning-Claim5655 — 1 month ago