{"id":1274,"date":"2024-09-09T06:39:18","date_gmt":"2024-09-09T06:39:18","guid":{"rendered":"https:\/\/retedellereti.org\/?page_id=1274"},"modified":"2024-10-14T06:05:10","modified_gmt":"2024-10-14T06:05:10","slug":"calculator-library-expediture-gdp","status":"publish","type":"page","link":"https:\/\/retedellereti.org\/en\/calculator-library-expediture-gdp\/","title":{"rendered":"Calculator Library Expediture GDP"},"content":{"rendered":"<div>\n    <label for=\"inputA\"><em>Year Library Expenditure (incl personnel) \/ per inhabitant<\/em><br \/>\n    Inserisci l&#8217;importo totale della spesa annuale per la gestione della biblioteca (comprensiva delle spese per il personale) divisa per il numero di abitanti<\/label><br \/>\n    <input type=\"number\" id=\"inputA\" style=\"border-radius: 10px; padding: 5px; width: 300px;\">\n    <br \/><br \/>\n\n    <label for=\"inputB\"><em>Insert here your City (or region, or State) GDP \n\/ per inhabitant (if needed, look at the Web)<\/em><br \/>\n    Inserisci l&#8217;importo del PIL comunale (o regionale o nazionale) diviso per numero di abitanti:<\/label><br \/>\n    <input type=\"number\" id=\"inputB\" style=\"border-radius: 10px; padding: 5px; width: 300px;\">\n    <br \/><br \/>\n\n    <button onclick=\"calculateY()\" style=\"border-radius: 10px; padding: 5px;\"><em>Calculate<\/em> | Calculate<\/button>\n\n    <p id=\"resultY\"><\/p>\n    <h3>Key:<\/h3>\n    <p>\u263a\ufe0f > 0.9 (\u2030) of the city (region, state) GDP (2022 values) &#8211; more than European average<\/p>\n    <p>\ud83d\ude09 < 0.9 (\u2030) of the city (region, state) GDP and > 0.6 (\u2030) (2022 values) &#8211; in line with European average<\/p>\n    <p>\u2639\ufe0f < 0.6 (\u2030) of the city (region, state) GDP (2021 values) - less than European average<\/p>\n<\/div>\n\n<br \/><br \/>\n\n<hr>\n\n<h2><em>In case you do not already have the per inhabitant values, fill in these fields to calculate it.<\/em><br \/>\nNel caso in cui non disponi gi\u00e0 dei valori per abitante, compila questi campi per calcolarlo.<\/h2>\n\n<div>\n    <label for=\"inputC\"><em>Insert here Library expenditure<\/em><br \/>\n    Inserisci la spesa totale in valore assoluto per la gestione della biblioteca<\/label><br \/>\n    <input type=\"number\" id=\"inputC\" style=\"border-radius: 10px; padding: 5px; width: 300px;\">\n    <br \/><br \/>\n\n    <label for=\"inputD\"><em>Insert here the number of inhabitants<\/em><br \/>\n    Inserisci il numero di abitanti<\/label><br \/>\n    <input type=\"number\" id=\"inputD\" style=\"border-radius: 10px; padding: 5px; width: 300px;\">\n    <br \/><br \/>\n\n    <button onclick=\"calculatePerInhabitant()\" style=\"border-radius: 10px; padding: 5px;\"><em>Calculate the per inhabitant value<\/em> | Calculate il valore per abitante<\/button>\n    <p id=\"resultPerInhabitantC\"><\/p>\n<\/div>\n\n<p><br \/><br \/><\/p>\n<div>\n    <label for=\"inputE\"><em>Insert here GDP<\/em><br \/>Inserisci il PIL<\/label>\n    <input type=\"number\" id=\"inputE\" style=\"border-radius: 10px; padding: 5px; width: 300px;\">\n    <br \/><br \/>\n\n    <label for=\"inputF\"><em>Insert here the number of inhabitants<\/em><br \/>\n     Inserisci il numero di abitanti<\/label>\n    <input type=\"number\" id=\"inputF\" style=\"border-radius: 10px; padding: 5px; width: 300px;\"><br><br>\n\n    <button onclick=\"calculatePerInhabitantGov()\" style=\"border-radius: 10px; padding: 5px;\"><em>Calculate the per inhabitant value<\/em> | Calculate il valore per abitante<\/button>\n\n    <p id=\"resultPerInhabitantE\"><\/p>\n<\/div>\n\n<script>\n    function formatNumber(num) {\n        return num.toFixed(2).replace('.', ',').replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \".\");\n    }\n\n    function calculateY() {\n        const A = parseFloat(document.getElementById(\"inputA\").value);\n        const B = parseFloat(document.getElementById(\"inputB\").value);\n        if (!isNaN(A) && !isNaN(B) && B !== 0) {\n            const Y = (A \/ B) * 1000;\n            document.getElementById(\"resultY\").innerText = `Library expenditure is ${formatNumber(Y)} \u2030 of GDP | La spesa per la gestione della biblioteca \u00e8 il ${formatNumber(Y)} \u2030 del PIL`;\n        } else {\n            document.getElementById(\"resultY\").innerText = \"<em>Please enter valid values<\/em> | Inserisci valori validi\";\n        }\n    }\n\n    function calculatePerInhabitant() {\n        const C = parseFloat(document.getElementById(\"inputC\").value);\n        const D = parseFloat(document.getElementById(\"inputD\").value);\n        if (!isNaN(C) && !isNaN(D) && D !== 0) {\n            const perInhabitant = C \/ D;\n            document.getElementById(\"resultPerInhabitantC\").innerText = `These is the \"Library expenditure \/ per inhabitant\" | Questo \u00e8 il valore della spesa per la gestione della biblioteca divisa per numero di abitanti\": ${formatNumber(perInhabitant)} \u20ac`;\n        } else {\n            document.getElementById(\"resultPerInhabitantC\").innerText = \"<em>Please enter valid values<\/em> | Inserisci valori validi.\";\n        }\n    }\n\n    function calculatePerInhabitantGov() {\n        const E = parseFloat(document.getElementById(\"inputE\").value);\n        const F = parseFloat(document.getElementById(\"inputF\").value);\n        if (!isNaN(E) && !isNaN(F) && F !== 0) {\n            const perInhabitant = E \/ F;\n            document.getElementById(\"resultPerInhabitantE\").innerText = `These is the \"City (or region, or State) GDP \/ per inhabitant\" | Questo \u00e8 il valore del \"PIL comunale (o regionale o nazionale) diviso per numero di abitanti\": ${formatNumber(perInhabitant)} \u20ac`;\n        } else {\n            document.getElementById(\"resultPerInhabitantE\").innerText = \"<em>Please enter valid values<\/em> | Inserisci valori validi.\";\n        }\n    }\n<\/script>","protected":false},"excerpt":{"rendered":"<p>Year Library Expenditure (incl personnel) \/ per inhabitant Inserisci l&#8217;importo totale della spesa annuale per la gestione della biblioteca (comprensiva delle spese per il personale) divisa per il numero di abitanti Insert here your City (or region, or State) GDP \/ per inhabitant (if needed, look at the Web) Inserisci l&#8217;importo del PIL comunale (o [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_eb_attr":"","_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-1274","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Calculator Library Expediture GDP - retedellereti<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/retedellereti.org\/en\/calculator-library-expediture-gdp\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Calculator Library Expediture GDP - retedellereti\" \/>\n<meta property=\"og:description\" content=\"Year Library Expenditure (incl personnel) \/ per inhabitant Inserisci l&#8217;importo totale della spesa annuale per la gestione della biblioteca (comprensiva delle spese per il personale) divisa per il numero di abitanti Insert here your City (or region, or State) GDP \/ per inhabitant (if needed, look at the Web) Inserisci l&#8217;importo del PIL comunale (o [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/retedellereti.org\/en\/calculator-library-expediture-gdp\/\" \/>\n<meta property=\"og:site_name\" content=\"retedellereti\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/retedellereti\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-14T06:05:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/retedellereti.org\/wp-content\/uploads\/2024\/06\/LOGO-RDR-NEW-02.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"835\" \/>\n\t<meta property=\"og:image:height\" content=\"834\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/retedellereti.org\\\/calculator-library-expediture-gdp\\\/\",\"url\":\"https:\\\/\\\/retedellereti.org\\\/calculator-library-expediture-gdp\\\/\",\"name\":\"Calculator Library Expediture GDP - retedellereti\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/retedellereti.org\\\/#website\"},\"datePublished\":\"2024-09-09T06:39:18+00:00\",\"dateModified\":\"2024-10-14T06:05:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/retedellereti.org\\\/calculator-library-expediture-gdp\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/retedellereti.org\\\/calculator-library-expediture-gdp\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/retedellereti.org\\\/calculator-library-expediture-gdp\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/retedellereti.org\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Calculator Library Expediture GDP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/retedellereti.org\\\/#website\",\"url\":\"https:\\\/\\\/retedellereti.org\\\/\",\"name\":\"retedellereti\",\"description\":\"In ogni biblioteca, il meglio delle biblioteche italiane\",\"publisher\":{\"@id\":\"https:\\\/\\\/retedellereti.org\\\/#organization\"},\"alternateName\":\"Rete delle Reti\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/retedellereti.org\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/retedellereti.org\\\/#organization\",\"name\":\"retedellereti\",\"url\":\"https:\\\/\\\/retedellereti.org\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/retedellereti.org\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/retedellereti.org\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/rdr-logo-2026.webp\",\"contentUrl\":\"https:\\\/\\\/retedellereti.org\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/rdr-logo-2026.webp\",\"width\":900,\"height\":388,\"caption\":\"retedellereti\"},\"image\":{\"@id\":\"https:\\\/\\\/retedellereti.org\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/retedellereti\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Calculator Library Expediture GDP - retedellereti","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/retedellereti.org\/en\/calculator-library-expediture-gdp\/","og_locale":"en_GB","og_type":"article","og_title":"Calculator Library Expediture GDP - retedellereti","og_description":"Year Library Expenditure (incl personnel) \/ per inhabitant Inserisci l&#8217;importo totale della spesa annuale per la gestione della biblioteca (comprensiva delle spese per il personale) divisa per il numero di abitanti Insert here your City (or region, or State) GDP \/ per inhabitant (if needed, look at the Web) Inserisci l&#8217;importo del PIL comunale (o [&hellip;]","og_url":"https:\/\/retedellereti.org\/en\/calculator-library-expediture-gdp\/","og_site_name":"retedellereti","article_publisher":"https:\/\/www.facebook.com\/retedellereti","article_modified_time":"2024-10-14T06:05:10+00:00","og_image":[{"width":835,"height":834,"url":"https:\/\/retedellereti.org\/wp-content\/uploads\/2024\/06\/LOGO-RDR-NEW-02.webp","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/retedellereti.org\/calculator-library-expediture-gdp\/","url":"https:\/\/retedellereti.org\/calculator-library-expediture-gdp\/","name":"Calculator Library Expediture GDP - retedellereti","isPartOf":{"@id":"https:\/\/retedellereti.org\/#website"},"datePublished":"2024-09-09T06:39:18+00:00","dateModified":"2024-10-14T06:05:10+00:00","breadcrumb":{"@id":"https:\/\/retedellereti.org\/calculator-library-expediture-gdp\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/retedellereti.org\/calculator-library-expediture-gdp\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/retedellereti.org\/calculator-library-expediture-gdp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/retedellereti.org\/"},{"@type":"ListItem","position":2,"name":"Calculator Library Expediture GDP"}]},{"@type":"WebSite","@id":"https:\/\/retedellereti.org\/#website","url":"https:\/\/retedellereti.org\/","name":"retedellereti","description":"In ogni biblioteca, il meglio delle biblioteche italiane","publisher":{"@id":"https:\/\/retedellereti.org\/#organization"},"alternateName":"Rete delle Reti","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/retedellereti.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/retedellereti.org\/#organization","name":"retedellereti","url":"https:\/\/retedellereti.org\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/retedellereti.org\/#\/schema\/logo\/image\/","url":"https:\/\/retedellereti.org\/wp-content\/uploads\/2026\/07\/rdr-logo-2026.webp","contentUrl":"https:\/\/retedellereti.org\/wp-content\/uploads\/2026\/07\/rdr-logo-2026.webp","width":900,"height":388,"caption":"retedellereti"},"image":{"@id":"https:\/\/retedellereti.org\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/retedellereti"]}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false},"uagb_author_info":{"display_name":"annalisa.castelli7@gmail.com","author_link":"https:\/\/retedellereti.org\/en\/participant\/annalisa-castelli7gmail-com\/"},"uagb_comment_info":0,"uagb_excerpt":"Year Library Expenditure (incl personnel) \/ per inhabitant Inserisci l&#8217;importo totale della spesa annuale per la gestione della biblioteca (comprensiva delle spese per il personale) divisa per il numero di abitanti Insert here your City (or region, or State) GDP \/ per inhabitant (if needed, look at the Web) Inserisci l&#8217;importo del PIL comunale (o&hellip;","_links":{"self":[{"href":"https:\/\/retedellereti.org\/en\/wp-json\/wp\/v2\/pages\/1274","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/retedellereti.org\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/retedellereti.org\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/retedellereti.org\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/retedellereti.org\/en\/wp-json\/wp\/v2\/comments?post=1274"}],"version-history":[{"count":0,"href":"https:\/\/retedellereti.org\/en\/wp-json\/wp\/v2\/pages\/1274\/revisions"}],"wp:attachment":[{"href":"https:\/\/retedellereti.org\/en\/wp-json\/wp\/v2\/media?parent=1274"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}