ATL
1 program
Added 2026-02-13T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: ATLAS Transformation Language
Provenance: commit c41c9fcdd1 · authored 2026-02-13T15:20:05+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/atlas-transformation-languageWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | OBEO · INRIA Free software community |
|---|---|
| License | Eclipse Public License |
| Homepage | http://www.eclipse.org/atl |
Related languages
LLM-contributed programs
Class to Relational Transformation
Provenance: commit c41c9fcdd1 · authored 2026-02-13T15:20:05+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- @path UML=/UML/UML.ecore
-- @path Relational=/Relational/Relational.ecore
module Class2Relational;
create OUT : Relational from IN : UML;
-- Class to Table transformation
rule Class2Table {
from
c : UML!Class
to
t : Relational!Table (
name <- c.name,
col <- c.attributes->collect(e | thisModule.Attribute2Column(e))
)
}
-- Attribute to Column transformation
lazy rule Attribute2Column {
from
a : UML!Attribute
to
c : Relational!Column (
name <- a.name,
type <- a.type.name
)
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)