De erfgoedpremie kent drie procedures:
De omvang van een erfgoedpremie wordt berekend op basis van een kostenraming die de indient bij het agentschap Onroerend Erfgoed. Afhankelijk van de aard van de premienemer en de functie van het beschermde onroerend goed kan het variëren: 40, 60 of 80% (waarvan 80% uitdovend is).
De indicator meet het aantal toegekende erfgoedpremies per jaar en maakt daarbij een onderscheid naargelang het premiepercentage waarop de premienemer aanspraak maakte.
Indicator | Verdeling erfgoedpremies naar premiepercentage |
Indicatornr. | 2 |
Meeteenheid | Aantal erfgoedpremies |
Meetmethode | Query in Orafin |
Meetfrequentie | jaarlijks |
Einddatum huidige meting | 2023-12-31 |
Datum publicatie meting | 2024-05-31 |
Datum publicatie volgende meting | 2025-05-30 |
import { yearParse } from "../code/js/oe_helpers.js"
d = FileAttachment("../data/d2.csv")
.csv({ typed: true })
.then( d => (yearParse(d)))
d2 = d.map( (x) => { x.percentage = x.premiepercentage + ' + ' + x.extra_premie; return x; })
bijzonder = d.filter((x) => {return x.procedure == 'Bijzondere procedure' && x.jaar.getYear() + 1900 > 2019 })
standaard = d.filter((x) => {return x.procedure == 'Standaardprocedure' && x.jaar.getYear() + 1900 > 2019 })
oproep = d.filter((x) => {return x.procedure == 'Via oproep' && x.jaar.getYear() + 1900 > 2019 })
Plot.plot({
//x: { interval: 'year' },
x: {grid: true},
marginLeft: 100,
color: {legend: true},
height: 700,
marks: [
Plot.barX(bijzonder,
Plot.groupY({ x: 'sum' },
{ x: 'aantal',
y: 'percentage',
fy: 'jaar',
fill: 'percentage',
tip: {
format: {
x: false,
y: true
}
}
})
)
]
})
Plot.plot({
//x: { interval: 'year' },
x: {grid: true},
marginLeft: 100,
color: {legend: true},
height: 700,
marks: [
Plot.barX(standaard,
Plot.groupY({ x: 'sum' },
{ x: 'aantal',
y: 'percentage',
fy: 'jaar',
fill: 'percentage',
tip: {
format: {
x: false,
y: true
}
}
})
)
]
})
Plot.plot({
//x: { interval: 'year' },
x: {grid: true},
marginLeft: 100,
color: {legend: true},
height: 700,
marks: [
Plot.barX(oproep,
Plot.groupY({ x: 'sum' },
{ x: 'aantal',
y: 'percentage',
fy: 'jaar',
fill: 'percentage',
tip: {
format: {
x: false,
y: true
}
}
})
)
]
})