FileAttachmentDynamic = function(filename) {
return new Function("FileAttachment", `return FileAttachment("${filename}")`)(FileAttachment)
}
// Vaihdetaan tekstin väri
color = function(vari) {
if(vari > 0){
return "green"
}else{
return "red"
}
}
// Pyöristys
pyoristys = function(n, places) {
if (!places) return Math.round(n);
const d = 10 ** places;
return Math.round(n * d) / d;
}
//Euromerkintä
eurot = function(number) {
return number.toLocaleString('fi-FI', { style: 'currency', currency: 'EUR',minimumFractionDigits: 0 });
}
// Euromuutoksen laskeminen kertoimella
muutoskerroin = function(x, y) {
return (1+x/100)*y;
}
// Muutosprosentti
muutosprosentti = function(x, y) {
return pyoristys(((x-y)/y)*100,1);
}
// Tuhatjakaja
tuhatjakaja = function(x) {
return x/1000;
}
// Euromuutoksen laskeminen kertoimella
palkkakerroin = function(x, y) {
return 100*((1+x/100)*(1+y/100)-1);
}
// Jako-osuuden asukaskerroin
asukaskerroin = function(x, y) {
return (x/y);
}
// Jako-osuuden veroprosenttikerroin miinus1/miinus3 vuotta miinus 1 vuoden kerroin
veroprosenttikerroin = function(x, y) {
return (x/y);
}
// Kunnan muok. kunnallisvero, alkuvuosi ja loppuvuosi
kunnallisvero_muokkaus = function(kunnallisvero,asukaskerroin,veroprosentti) {
return kunnallisvero*asukaskerroin*veroprosentti;
}
//Tekstimuutokset
fn_nousu_lasku_txt = function(arvo){
if(arvo > 0) {
return "kasvanut"
}
else {
return "laskenut";
}
}
//TARVITAAN KARTOISSA
serialize = {
const xmlns = "http://www.w3.org/2000/xmlns/";
const xlinkns = "http://www.w3.org/1999/xlink";
const svgns = "http://www.w3.org/2000/svg";
return function serialize(svg) {
svg = svg.cloneNode(true);
const fragment = window.location.href + "#";
const walker = document.createTreeWalker(svg, NodeFilter.SHOW_ELEMENT);
while (walker.nextNode()) {
for (const attr of walker.currentNode.attributes) {
if (attr.value.includes(fragment)) {
attr.value = attr.value.replace(fragment, "#");
}
}
}
svg.setAttributeNS(xmlns, "xmlns", svgns);
svg.setAttributeNS(xmlns, "xmlns:xlink", xlinkns);
const serializer = new window.XMLSerializer;
const string = serializer.serializeToString(svg);
return new Blob([string], {type: "image/svg+xml"});
};
}
function toSVG(chart) {
if (chart.nodeName !== "FIGURE") {
return chart;
}
// the chart needs to be in the body if we want to read values, positions, sizes…
document.body.appendChild(chart);
const [x0, y0, width, height] = getBounds([chart]);
const nodes = [];
for (const node of d3
.select(chart)
.selectChildren("h1,h2,h3,div,figcaption,svg")) {
switch (node.nodeName.toLowerCase()) {
case "div":
{
const children = d3.select(node).selectChildren("div,span");
const height = getBounds([node, ...children])[3] + 2;
const svg = d3
.select(chart)
.append("svg")
.attr("width", width)
.attr("height", height);
nodes.push(svg.node());
const swatches = svg
.selectAll()
.data(
Array.from(children, (d) => {
const svg = d3.select(d).select("svg").node();
const bbox = svg.getBBox();
return {
style: window.getComputedStyle(d),
svg,
width: bbox.width,
height: bbox.height,
text: d.textContent,
bounds: getBounds([d])
};
})
)
.join("g")
.attr(
"transform",
(d) => `translate(${d.bounds[0] - x0},${10 + d.bounds[1] - y0})`
);
swatches
.append((d) => d.svg) // "rect")
.attr("width", (d) => d.width)
.attr("height", (d) => d.height)
.attr("y", (d) => `${-parseFloat(d.height) / 2}px`);
swatches
.append("text")
.text((d) => d.text)
.attr("x", (d) => d.width)
.attr("dx", 5)
.attr("dy", "0.38em")
.attr("font-family", (d) => d.style.fontFamily)
.attr("font-size", (d) => d.style.fontSize)
.attr("fill", (d) => d.style.color);
}
break;
case "figcaption":
case "h1":
case "h2":
case "h3":
{
const svg = d3
.select(chart)
.append("svg")
.attr("width", width)
.attr("overflow", "visible");
nodes.push(svg.node());
const children = d3.select(node).selectChildren();
let h = 0;
for (const d of children.size() > 0
? children.selectChildren()
: [node]) {
const style = window.getComputedStyle(d);
const t = svg
.append("g")
.attr("transform", `translate(0,${h})`)
.append(() =>
d3
.select(
Plot.text([d.textContent], {
text: (d) => d,
lineWidth:
(1.06 * parseFloat(style.width)) /
parseFloat(style.fontSize),
lineHeight: 1.2,
frameAnchor: "top-left"
}).plot()
)
.select("text")
.attr("font-family", style.fontFamily)
.attr("font-size", 1.08 * parseFloat(style.fontSize))
.attr("font-weight", style.fontWeight)
.attr("fill", style.color)
.node()
);
h += getBounds([t.node()])[3] + 4;
}
svg.attr("height", h);
}
break;
case "svg":
d3.select(chart).append(() => node);
nodes.push(node);
break;
}
}
return serializeAll(nodes)
.then((blob) => blob.text())
.then((c) => {
document.body.removeChild(chart);
return Object.assign(svg`${c}`, chart);
});
}
// Given an array of SVG elements, composites them into a single SVG element,
// and then serializes the result to a blob.
async function serializeAll(elements, {padding = 10} = {}) {
const fragment = location.href + "#";
let root;
if (elements.length === 1) {
root = elements[0].cloneNode(true); // optimize common case
} else {
const [ox, oy, dx, dy] = getBounds(elements);
root = document.createElementNS(svgns, "svg");
root.setAttribute("width", dx + 2 * padding);
root.setAttribute("height", dy + 2 * padding);
root.setAttribute("viewBox", [-padding, -padding, dx + 2 * padding, dy + 2 * padding]);
for (const element of elements) {
const svg = root.appendChild(element.cloneNode(true));
const { x, y, width, height } = element.getBoundingClientRect();
svg.setAttribute("x", x - ox);
svg.setAttribute("y", y - oy);
svg.setAttribute("width", width);
svg.setAttribute("height", height);
}
}
const walker = document.createTreeWalker(root, NodeFilter.SHOW_ELEMENT);
while (walker.nextNode()) {
const node = walker.currentNode;
for (const attr of node.attributes) {
if (attr.value.includes(fragment)) {
attr.value = attr.value.replace(fragment, "#");
}
}
}
root.setAttributeNS(xmlns, "xmlns", svgns);
root.setAttributeNS(xmlns, "xmlns:xlink", xlinkns);
const serializer = new XMLSerializer();
const string = serializer.serializeToString(root);
return new Blob([string], { type: "image/svg+xml" });
}
function getBounds(elements) {
let x1 = Infinity;
let y1 = x1;
let x2 = -x1;
let y2 = x2;
for (const element of elements) {
const { x, y, width, height } = element.getBoundingClientRect();
if (x < x1) x1 = x;
if (x + width > x2) x2 = x + width;
if (y < y1) y1 = y;
if (y + height > y2) y2 = y + height;
}
return [x1, y1, x2 - x1, y2 - y1];
}
// based on https://observablehq.com/@gka/cheap-fit-text-to-circle
function lines(text, targetWidth) {
const CHAR_W = {
"a":7,"B":8,"C":8,"c":6,"D":9,"f":4,"G":9,"H":9,"I":3,"i":3,"J":5,"j":3,"K":8,"k":6,
"l":3,"M":11,"m":11,"N":9,"O":9,"P":8,"Q":9,"R":8,"r":4,"S":8,"s":6,"t":4,"U":9,"v":6,
"W":11,"w":9,"x":6,"y":6,"z":5,".":2,",":2,":":2,";":2
};
function measureWidth(text) { return d3.sum(text, char => CHAR_W[char] || CHAR_W["a"]) * 0.8; };
const words = text.split(" ");
let line;
let lineWidth0 = Infinity;
const lines = [];
for (let i = 0, n = words.length; i < n; ++i) {
let lineText1 = (line ? line.text + " " : "") + words[i];
let lineWidth1 = measureWidth(lineText1);
if ((lineWidth0 + lineWidth1) / 2 < targetWidth) {
line.width = lineWidth0 = lineWidth1;
line.text = lineText1;
} else {
lineWidth0 = measureWidth(words[i]);
line = {width: lineWidth0, text: words[i]};
lines.push(line);
}
}
return lines;
}
xmlns = "http://www.w3.org/2000/xmlns/"
xlinkns = "http://www.w3.org/1999/xlink"
svgns = "http://www.w3.org/2000/svg"
Avainsanat
Kuntien kuukausiraportti, väestö, yhteistyö, avoin lähdekoodi, Tilastokeskus, tietojohtaminen
Aluetalous ja yritystoiminta
Yrityskanta
Yrityskanta
Yrityskannassa oli yrityksiä 2024Q2 yhteensä 1222 (lukema 2024Q1: 1231).
Vuosineljännes | Yrityskanta |
---|---|
2018Q3 | 1053 |
2018Q4 | 1071 |
2019Q1 | 1066 |
2019Q2 | 1078 |
2019Q3 | 1097 |
2019Q4 | 1099 |
2020Q1 | 1112 |
2020Q2 | 1116 |
2020Q3 | 1134 |
2020Q4 | 1142 |
2021Q1 | 1164 |
2021Q2 | 1182 |
2021Q3 | 1199 |
2021Q4 | 1202 |
2022Q1 | 1211 |
2022Q2 | 1201 |
2022Q3 | 1208 |
2022Q4 | 1223 |
2023Q1 | 1238 |
2023Q2 | 1222 |
2023Q3 | 1228 |
2023Q4 | 1230 |
2024Q1 | 1231 |
2024Q2 | 1222 |
Aloittaneet ja lopettaneet yritykset
Aloittaneet ja lopettaneet yritykset
Aloittaneita yrityksiä ajanjaksolla 2024Q2 oli yhteensä 23 (lukema 2024Q1: 34). . Lopettaneiden yritysten määrä oli samalla ajanjaksolla yhteensä 17 (lukema 2024Q1: 32)..
Vuosineljännes | Aloittaneet yritykset (lkm) | Lopettaneet yritykset (lkm) |
---|---|---|
2018Q3 | 20 | 5 |
2018Q4 | 23 | 19 |
2019Q1 | 24 | 16 |
2019Q2 | 28 | 10 |
2019Q3 | 29 | 13 |
2019Q4 | 15 | 13 |
2020Q1 | 27 | 19 |
2020Q2 | 23 | 13 |
2020Q3 | 31 | 14 |
2020Q4 | 22 | 18 |
2021Q1 | 40 | 22 |
2021Q2 | 40 | 11 |
2021Q3 | 28 | 21 |
2021Q4 | 24 | 16 |
2022Q1 | 26 | 31 |
2022Q2 | 21 | 13 |
2022Q3 | 20 | 11 |
2022Q4 | 26 | 18 |
2023Q1 | 30 | 36 |
2023Q2 | 20 | 16 |
2023Q3 | 22 | 11 |
2023Q4 | 13 | 29 |
2024Q1 | 34 | 32 |
2024Q2 | 23 | 17 |
Avoimet työpaikat kuukauden laskentapäivänä (lkm.)
Avoimet työpaikat kuukauden laskentapäivänä (lkm.)
Avoimia työpaikkoja oli 2024M09 yhteensä 39 (lukema 2024M08: 26).
Kuukausi | Avoimet työpaikat kuukauden laskentapäivänä (lkm.) |
---|---|
2022M10 | 192 |
2022M11 | 100 |
2022M12 | 101 |
2023M01 | 162 |
2023M02 | 134 |
2023M03 | 158 |
2023M04 | 139 |
2023M05 | 90 |
2023M06 | 181 |
2023M07 | 79 |
2023M08 | 57 |
2023M09 | 67 |
2023M10 | 64 |
2023M11 | 81 |
2023M12 | 66 |
2024M01 | 196 |
2024M02 | 118 |
2024M03 | 314 |
2024M04 | 72 |
2024M05 | 69 |
2024M06 | 30 |
2024M07 | 22 |
2024M08 | 26 |
2024M09 | 39 |
Uudet avoimet työpaikat
Avoimet työpaikat kuukauden laskentapäivänä (lkm.)
Avoimia työpaikkoja oli 2024M09 yhteensä 45 (lukema 2024M08: 32).
Kuukausi | Uudet avoimet työpaikat kuukauden aikana (lkm.) |
---|---|
2022M10 | 248 |
2022M11 | 193 |
2022M12 | 201 |
2023M01 | 241 |
2023M02 | 194 |
2023M03 | 220 |
2023M04 | 218 |
2023M05 | 229 |
2023M06 | 306 |
2023M07 | 125 |
2023M08 | 158 |
2023M09 | 102 |
2023M10 | 101 |
2023M11 | 118 |
2023M12 | 120 |
2024M01 | 252 |
2024M02 | 170 |
2024M03 | 356 |
2024M04 | 96 |
2024M05 | 158 |
2024M06 | 30 |
2024M07 | 31 |
2024M08 | 32 |
2024M09 | 45 |