diff --git a/_includes/generate_html_for_sites.html b/_includes/generate_html_for_sites.html
new file mode 100644
index 0000000000000000000000000000000000000000..c1d9d2d7294b8be06e83dc33ec06a69bbfa0808c
--- /dev/null
+++ b/_includes/generate_html_for_sites.html
@@ -0,0 +1,156 @@
+<!-- 
+################################################################################
+# Original Author: A.J. Rubio-Montero (http://orcid.org/0000-0001-6497-753X),  #
+#          CIEMAT - Sci-Track Group (http://rdgroups.ciemat.es/web/sci-track), #
+#          for the EOSC-Synergy project (EU H2020 RI Grant No 857647).         #
+# License (SPDX): BSD-3-Clause (https://opensource.org/licenses/BSD-3-Clause)  #
+# Copyright (c): 2020-today, The LAGO Collaboration (http://lagoproject.net)   #
+################################################################################
+-->
+<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+<script>
+function itemnize_json( json, context, link ) { 
+  var html ='';
+  if ( (link == false) || (typeof(json) === 'boolean') )  return json;
+  if ( typeof(json) === 'string' ) {
+    var element = json.split(':');
+    var innid = element[0];
+    var vocab = "@vocab";
+    if (element.length == 2) {
+      if ( (element[0] !== "http") && (element[0] !== "https") ) {
+        innid = element[1];
+        vocab = element[0];
+      } else return '<a href="'+ json +'">'+ json +'</a>';
+    } else return json;
+    var contexturl = context[vocab];
+    if ( vocab == "lago" ) { 
+        contexturl = 'https://lagoproject.github.io/DMP/schema/lagoSchema/';
+        innid = json;
+    };  
+    if ( contexturl[contexturl.length-1] !== '#' )  contexturl = contexturl + '#';
+    if ( vocab == "sdo" ) contexturl = context[vocab];
+    html = '<a href="'+ contexturl + innid +'">'+ json +'</a>';
+  } else {
+    if ( !(Array.isArray(json)) ) {
+      var json_aux = [];
+      json_aux.push(json);
+      json = json_aux;
+    };
+    for (var j=0; j<json.length; j++) {
+      var inner_json = json[j];
+      if ( !(typeof(json[j]) === 'string') ) {
+      	if ("@id" in json[j]) {
+          inner_json = json[j]["@id"];
+        } else {
+          inner_json = JSON.stringify(json[j]);
+	  link = false;
+        };
+      };
+      html = html + '<br />' + itemnize_json(inner_json, context, link);
+    };
+  };
+  return html;
+};
+function gmap_static(lat, long, type) {
+    return '<div style="width: 100%"><iframe class="iframe" src="https://maps.google.com/?ll='+lat+','+long+'&amp;z=13&amp;t='+type+'amp;iwloc=B&amp;output=embed" height="200" allowfullscreen></iframe></div>';
+};
+$().ready(function(){
+    $.getJSON( "{{ include.folder }}", function( data ) { 
+        var graphelements = data["@graph"];
+        for (var i=0; i<graphelements.length; i++) {
+            var element = graphelements[i];
+            var id = element["@id"];
+            var indexhtml = '<li><a href="#'+id+'"><strong>'+id+'</strong> ['+element["name"]+'].'+'</a></li>';
+            var headerhtml = '<h5 id="'+id+'"><a href="#'+id+'" class="anchor-heading" aria-labelledby="'+id+'"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a><strong>'+id+'</strong></h5>';
+            headerhtml = headerhtml+'<p>'+'Site located in '+element["name"];
+            if (["qualifiedAttribution"]["name"] !== "") {
+                headerhtml = headerhtml+' and managed by '+element["qualifiedAttribution"]["name"];
+            };
+            headerhtml = headerhtml+'.'+'</p>';
+            if ("comment" in element) {
+                headerhtml = headerhtml+'<p>'+ element["comment"][0]["@value"]+'</p>';
+            };
+            headerhtml = headerhtml+gmap_static(element["geometry"]["geo:latitude"],element["geometry"]["geo:longitude"],"k");
+            if (element["lago:belongsLago"]) {
+                $('#iproperties').append(indexhtml);
+                $('#properties').append(headerhtml);              
+            } else {
+                $('#iclasses').append(indexhtml);
+                $('#classes').append(headerhtml);
+            };   
+            var keysUP = Object.keys(element);
+            keysUP.splice(keysUP.indexOf("@id"),1);
+            keysUP.splice(keysUP.indexOf("@type"),1);
+            keysUP.splice(keysUP.indexOf("comment"),1);
+            keysUP.splice(keysUP.indexOf("name"),1);
+            keysUP.splice(keysUP.indexOf("lago:belongsLago"),1);
+            keysUP.splice(keysUP.indexOf("qualifiedAttribution"),1);
+            table = '<ul> The default propierties defined for <strong>'+ id + '</strong> site are:' ;
+            for (var up=0; up<keysUP.length; up++) {
+                var keys = Object.keys(element[keysUP[up]]);
+                table = table + '<li>'+ itemnize_json(keysUP[up], data["@context"], true )+' :';
+                table = table + '<table class="grid" style="width: 100%"> 
+                    <thead>
+                        <tr class="header">';  
+                for (var k=0; k<keys.length; k++) {
+                    table = table + ' <th>'+ itemnize_json([keys[k]], data["@context"], true ) + '</th>';
+                };
+                table = table +' </tr>
+                    </thead>
+                    <tbody>
+                        <tr>';
+                for (var k=0; k<keys.length; k++) {
+                    table = table +' <td>'+ itemnize_json(element[keysUP[up]][keys[k]] , data["@context"], true ) +'</td>';
+                };
+                table = table +' </tr>
+                    </tbody>
+                </table>';
+                table = table + '</li>';
+            };
+            table = table + '</ul>';
+            if (element["lago:belongsLago"]) {
+                $('#properties').append(table);				  
+            } else {
+                $('#classes').append(table);
+            };
+        };		
+    });
+});
+</script>
+
+{% if include.vocabulary == "true" %}
+
+- [**Classes**](#classes)
+  <ul id="iclasses"></ul>
+		
+- [**Properties**](#properties)
+  <ul id="iproperties"></ul>
+
+### Classes
+
+<div id="classes"></div>
+
+### Properties
+
+<div id="properties"></div>
+
+{% else %}
+
+- [**Official LAGO sites**](#lago)
+  <ul id="iproperties"></ul>
+- [**non-LAGO sites**](#non-lago)
+  <ul id="iclasses"></ul>
+
+
+### Official LAGO sites
+
+<div id="properties"></div>
+
+
+### non-LAGO sites
+
+<div id="classes"></div>
+
+
+{% endif %}
+
diff --git a/_includes/generate_html_for_vocab.html b/_includes/generate_html_for_vocab.html
index 31e73e8e36c1228cb2959c9bbba7d121941f1566..9caa0b3aa897f593d8f213e22cad49109dfe53e7 100644
--- a/_includes/generate_html_for_vocab.html
+++ b/_includes/generate_html_for_vocab.html
@@ -20,13 +20,15 @@ function itemnize_json( json, context, link ) {
       if ( (element[0] !== "http") && (element[0] !== "https") ) {
         innid = element[1];
         vocab = element[0];
-      } else return json;
-    };
+      } else return '<a href="'+ json +'">'+ json +'</a>';
+    } else return json;
     var contexturl = context[vocab];
-    if ( vocab == "lago" ) contexturl = '';  
+    if ( vocab == "lago" ) { 
+        contexturl = 'https://lagoproject.github.io/DMP/schema/lagoSchema/';
+        innid = json;
+    };    
     if ( contexturl[contexturl.length-1] !== '#' )  contexturl = contexturl + '#';
     if ( vocab == "sdo" ) contexturl = context[vocab];
-    else innid = json;
     html = '<a href="'+ contexturl + innid +'">'+ json +'</a>';
   } else {
     if ( !(Array.isArray(json)) ) {
@@ -69,7 +71,7 @@ $().ready(function(){
 			    <tr class="header">
 				<th>@type</th>';	  
 	  for (var k=0; k<keys.length; k++) {
-	    table = table + ' <th>'+ keys[k] + '</th>';
+	    table = table + ' <th>'+  itemnize_json(keys[k] , data["@context"], true ) + '</th>';
 	  };
 	  table = table +'	</tr>
 			</thead>
@@ -83,9 +85,9 @@ $().ready(function(){
 			</tbody>
 		    </table>';
           if ("dcat:domain" in graphelements[i]) {
-                  $('#iproperties').append(indexhtml);
+            $('#iproperties').append(indexhtml);
             $('#properties').append(headerhtml);
-                  $('#properties').append(table);				  
+            $('#properties').append(table);				  
           } else {
             $('#iclasses').append(indexhtml);
             $('#classes').append(headerhtml);
@@ -111,7 +113,7 @@ $().ready(function(){
 
 ### Properties
 
-<div  id="properties"></div>
+<div id="properties"></div>
 
 {% else %}
 
diff --git a/_includes/head_custom.html b/_includes/head_custom.html
new file mode 100644
index 0000000000000000000000000000000000000000..a19750d28deb880125c16c0c283959aae635e6d0
--- /dev/null
+++ b/_includes/head_custom.html
@@ -0,0 +1,5 @@
+{% if page.jsonldinhead %}
+    <script type="application/ld+json">
+    {% include_relative {{page.jsonldinhead}} %}
+    </script>
+{% endif %}
\ No newline at end of file
diff --git a/defs/sitesLago.jsonld b/defs/sitesLago.jsonld
index 67960593013755405c9257d55697ef45f207ddc5..651ce6e371522ab280c346145db22ff22802db68 100644
--- a/defs/sitesLago.jsonld
+++ b/defs/sitesLago.jsonld
@@ -1,173 +1,2253 @@
 {
-"@context" : {
-    "lago" : "https://raw.githubusercontent.com/lagoproject/DMP/1.1/schema/lagoSchema.jsonld",
-    "@base" : "https://raw.githubusercontent.com/lagoproject/DMP/1.1/defs/sitesLago.jsonld#",
-    "@vocab" : "https://raw.githubusercontent.com/SEMICeu/DCAT-AP/2.0.0/releases/2.0.0/dcat-ap_2.0.0.jsonld",
-    "_dcatap" : "https://raw.githubusercontent.com/SEMICeu/DCAT-AP/2.0.0/releases/2.0.0/dcat-ap_2.0.0.jsonld",
-    "_dcatap_landing_page" : "http://data.europa.eu/r5r/"
+  "@context": {
+    "dct": "http://purl.org/dc/terms/",
+    "geo": "http://www.w3.org/2003/01/geo/wgs84_pos#",
+    "lago": "https://raw.githubusercontent.com/lagoproject/DMP/1.1/schema/lagoSchema.jsonld",
+    "@base": "https://raw.githubusercontent.com/lagoproject/DMP/1.1/defs/sitesLago.jsonld#",
+    "@vocab": "https://raw.githubusercontent.com/SEMICeu/DCAT-AP/2.0.0/releases/2.0.0/dcat-ap_2.0.0.jsonld",
+    "_dcatap": "https://raw.githubusercontent.com/SEMICeu/DCAT-AP/2.0.0/releases/2.0.0/dcat-ap_2.0.0.jsonld",
+    "_dcatap_landing_page": "http://data.europa.eu/r5r/"
   },
-"@graph" : [
-  {  
-    "@id" : "hess", 
-    "@type" : "lago:DetectorSite",
-    "name" : "hess",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmosphere" }, "lago:modatm" : { "@default" : "E10" } },
-    "lago:obsLev" : "1800e2",
-    "lago:magnet" : { "lago:bx" : "12.5", "lago:bz" : "-25.9" }, 
-    "lago:arrang" : "-14" 
-  },
-  {  
-    "@id" : "sac", 
-    "@type" : "lago:DetectorSite",
-    "name" : "sac",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmosphere" }, "lago:modatm" : { "@default" : "E32" , "comment" : "Other possible values (E30=wi,E31=sp,E32=su,E33=au)" } },
-    "lago:obsLev" : "3700e2",
-    "lago:magnet" : { "lago:bx" : "20.94", "lago:bz" : "-8.91" },
-    "lago:arrang" : "0" 
-  },
-  {  
-    "@id" : "etn", 
-    "@type" : "lago:DetectorSite",
-    "name" : "etn",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmosphere" }, "lago:modatm" : { "@default" : "E2" } },
-    "lago:obsLev" : "3000e2",
-    "lago:magnet" : { "lago:bx" : "27.7623", "lago:bz" : "36.0667" },
-    "lago:arrang" : "0"
-  },
-  {  
-    "@id" : "ber", 
-    "@type" : "lago:DetectorSite",
-    "name" : "ber",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmosphere" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "3450e2",
-    "lago:magnet" : { "lago:bx" : "26.9814", "lago:bz" : "17.1054" },
-    "lago:arrang" : "0"
-  },
-  {  
-    "@id" : "lim", 
-    "@type" : "lago:DetectorSite",
-    "name" : "lim",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmosphere" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "168e2",
-    "lago:magnet" : { "lago:bx" : "25.28", "lago:bz" : "-0.046" },
-    "lago:arrang" : "0"
-  },
-  {  
-    "@id" : "glr", 
-    "@type" : "lago:DetectorSite",
-    "name" : "glr",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmosphere" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "4276e2",
-    "lago:magnet" : { "lago:bx" : "27.0750", "lago:bz" : "11.7728" },
-    "lago:arrang" : "0"
-  },
-  {
-    "@id" : "mch", 
-    "@type" : "lago:DetectorSite",
-    "name" : "mch",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmosphere" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "2650e2",
-    "lago:magnet" : { "lago:bx" : "27.1762", "lago:bz" : "14.6184" },
-    "lago:arrang" : "0"
-  },
-  {  
-    "@id" : "bga", 
-    "@type" : "lago:DetectorSite",
-    "name" : "bga",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "950e2",
-    "lago:magnet" : { "lago:bx" : "27.0263", "lago:bz" : "17.1760" },
-    "lago:arrang" : "0"
-  },
-  {  
-    "@id" : "mge", 
-    "@type" : "lago:DetectorSite",
-    "name" : "mge",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "19" } },
-    "lago:obsLev" : "1400e2",
-    "lago:magnet" : { "lago:bx" : "20.4367", "lago:bz" : "-11.8217" },
-    "lago:arrang" : "0"
-  },
-  {  
-    "@id" : "brc", 
-    "@type" : "lago:DetectorSite",
-    "name" : "brc",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E3" } },
-    "lago:obsLev" : "800e2",
-    "lago:magnet" : { "lago:bx" : "19.234", "lago:bz" : "-17.068" },
-    "lago:arrang" : "0"
-  },
-  {  
-    "@id" : "and", 
-    "@type" : "lago:DetectorSite",
-    "name" : "and",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "19" } },
-    "lago:obsLev" : "4200e2",
-    "lago:magnet" : { "lago:bx" : "19.6922", "lago:bz" : "-14.2420" },
-    "lago:arrang" : "0"
-  },
-  {  
-    "@id" : "mpc", 
-    "@type" : "lago:DetectorSite",
-    "name" : "mpc",
-    "_comment" : "Marcapomacocha",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "4500e2",
-    "lago:magnet" : { "lago:bx" : "24.9599", "lago:bz" : "0.4124" }
-  },
-  {  
-    "@id" : "cha", 
-    "@type" : "lago:DetectorSite",
-    "name" : "cha",
-    "_comment" : "Chacaltaya",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E2" } },
-    "lago:obsLev" : "5230e2",
-    "lago:magnet" : { "lago:bx" : "23.0386", "lago:bz" : "-3.9734" }
-  },
-  {  
-    "@id" : "cid", 
-    "@type" : "lago:DetectorSite",
-    "name" : "cid",
-    "_comment" : "CIDA",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "3600e2",
-    "lago:magnet" : { "lago:bx" : "26.8464", "lago:bz" : "18.1604" }
-  },
-  {  
-    "@id" : "mor", 
-    "@type" : "lago:DetectorSite",
-    "name" : "mor",
-    "_comment" : "Mordor",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "4400e2",
-    "lago:magnet" : { "lago:bx" : "26.8340", "lago:bz" : "18.2004" }
-  },
-  {  
-    "@id" : "lsc", 
-    "@type" : "lago:DetectorSite",
-    "name" : "lsc",
-    "_comment" : "La Serena",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E2" } },
-    "lago:obsLev" : "28e2",
-    "lago:magnet" : { "lago:bx" : "20.29", "lago:bz" : "-11.74" }
-  },
-  {  
-    "@id" : "mbo", 
-    "@type" : "lago:DetectorSite",
-    "name" : "mbo",
-    "_comment" : "Base Marambio",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E5" } },
-    "lago:obsLev" : "196e2",
-    "lago:magnet" : { "lago:bx" : "19.6571", "lago:bz" : "-30.5809" }
-  },
-  {  
-    "@id" : "ccs", 
-    "@type" : "lago:DetectorSite",
-    "name" : "ccs",
-    "_comment" : "Caracas, data provided by Jose Antonio López, UCV, 10.486004N -66.894461W",
-    "lago:atmcrd" : { "@type": { "@default" : "lago:Atmod" }, "lago:modatm" : { "@default" : "E1" } },
-    "lago:obsLev" : "900e2",
-    "lago:magnet" : { "lago:bx" : "26.7364", "lago:bz" : "18.6777" }
-  }
- ]
-}
+  "@graph": [
+    {
+      "@id": "and",
+      "@type": "lago:DetectorSite",
+      "name": "Andes, Argentina",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "and#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-30.19",
+        "geo:longitude": "-69.82",
+        "geo:altitude": "4200"
+      },
+      "lago:obsLev": {
+        "@default": "420000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.658",
+          "lago:bz": "-11.951",
+          "lago:bi": "23.011"
+        }
+      }
+    },
+    {
+      "@id": "asu",
+      "@type": "lago:DetectorSite",
+      "name": "Asuncion-Paraguay, Paraguay",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UNA"
+      },
+      "geometry": {
+        "@id": "asu#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-25.19",
+        "geo:longitude": "-57.3",
+        "geo:altitude": "136"
+      },
+      "lago:obsLev": {
+        "@default": "13600"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "18.233",
+          "lago:bz": "-11.73",
+          "lago:bi": "22.22"
+        }
+      }
+    },
+    {
+      "@id": "ata",
+      "@type": "lago:DetectorSite",
+      "name": "Atacama, Chile",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UVAL"
+      },
+      "geometry": {
+        "@id": "ata#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-23.005778",
+        "geo:longitude": "-67.759167",
+        "geo:altitude": "5105"
+      },
+      "lago:obsLev": {
+        "@default": "510500"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-10-28",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "20.638",
+          "lago:bz": "-8.598",
+          "lago:bi": "22.5"
+        }
+      }
+    },
+    {
+      "@id": "ber",
+      "@type": "lago:DetectorSite",
+      "name": "Berlin, Colombia",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UIS"
+      },
+      "geometry": {
+        "@id": "ber#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "7.19",
+        "geo:longitude": "-72.88",
+        "geo:altitude": "3450"
+      },
+      "lago:obsLev": {
+        "@default": "345000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "26.751",
+          "lago:bz": "16.029",
+          "lago:bi": "31.467"
+        }
+      }
+    },
+    {
+      "@id": "bga",
+      "@type": "lago:DetectorSite",
+      "name": "Bucaramanga, Colombia",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UIS"
+      },
+      "geometry": {
+        "@id": "bga#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "7.14",
+        "geo:longitude": "-73.12",
+        "geo:altitude": "956"
+      },
+      "lago:obsLev": {
+        "@default": "95000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "26.793",
+          "lago:bz": "16.055",
+          "lago:bi": "31.506"
+        }
+      }
+    },
+    {
+      "@id": "brc",
+      "@type": "lago:DetectorSite",
+      "name": "Bariloche, Argentina",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "CNEA"
+      },
+      "geometry": {
+        "@id": "brc#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-41.15",
+        "geo:longitude": "-71.3",
+        "geo:altitude": "850"
+      },
+      "lago:obsLev": {
+        "@default": "86500"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E3"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "18.952",
+          "lago:bz": "-17.05",
+          "lago:bi": "25.58"
+        }
+      }
+    },
+    {
+      "@id": "bue",
+      "@type": "lago:DetectorSite",
+      "name": "Buenos Aires, Argentina",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "IAFE"
+      },
+      "geometry": {
+        "@id": "bue#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-34.54",
+        "geo:longitude": "-58.44",
+        "geo:altitude": "10"
+      },
+      "lago:obsLev": {
+        "@default": "1000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "17.09",
+          "lago:bz": "-14.673",
+          "lago:bi": "22.705"
+        }
+      }
+    },
+    {
+      "@id": "casp",
+      "@type": "lago:DetectorSite",
+      "name": "Casposo, Argentina",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "casp#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-31.22",
+        "geo:longitude": "-69.63",
+        "geo:altitude": "2600"
+      },
+      "lago:obsLev": {
+        "@default": "260000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.473",
+          "lago:bz": "-12.436",
+          "lago:bi": "23.109"
+        }
+      }
+    },
+    {
+      "@id": "cha",
+      "@type": "lago:DetectorSite",
+      "name": "Chacaltaya, Bolivia",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UMSA"
+      },
+      "geometry": {
+        "@id": "cha#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-16.35",
+        "geo:longitude": "-68.13",
+        "geo:altitude": "5230"
+      },
+      "lago:obsLev": {
+        "@default": "523000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "22.38",
+          "lago:bz": "-4.62",
+          "lago:bi": "23.112"
+        }
+      }
+    },
+    {
+      "@id": "chi",
+      "@type": "lago:DetectorSite",
+      "name": "Chimborazo, Ecuador",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "EPOCH"
+      },
+      "geometry": {
+        "@id": "chi#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-1.47",
+        "geo:longitude": "-78.82",
+        "geo:altitude": "5000"
+      },
+      "lago:obsLev": {
+        "@default": "500000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-10-28",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "26.56",
+          "lago:bz": "8.758",
+          "lago:bi": "28.019"
+        }
+      }
+    },
+    {
+      "@id": "chia",
+      "@type": "lago:DetectorSite",
+      "name": "Chiapas, Mexico",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UNACH"
+      },
+      "geometry": {
+        "@id": "chia#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "16.75",
+        "geo:longitude": "-93.12",
+        "geo:altitude": "522"
+      },
+      "lago:obsLev": {
+        "@default": "52200"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "27.405",
+          "lago:bz": "27.024",
+          "lago:bi": "38.497"
+        }
+      }
+    },
+    {
+      "@id": "cop",
+      "@type": "lago:DetectorSite",
+      "name": "Copahue, Argentina",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "cop#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-37.85",
+        "geo:longitude": "-71.17",
+        "geo:altitude": "2000"
+      },
+      "lago:obsLev": {
+        "@default": "200000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.04",
+          "lago:bz": "-15.493",
+          "lago:bi": "24.586"
+        }
+      }
+    },
+    {
+      "@id": "cpv",
+      "@type": "lago:DetectorSite",
+      "name": "Campina Grande, Brazil",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UFCG"
+      },
+      "geometry": {
+        "@id": "cpv#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-7.23",
+        "geo:longitude": "-35.88",
+        "geo:altitude": "550"
+      },
+      "lago:obsLev": {
+        "@default": "55000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "21.174",
+          "lago:bz": "-12.612",
+          "lago:bi": "26.025"
+        }
+      }
+    },
+    {
+      "@id": "cuz",
+      "@type": "lago:DetectorSite",
+      "name": "Cusco, Peru",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "CONIDA"
+      },
+      "geometry": {
+        "@id": "cuz#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-13.52",
+        "geo:longitude": "-71.96",
+        "geo:altitude": "3400"
+      },
+      "lago:obsLev": {
+        "@default": "340000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "23.676",
+          "lago:bz": "-2.02",
+          "lago:bi": "23.905"
+        }
+      }
+    },
+    {
+      "@id": "gua",
+      "@type": "lago:DetectorSite",
+      "name": "Guatemala, Guatemala",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UVG"
+      },
+      "geometry": {
+        "@id": "gua#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "14.63",
+        "geo:longitude": "-90.59",
+        "geo:altitude": "1490"
+      },
+      "lago:obsLev": {
+        "@default": "149000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "27.532",
+          "lago:bz": "24.932",
+          "lago:bi": "37.145"
+        }
+      }
+    },
+    {
+      "@id": "ima",
+      "@type": "lago:DetectorSite",
+      "name": "Imata, Peru",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "CONIDA"
+      },
+      "geometry": {
+        "@id": "ima#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-15.841",
+        "geo:longitude": "-71.091",
+        "geo:altitude": "4600"
+      },
+      "lago:obsLev": {
+        "@default": "460000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-23",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "22.969",
+          "lago:bz": "-3.79",
+          "lago:bi": "23.422"
+        }
+      }
+    },
+    {
+      "@id": "jsc",
+      "@type": "lago:DetectorSite",
+      "name": "J\u00fclich, Germany",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "jsc#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "50.92",
+        "geo:longitude": "6.54",
+        "geo:altitude": "100"
+      },
+      "lago:obsLev": {
+        "@default": "10000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.676",
+          "lago:bz": "44.928",
+          "lago:bi": "49.055"
+        }
+      }
+    },
+    {
+      "@id": "kna",
+      "@type": "lago:DetectorSite",
+      "name": "Vina Del Mar, Chile",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UVM"
+      },
+      "geometry": {
+        "@id": "kna#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-33.07",
+        "geo:longitude": "-71.55",
+        "geo:altitude": "347"
+      },
+      "lago:obsLev": {
+        "@default": "34700"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.56",
+          "lago:bz": "-13.333",
+          "lago:bi": "23.679"
+        }
+      }
+    },
+    {
+      "@id": "lim",
+      "@type": "lago:DetectorSite",
+      "name": "Lima, Peru",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "CONIDA"
+      },
+      "geometry": {
+        "@id": "lim#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-12.1",
+        "geo:longitude": "-77.02",
+        "geo:altitude": "150"
+      },
+      "lago:obsLev": {
+        "@default": "16800"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "24.723",
+          "lago:bz": "-0.476",
+          "lago:bi": "24.751"
+        }
+      }
+    },
+    {
+      "@id": "lpb",
+      "@type": "lago:DetectorSite",
+      "name": "La Paz, Bolivia",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UMSA"
+      },
+      "geometry": {
+        "@id": "lpb#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-16.49",
+        "geo:longitude": "-68.15",
+        "geo:altitude": "3630"
+      },
+      "lago:obsLev": {
+        "@default": "363000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "22.362",
+          "lago:bz": "-4.708",
+          "lago:bi": "23.109"
+        }
+      }
+    },
+    {
+      "@id": "lsc",
+      "@type": "lago:DetectorSite",
+      "name": "La Serena, Chile",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "USERENA"
+      },
+      "geometry": {
+        "@id": "lsc#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-29.9",
+        "geo:longitude": "-71.25",
+        "geo:altitude": "28"
+      },
+      "lago:obsLev": {
+        "@default": "2800"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.975",
+          "lago:bz": "-11.826",
+          "lago:bi": "23.213"
+        }
+      }
+    },
+    {
+      "@id": "mad",
+      "@type": "lago:DetectorSite",
+      "name": "MAD, Spain",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "mad#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "40.5",
+        "geo:longitude": "-3.67",
+        "geo:altitude": "700"
+      },
+      "lago:obsLev": {
+        "@default": "70000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "25.647",
+          "lago:bz": "36.933",
+          "lago:bi": "44.965"
+        }
+      }
+    },
+    {
+      "@id": "mapi",
+      "@type": "lago:DetectorSite",
+      "name": "Machu Picchu, Antarctica",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "CONIDA"
+      },
+      "geometry": {
+        "@id": "mapi#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-62.09",
+        "geo:longitude": "-58.47",
+        "geo:altitude": "10"
+      },
+      "lago:obsLev": {
+        "@default": "1000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E5"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.309",
+          "lago:bz": "-28.693",
+          "lago:bi": "34.763"
+        }
+      }
+    },
+    {
+      "@id": "mge",
+      "@type": "lago:DetectorSite",
+      "name": "Malargue, Argentina",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "CNEA"
+      },
+      "geometry": {
+        "@id": "mge#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-35.45",
+        "geo:longitude": "-69.57",
+        "geo:altitude": "1450"
+      },
+      "lago:obsLev": {
+        "@default": "145000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "18.987",
+          "lago:bz": "-14.326",
+          "lago:bi": "23.79"
+        }
+      }
+    },
+    {
+      "@id": "pam",
+      "@type": "lago:DetectorSite",
+      "name": "Pamplona, Colombia",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UNIPAM"
+      },
+      "geometry": {
+        "@id": "pam#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "7.22",
+        "geo:longitude": "-72.39",
+        "geo:altitude": "2342"
+      },
+      "lago:obsLev": {
+        "@default": "234200"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "26.743",
+          "lago:bz": "15.955",
+          "lago:bi": "31.443"
+        }
+      }
+    },
+    {
+      "@id": "ppet",
+      "@type": "lago:DetectorSite",
+      "name": "Peteroa, Argentina",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "ppet#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-35.25",
+        "geo:longitude": "-70.57",
+        "geo:altitude": "3500"
+      },
+      "lago:obsLev": {
+        "@default": "350000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.139",
+          "lago:bz": "-14.27",
+          "lago:bi": "23.883"
+        }
+      }
+    },
+    {
+      "@id": "psnc",
+      "@type": "lago:DetectorSite",
+      "name": "Poznam, Poland",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "psnc#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "52.41",
+        "geo:longitude": "16.92",
+        "geo:altitude": "100"
+      },
+      "lago:obsLev": {
+        "@default": "10000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "18.598",
+          "lago:bz": "46.45",
+          "lago:bi": "50.066"
+        }
+      }
+    },
+    {
+      "@id": "quie",
+      "@type": "lago:DetectorSite",
+      "name": "Quito-EPN, Ecuador",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "EPN"
+      },
+      "geometry": {
+        "@id": "quie#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-0.2",
+        "geo:longitude": "-78.5",
+        "geo:altitude": "2850"
+      },
+      "lago:obsLev": {
+        "@default": "285000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "26.717",
+          "lago:bz": "9.971",
+          "lago:bi": "28.579"
+        }
+      }
+    },
+    {
+      "@id": "sac",
+      "@type": "lago:DetectorSite",
+      "name": "San Antonio de los Cobres, Argentina",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "CNEA"
+      },
+      "geometry": {
+        "@id": "sac#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-24.71",
+        "geo:longitude": "-66.38",
+        "geo:altitude": "4820"
+      },
+      "lago:obsLev": {
+        "@default": "482000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "20.06",
+          "lago:bz": "-9.616",
+          "lago:bi": "22.398"
+        }
+      }
+    },
+    {
+      "@id": "sao",
+      "@type": "lago:DetectorSite",
+      "name": "Sao Paulo-UFABC, Brazil",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UFABC"
+      },
+      "geometry": {
+        "@id": "sao#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-23.38",
+        "geo:longitude": "-46.31",
+        "geo:altitude": "760"
+      },
+      "lago:obsLev": {
+        "@default": "76000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "16.484",
+          "lago:bz": "-14.48",
+          "lago:bi": "22.905"
+        }
+      }
+    },
+    {
+      "@id": "sawb",
+      "@type": "lago:DetectorSite",
+      "name": "Marambio, Antarctica",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UBA"
+      },
+      "geometry": {
+        "@id": "sawb#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-64.24",
+        "geo:longitude": "-56.62",
+        "geo:altitude": "200"
+      },
+      "lago:obsLev": {
+        "@default": "20000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E5"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.366",
+          "lago:bz": "-30.222",
+          "lago:bi": "36.077"
+        }
+      }
+    },
+    {
+      "@id": "serb",
+      "@type": "lago:DetectorSite",
+      "name": "Riobamba-EPOSCH, Ecuador",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "EPOCH"
+      },
+      "geometry": {
+        "@id": "serb#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-1.81",
+        "geo:longitude": "-78.74",
+        "geo:altitude": "2750"
+      },
+      "lago:obsLev": {
+        "@default": "275000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "26.577",
+          "lago:bz": "8.499",
+          "lago:bi": "27.952"
+        }
+      }
+    },
+    {
+      "@id": "sgd",
+      "@type": "lago:DetectorSite",
+      "name": "Sierra Grande, Argentina",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "sgd#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-41.668",
+        "geo:longitude": "-65.365",
+        "geo:altitude": "250"
+      },
+      "lago:obsLev": {
+        "@default": "25000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-06-02",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "18.108",
+          "lago:bz": "-16.917",
+          "lago:bi": "24.785"
+        }
+      }
+    },
+    {
+      "@id": "sng",
+      "@type": "lago:DetectorSite",
+      "name": "Sierra Negra, Mexico",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "BUAP"
+      },
+      "geometry": {
+        "@id": "sng#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "18.16",
+        "geo:longitude": "-97.95",
+        "geo:altitude": "4550"
+      },
+      "lago:obsLev": {
+        "@default": "455000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "27.358",
+          "lago:bz": "28.038",
+          "lago:bi": "39.217"
+        }
+      }
+    },
+    {
+      "@id": "sudb",
+      "@type": "lago:DetectorSite",
+      "name": "Chreighton, Canada",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "sudb#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "46.46",
+        "geo:longitude": "-81.17",
+        "geo:altitude": "2100"
+      },
+      "lago:obsLev": {
+        "@default": "210000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "17.037",
+          "lago:bz": "51.991",
+          "lago:bi": "54.79"
+        }
+      }
+    },
+    {
+      "@id": "tac",
+      "@type": "lago:DetectorSite",
+      "name": "Tacana, Guatemala",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UVG"
+      },
+      "geometry": {
+        "@id": "tac#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "15.13",
+        "geo:longitude": "-92.11",
+        "geo:altitude": "4060"
+      },
+      "lago:obsLev": {
+        "@default": "406000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "27.53",
+          "lago:bz": "25.353",
+          "lago:bi": "37.432"
+        }
+      }
+    },
+    {
+      "@id": "truj",
+      "@type": "lago:DetectorSite",
+      "name": "Trujillo, Spain",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "truj#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "39.47",
+        "geo:longitude": "-5.88",
+        "geo:altitude": "560"
+      },
+      "lago:obsLev": {
+        "@default": "56000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "26.223",
+          "lago:bz": "35.844",
+          "lago:bi": "44.413"
+        }
+      }
+    },
+    {
+      "@id": "tuc",
+      "@type": "lago:DetectorSite",
+      "name": "Tucuman, Argentina",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UNT"
+      },
+      "geometry": {
+        "@id": "tuc#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-26.5",
+        "geo:longitude": "-65.11",
+        "geo:altitude": "430"
+      },
+      "lago:obsLev": {
+        "@default": "43000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.487",
+          "lago:bz": "-10.647",
+          "lago:bi": "22.365"
+        }
+      }
+    },
+    {
+      "@id": "vcp",
+      "@type": "lago:DetectorSite",
+      "name": "Campinas, Brazil",
+      "lago:belongsLago": true,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": "UNICAMP"
+      },
+      "geometry": {
+        "@id": "vcp#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-22.9",
+        "geo:longitude": "-47.06",
+        "geo:altitude": "640"
+      },
+      "lago:obsLev": {
+        "@default": "64000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E1"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-04-08",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "16.751",
+          "lago:bz": "-14.104",
+          "lago:bi": "22.873"
+        }
+      }
+    },
+    {
+      "@id": "viri",
+      "@type": "lago:DetectorSite",
+      "name": "Villa Rica, Chile",
+      "lago:belongsLago": false,
+      "qualifiedAttribution": {
+        "@type": "lago:Organisation",
+        "name": ""
+      },
+      "geometry": {
+        "@id": "viri#geometry",
+        "@type": "geo:Point",
+        "geo:latitude": "-39.42",
+        "geo:longitude": "-71.94",
+        "geo:altitude": "2850"
+      },
+      "lago:obsLev": {
+        "@default": "285000"
+      },
+      "lago:atmcrd": {
+        "@type": {
+          "@default": "lago:Atmod"
+        },
+        "lago:modatm": {
+          "@default": "E2"
+        }
+      },
+      "lago:magnet": {
+        "@default": {
+          "lago:bDate": "2021-05-18",
+          "conformsTo": {
+            "@id": "https://doi.org/10.1186/s40623-020-01288-x",
+            "@type": [
+              "dct:Standard",
+              "DataSet"
+            ],
+            "title": "IGRF",
+            "description": "International Geomagnetic Reference Field",
+            "landingpage": "https://www.ngdc.noaa.gov/IAGA/vmod/igrf.html",
+            "version": "13",
+            "dataservice": {
+              "title": "Geomagnetic Model Web Service",
+              "endpointURL": "http://geomag.bgs.ac.uk/web_service/GMModels/"
+            },
+            "temporalCoverage": {
+              "startDate": "2020-01-01",
+              "endDate": "2024-12-31"
+            },
+            "temporalResolution": "P1D"
+          },
+          "lago:bx": "19.061",
+          "lago:bz": "-16.289",
+          "lago:bi": "25.148"
+        }
+      }
+    }
+  ]
+}
\ No newline at end of file
diff --git a/defs/sitesLago.md b/defs/sitesLago.md
index 7ca152a8f0aa08ec6660e4aa9cbc4bc76f20ba0f..634dd8a7a7e62882695ff8444692e6fa26426ca1 100644
--- a/defs/sitesLago.md
+++ b/defs/sitesLago.md
@@ -70,7 +70,7 @@ As a real example, the metadata´s catalog of a simulation should include the si
 
 ## Defined LAGO sites
 
-{% include generate_html_for_vocab.html folder="/DMP/defs/sitesLago.jsonld" %}
+{% include generate_html_for_sites.html folder="/DMP/defs/sitesLago.jsonld" %}
 
 
 ## Plain JSON-LD file
diff --git a/rights/AUP.md b/rights/AUP.md
index 0980fa17e5f18eda5f2292610d187eae2af62d44..a623714f32ec4801a8c27751c29dfa0f1a79273a 100644
--- a/rights/AUP.md
+++ b/rights/AUP.md
@@ -1,7 +1,7 @@
 ---
 layout: default
 parent: Rights
-nav_order: 4
+nav_order: 2
 ---
 
 
diff --git a/rights/lagoCommonRights.jsonld b/rights/lagoCommonRights.jsonld
index 6673a5dfdcf526de9215d0f6527fa54f2d869c22..995ee176813b1de74542ffa206e811b757af46a0 100644
--- a/rights/lagoCommonRights.jsonld
+++ b/rights/lagoCommonRights.jsonld
@@ -1,3 +1,31 @@
 {
-  "TBD" : "TBD."
+  "@context" : {
+    "@base" : "https://raw.githubusercontent.com/lagoproject/DMP/1.1", 
+    "lago" : "https://raw.githubusercontent.com/lagoproject/DMP/1.1/schema/lagoSchema.jsonld#",
+    "dct" : "http://purl.org/dc/terms/",
+    "@vocab" : "https://raw.githubusercontent.com/SEMICeu/DCAT-AP/2.0.0/releases/2.0.0/dcat-ap_2.0.0.jsonld#",
+    "_dcatap" : "https://raw.githubusercontent.com/SEMICeu/DCAT-AP/2.0.0/releases/2.0.0/dcat-ap_2.0.0.jsonld",
+    "_dcatap_landing_page" : "http://data.europa.eu/r5r/"
+  },
+"@id" : "/rights/lagoCommonRights.jsonld",
+"title": "Data and Metadata Release, Rights and Disclaimer",
+"creator" : [{ "@id" : "https://orcid.org/0000-0002-4559-8785" , "@type" : "lago:Person", "name" : "Hernán Asorey" },
+             { "@id" : "https://orcid.org/0000-0003-4115-3129" , "@type" : "lago:Person", "name" : "Iván Sidelnik" }],
+"releaseDate": "2022-05-10",
+"conformsTo": { "@id" : "https://github.github.com/gfm/" , "@type" : "Document", "title": "GitHub Flavored Markdown Spec", "preferredLabel" :"GFM"},
+"relatedResource" : "https://lagoproject.net/FALTA",
+"publisher" :  { "@id" : "/defs/lagoCollaboration.jsonld" , "@type" : "lago:Organization", "name" : "LAGO Collaboration" },
+"license" : "https://creativecommons.org/licenses/by-nc-sa/4.0/",
+"accessRigths" : "@id",
+"descprition" : "By using the data provided by the Latin American Giant Observatory (LAGO), you are accepting the following conditions of release and acknowledging the following disclaimers issued by LAGO.",
+"@type": "Document",
+"landingPage": "https://lagoproject.github.io/DMP/rights/lagoCommonRights/",
+"version":"1.1",
+"distribution": { "@id": "/rights/lagoCommonRights.md", 
+                  "@type": "Distribution",
+                  "accessURL": "/rights/lagoCommonRights/",
+                  "downloadURL": "/rights/lagoCommonRights.md", 
+                  "format": "http://publications.europa.eu/resource/authority/file-type/TXT",  
+                  "mediaType": "https://www.iana.org/assignments/media-types/text/markdown"
+                }
 }
diff --git a/rights/lagoCommonRights.md b/rights/lagoCommonRights.md
index efd73b1fe59631d2246a93564b6211f5d56ce249..ba3f9e4aeb161700913d3b50df7586c8e1dee01d 100644
--- a/rights/lagoCommonRights.md
+++ b/rights/lagoCommonRights.md
@@ -2,15 +2,21 @@
 layout: default
 parent: Rights
 nav_order: 1
+jsonldinhead: lagoCommonRights.jsonld 
 ---
 
-# LAGO Common Rights 
-{: .no_toc }
+# Data and Metadata Releases, Rights and Disclaimer 
+
+|Tag Release | Issued | Updated | Dates |Contributors|
+|------------|-----   |-------- |------|------------|
+| 1.1 | 2022-05-11 | {{ site.time }} | 2020-06-01 - today | [Hernán Asorey](https://orcid.org/0000-0002-4559-8785) |
+|  |  |  |  | [Iván Sidelnik](https://orcid.org/0000-0003-4115-3129) |
+|  |  |  |  | for the [LAGO Collaboration](/DMP/defs/lagoCollaboration/) |
 
-|Version| Updated | Date |Contributors|
-|-------|---------|------|------------|
-| 1.1 develop | {{ site.time }} | 2020-06-01 - today | LAGO Collaboration |
+# Data and Metadata Releases, Rights and Disclaimer 
+{: .no_toc }
 
+By using the data provided by the Latin American Giant Observatory (LAGO), you are accepting the following conditions of release and acknowledging the following disclaimers issued by LAGO.
 
 ## Table of contents
 {: .no_toc .text-delta }
@@ -18,11 +24,73 @@ nav_order: 1
 - TOC
 {:toc}
 
-## What is defined?
+## A. Definitions
+
+### a. The Latin American Giant Observatory
+The Latin American Giant Observatory hereinafter referred to as &#8220;LAGO&#8221; or &#8220;the LAGO Observatory&#8221;, is an astroparticle observatory on a global scale, working as an integrated detection network, hereinafter referred to as &#8220;the LAGO detection network&#8221; or simply &#8220;the LAGO network&#8221;, of single or small arrays of detectors, hereinafter referred to as &#8220;the LAGO detectors&#8221;, that are deployed at different geographical locations, hereinafter referred as &#8220;the LAGO sites&#8221;.   
+
+### b. The LAGO Collaboration
+
+The LAGO Collaboration is a non-centralized, distributed and highly collaborative grid of scientific institutions. The main goal of the LAGO Collaboration is the design, installation, commissioning, operation, coordination, maintenance, and, eventually, the decommissioning of the LAGO Observatory.
+
+### c. The LAGO Data Management Plan (DMP) and the FAIR paradigm
+To guarantee the long-term sustainability of LAGO, it is mandatory to accomplish the FAIR paradigm, i.e., to assure the Findability, Accessibility, Interoperability, and Reusability of its digital assets. The LAGO Data Management Plan, hereinafter referred to as &#8220;LAGO DMP&#8221; or simply &#8220;DMP&#8221;,  is a living document that will be amended, improved and detailed along the project evolution timeline, and it is used to establish the format of the LAGO data and metadata sets, and to describe how they are generated, stored, accessed, and used internally or externally used. The LAGO DMP is publicly available at https://lagoproject.github.io/DMP/
+
+### d. The LAGO Datasets
+During its normal operation and the different maintenance modes of the LAGO network, LAGO produces datasets containing different types of data, hereinafter collectively referred to as &#8220;the LAGO data&#8221; and individually as &#8220;a LAGO dataset&#8221;. All the LAGO datasets follow standardized schemes based on linked data as described in our DMP. 
+Any LAGO dataset could be considered within one of these categories:
+
+#### i. Measured data (Ln)
+Corresponds to any type of data that was measured in a LAGO site, including measurements of any type of radiation, atmospheric conditions, geomagnetic, solar irradiation, telemetry, and any other type of measurement produced by the LAGO detector and its peripherals. The LAGO measured data includes also any data product derived by any means of the previously described data. All the LAGO measured datasets are hierarchically tagged with the &#8220;Ln&#8221; label, being n a sequential number, starting by 0, that indicates the level of data processing: L0 corresponds to the raw data, L1 is the first level of analysed data, etc.
+
+#### ii. Simulated data (Sn)
+A LAGO simulated dataset contains data produced by any means, that were produced by the LAGO Observatory or its members and fellows using any of the LAGO simulation tools, that are intended to emulate any physical processes. All the LAGO measured datasets are hierarchically tagged with the &#8220;Sn&#8221; label, being n a sequential number.
+
+#### iii. Metadata (MLn/MSn)
+Every LAGO metadata dataset is associated with the corresponding Ln or Sn dataset following the JSON-LD 1.1(W3C) language syntax, and a reprofiled LAGO vocabulary based on the DCAT2-AP2 standard vocabulary, as described in the corresponding section of the LAGO DMP.
+
+## B. General and specific conditions of data release and acknowledgement
+
+### a. General conditions
+The LAGO data, metadata and schema definitions are available by permission of the LAGO Collaboration as the entity in charge of the Latin American Giant Observatory. The use of any LAGO data in publications or any other scientific activity, either digital or hardcopy, must be acknowledged to The Latin American Giant Observatory as well as their authors and referenced through the corresponding PiDs.
+The use of any type of LAGO data and metadata is allowed for non-commercial purposes only, and only so long as attribution is given to the creator. Any other usage of the LAGO data without permission is strictly forbidden. The policies of the LAGO data release are defined by the LAGO Collaboration and could change at any moment. 
 
-[lagoCommonRights.jsonld](./sitesLago.jsonld) unifies the usual rights of LAGO data and metadata, following the official LAGO schema vocabulary. 
+### b. Specific conditions
 
-## How should an item be referenced?
+#### i. Measured data (Ln)
+At the moment of the writing of this document, all the measured LAGO data is non-public. Specific conditions related to the release of the LAGO measured dataset will be informed by the LAGO Collaboration in the future.
+
+#### ii. Simulated data (Sn)
+LAGO simulated data (Sn) is licenced under the Creative Commons Attribution  Non-Commercial Share Alike 4.0 International (CC BY-NC-SA 4.0) and is publicly available after an embargo period of one (1) year since the LAGO data catalogue publication at the LAGO public data repository. Any usage of the LAGO measured data should follow the general data acknowledgement and cite these references:
+
+- Christian Sarmiento-Cano, Mauricio Su&aacute;rez-Dur&aacute;n, Rolando Calder&oacute;n-Ardila, Adriana V&aacute;squez-Ram&iacute;rez, Andrei Jaimes-Motta, Luis A. N&uacute;&#241;ez, Sergio Dasso, Iv&aacute;n Sidelnik, Hern&aacute;n Asorey, &#8220;The ARTI Framework: Cosmic Rays Atmospheric Background Simulations&#8221;, DOI:10.48550/arXiv.2010.14591
+- A. J. Rubio-Montero, R. Pag&aacute;n-Mu&#241;oz, R. Mayo-Garc&iacute;a, A. Pardo-Diaz, I. Sidelnik and H. Asorey, &quot;A Novel Cloud-Based Framework For Standardized Simulations In The Latin American Giant Observatory (LAGO)&quot; 2021 Winter Simulation Conference (WSC), 2021, pp. 1-12, DOI:10.1109/WSC52266.2021.9715360
+
+#### iii. Medatata data (MLn/MSn)
+Measured (Ln) and Simulated (Sn) data have their own metadata, correspondingly, MLn or SLn. Every metadata dataset inherits the specific conditions, acknowledgements, and references from the corresponding LAGO Measured or Simulated dataset.
+
+## C. Disclaimer of Liability
+Neither LAGO nor contributors of data to LAGO shall be held liable for any improper or incorrect use or application of the data provided, and assume no responsibility for the use or application of the data or information derived from interpretation of the data. In no event shall the LAGO or its collaborators be liable for any direct, indirect, or incidental damage arising from the use or application of these data. This disclaimer of liability applies to any damages or injury, including but not limited to those caused by any failure of performance, error, omission, defect, delay in operation or transmission, computer virus, alteration, use, application, analysis, or interpretation of data.
+
+## D. Disclaimer of Accuracy of Data
+No warranty, expressed or implied, is made regarding the accuracy, adequacy, completeness, reliability, or usefulness of any data provided. These data are provided &quot;as is.&quot; All warranties of any kind, expressed or implied, including but not limited to fitness for a particular use, freedom from computer viruses, and non-infringement of proprietary rights, are disclaimed.
+
+## TECHNICAL APPENDIX: how to linking this document
+
+As stated above, this document unifies the rights, disclaimers and acknolegmentes for this LAGO data and metadata release. 
+
+To accomplish the linked-data requirements, this document has associated metatada in:
+- a JSON-LD file [lagoCommonRights.jsonld](./lagoCommonRights.jsonld) 
+- a block ```<script type="application/ld+json">```, which shows the later JSON-LD in the ```<head>``` section of this HTML page.   
+
+### How should this be embarransingly referenced?
+
+- ZENODO DOI
+- lagoproject page
+- github dynamic page...
+- CURL... agains the page.
+
+### How should this be referenced for linked-data?
 
 To preserve the provenance of the linked metadata through time, the GitHub raw link of a certain release of this document must be used:
 
@@ -44,7 +112,7 @@ As a real example, the metadata´s catalog of a simulation should include the re
 ...
           },
 "@id":"/sac_60_100.0_75600_QGSII_flat",
-"@type":"Catalog",
+"@type":"Catalogue",
 ...
 "license":"https://creativecommons.org/licenses/by-nc-sa/4.0/"
 "rights":"https://raw.githubusercontent.com/lagoproject/DMP/1.1/rights/lagoCommonRights.jsonld",
@@ -57,9 +125,11 @@ As a real example, the metadata´s catalog of a simulation should include the re
 ...
 ```
 
-## Plain JSON-LD file
+#### The plain JSON-LD file
 
 ```json
 {% include_relative lagoCommonRights.jsonld %}
 ```
 
+
+
diff --git a/schema/lagoSchema.jsonld b/schema/lagoSchema.jsonld
index 6a5f42012931bb2c646c3a6b8ef22b2bb0fb6d4c..d2aacd2c3d1e263a92b5df1c8cf692163b13c65d 100644
--- a/schema/lagoSchema.jsonld
+++ b/schema/lagoSchema.jsonld
@@ -26,11 +26,11 @@
    {
     "@id": "lago:Software",
     "@type": "sdo:SoftwareSourceCode",
-    "owl:equivalentClass" : "prov: SoftwareAgent",
+    "owl:equivalentClass" : "prov:SoftwareAgent",
     "dcat:subClassOf" : "Agent",
-    "_sdo:codeRepository" : { "@type" : "sdo:URL" },
-    "_sdo:runtimePlatform" : {"@type" : "lago:runtimePlatform" },
-    "seeAlso" : [ "prov: SoftwareAgent", "sdo:SoftwareSourceCode", "Agent"],
+    "sdo:codeRepository" : { "@type" : "sdo:URL" },
+    "sdo:runtimePlatform" : {"@type" : "lago:runtimePlatform" },
+    "seeAlso" : [ "prov:SoftwareAgent", "sdo:SoftwareSourceCode", "Agent"],
     "comment" : [ { "@language" : "en", "@value" : "It identifies any concrete release of software used for simulation, measure, cleaning or analysis procedures. It always refers to a COMMIT in the source code, identified with a HASH at the CVS (but, it will be needed, a compressed file, using other type of hasisng, such as MD5SUM, to guarantee its immutability). Therefore, in GitHub, the @id is the link for the COMMIT (https://api.github.com/org/repo/git/commits/COMMIT_HASH and the sdo:codeRepository will be these COMMIT but browsable for humans ( https://github.com/org/repo/tree/COMMIT_HASH). It is mandatory assign an Agent:name. However, it is optional to use sdo:runtimePlatform (redefined as lago:runtimePlatform) to point to other lago:Software on which it was executed, for example to some deployment with Docker in GitHub." },  
                   { "@language" : "es", "@value" : "Identifica una versión concreta de un software usado para simular, medir, limpiar o analizar los datos de LAGO. Se refiere siempre a un COMMIT concreto en el código fuente, identificado con un código HASH en un CVS (o bien, si no fuera posible, a un fichero comprimido, univocamente identificado con algún tipo de HASH, como MD5SUM). Por tanto, en GitHub, el @id es el link del COMMIT https://api.github.com/org/repo/git/commits/COMMIT_HASH y la propiedad sdo:codeRepository sería ese COMMIT navegable para humanos  https://github.com/org/repo/tree/COMMIT_HASH. Es obligatorio asignar un Agent:name. Pero es opcional el uso de sdo:runtimePlatform (redefinida como lago:runtimePlatform) para señalar otro lago:Software sobre el que se ejecuta, por ejemplo una integración Docker en GitHub)." } ]
     },
@@ -81,45 +81,50 @@
     "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
     "dcat:domain": { "@id" : "lago:ArtiParams" },
     "dcat:range": { "@id" : "xsd:float" },
+    "@default" : "0.0",
     "dcat:label": "rigidity", 
-    "comment" : [ { "@language" : "en", "@value" : "Rigidity cutoff; 0 = disabled; value in GV = enabled" },  
-                  { "@language" : "es", "@value" : "Corte de la rigidez; 0 = deshabilitado; valor en GV = habilitado" } ]
+    "comment" : [ { "@language" : "en", "@value" : "Rigidity cutoff; 0.0 = disabled; value in GV = enabled" },  
+                  { "@language" : "es", "@value" : "Corte de la rigidez; 0.0 = deshabilitado; valor en GV = habilitado" } ]
    },
    {
     "@id": "lago:tMin",
     "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
     "dcat:domain": { "@id" : "lago:ArtiParams" },
     "dcat:range": { "@id" : "xsd:float" },
+    "@default" : "0",
     "dcat:label": "tMin", 
-    "comment" : [ { "@language" : "en", "@value" : "Low edge of zenith angle" },  
-                  { "@language" : "es", "@value" : "Límite inferior del ángulo cenital" } ]
+    "comment" : [ { "@language" : "en", "@value" : "Low edge of zenith angle, in degrees" },  
+                  { "@language" : "es", "@value" : "Límite inferior del ángulo cenital, en grados" } ]
    },
    {
     "@id": "lago:tMax",
     "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
     "dcat:domain": { "@id" : "lago:ArtiParams" },
     "dcat:range": { "@id" : "xsd:float" },
+    "@default" : "90",
     "dcat:label": "tMax", 
-    "comment" : [ { "@language" : "en", "@value" : "High edge of zenith angle" },  
-                  { "@language" : "es", "@value" : "Límite superior del ángulo cenital" } ]
+    "comment" : [ { "@language" : "en", "@value" : "High edge of zenith angle, in degrees" },  
+                  { "@language" : "es", "@value" : "Límite superior del ángulo cenital, en grados" } ]
    },
    {
     "@id": "lago:lLimit",
     "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
     "dcat:domain": { "@id" : "lago:ArtiParams" },
     "dcat:range": { "@id" : "xsd:float" },
+    "@default" : "5",
     "dcat:label": "lLimit", 
-    "comment" : [ { "@language" : "en", "@value" : "Lower limit of the primary particle energy" },  
-                  { "@language" : "es", "@value" : "Límite inferior de la energía de las partículas primarias" } ]
+    "comment" : [ { "@language" : "en", "@value" : "Lower limit of the primary particle energy in GeV" },  
+                  { "@language" : "es", "@value" : "Límite inferior de la energía de las partículas primarias en GeV" } ]
    },
    {
     "@id": "lago:uLimit",
     "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
     "dcat:domain": { "@id" : "lago:ArtiParams" },
     "dcat:range": { "@id" : "xsd:float" },
+    "@default" : "1e6",
     "dcat:label": "uLimit",      
-    "comment" : [ { "@language" : "en", "@value" : "Upper limit of the primary particle energy" },  
-                  { "@language" : "es", "@value" : "Límite superior de la energía de las partículas primarias" } ]
+    "comment" : [ { "@language" : "en", "@value" : "Upper limit of the primary particle energy in GeV" },  
+                  { "@language" : "es", "@value" : "Límite superior de la energía de las partículas primarias en GeV" } ]
    },
    {
     "@id": "lago:flatArray",
@@ -165,10 +170,10 @@
     "@id": "lago:highEnergyCutsSecondaries",
     "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
     "dcat:domain": { "@id" : "lago:ArtiParams" },
-    "dcat:range": { "@id" : "xsd:boolean" },
+    "dcat:range": { "@id" : "xsd:float" },
     "dcat:label": "highEnergyCutsSecondaries",
-    "@default" : false,
-    "comment" : [ { "@language" : "en", "@value" : "Enable high energy cuts for secondaries" },  
+    "@default" : "0.0",
+    "comment" : [ { "@language" : "en", "@value" : "Enable high energy cuts for secondaries; 0.0 = disabled, value in GeV = enabled" },  
                   { "@language" : "es", "@value" : "" } ]
    },  
 {"_comment" : "------ Defining installed detectors and simulated detectors, this implies estaiblishing equivalencies among measures and software parameters --------"},
@@ -198,7 +203,17 @@
      "comment" : [ { "@language" : "en", "@value" : "" },  
                    { "@language" : "es", "@value" : "" } ]
   },
-{"_comment" : "------ common properties to describe characteristics of a DetectorSite (Agent) which are included also in a lago:CorsikaInput --------"},
+{"_comment" : "------ common properties to describe characteristics of a DetectorSite (Agent), some of which are included also in a lago:CorsikaInput --------"},
+   {
+    "@id": "lago:belongsLago",
+    "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
+    "dcat:domain": { "@id" : "lago:DetectorSite" },
+    "dcat:range": { "@id" : "xsd:boolean" },
+    "@default" : false,
+    "dcat:label": "belongsLago",
+    "comment" : [ { "@language" : "en", "@value" : "" },
+                  { "@language" : "es", "@value" : "" } ]
+   },
    {
      "@id": "lago:obsLev",
      "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
@@ -228,6 +243,15 @@
     "comment" : [ { "@language" : "en", "@value" : " Components of the Earth's mag. field (MAGNET), Horizontal (bx) and Vertical (bx)" },  
                   { "@language" : "es", "@value" : "" } ]
    },
+    { 
+     "@id": "lago:bDate",
+     "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
+     "dcat:domain": { "@id" : "lago:MagnetComponents" },
+     "dcat:range": { "@id" : "xsd:date" },
+     "dcat:label": "bDate", 
+     "comment" : [ { "@language" : "en", "@value" : "The date for which the magnetic field values are calculated, in the form yyyy-mm-dd. (xsd:date)" },  
+                   { "@language" : "es", "@value" : "" } ]
+    },
     {
       "@id": "lago:bx",
       "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
@@ -246,6 +270,15 @@
       "comment" : [ { "@language" : "en", "@value" : "Vertical comp. of the Earth's mag. field (MAGNET) [downwards,muT], see values at https://www.ngdc.noaa.gov/geomag/calculators/magcalc.shtml#igrfwmm" },  
                     { "@language" : "es", "@value" : "Componente vertical del campo magnético de la Tierra (MAGNET) [downwards,muT], ver valores en https://www.ngdc.noaa.gov/geomag/calculators/magcalc.shtml#igrfwmm" } ]
     },
+    { 
+      "@id": "lago:bi",
+      "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
+      "dcat:domain": { "@id" : "lago:MagnetComponents" },
+      "dcat:range": { "@id": "xsd:decimal"},
+      "dcat:label": "bx",
+      "comment" : [ { "@language" : "en", "@value" : "" },  
+                    { "@language" : "es", "@value" : "" } ]
+    },
     {
       "@id": "lago:atmcrd",
       "@type" : [ "rdf:Property", "owl:ObjectProperty" ],
@@ -289,6 +322,40 @@
       "lago:corsikaParam" : "ARRANG",
       "comment" : [ { "@language" : "en", "@value" : "" },  
                     { "@language" : "es", "@value" : "" } ]
+    },
+   {
+    "@id" : "geometry",
+    "@type" : "geometry",
+    "dcat:domain" : [ { "@id" : "Location" },
+                      { "@id" : "lago:DetectorSite" } ],
+    "dcat:range" : { "@id": "geo:Point" },    
+    "dcat:label" : "point",
+    "seeAlso" : [ "https://www.w3.org/ns/locn#locn:geometry", 
+                  "https://www.w3.org/TR/vocab-dcat-2/#Property:location_geometry" ],
+    "comment" : [ { "@language" : "en", "@value" : ""},  
+                  { "@language" : "es", "@value" : "" } ]
+   },
+   {"_comment" : "Reiterative including geo:Point and its propierties. It is as is in W3C WGS84 vocab: http://www.w3.org/2003/01/geo/wgs84_pos#). Added for guiding/clarifying."},
+   {
+    "@id": "geo:latitude",
+    "@type":"http://www.w3.org/2001/XMLSchema#float",
+    "dcat:domain": { "@id": "geo:Point" },
+    "dcat:label" : "lat",
+    "owl:equivalentProperty" : { "@id": "sdo:GeoCoordinates#latitude" }
+   },
+   {
+    "@id": "geo:longitude",
+     "@type":"http://www.w3.org/2001/XMLSchema#float",
+     "dcat:label" : "long",
+     "dcat:domain": { "@id": "geo:Point" },
+     "owl:equivalentProperty" : { "@id": "sdo:GeoCoordinates#longitude" }
+    },
+   {
+    "@id": "geo:altitude",
+     "@type":"http://www.w3.org/2001/XMLSchema#float",
+     "dcat:label" : "alt",
+     "dcat:domain": { "@id": "geo:Point" },
+     "owl:equivalentProperty" : { "@id": "sdo:GeoCoordinates#altitude" }
     }
   ],
 "@context" : {
@@ -303,6 +370,7 @@
     "dcat" : "http://www.w3.org/ns/dcat#",
     "prov" : "http://www.w3.org/ns/prov#",
     "foaf" : "http://xmlns.com/foaf/0.1/",
-    "sdo" : "http://schema.org/"
+    "sdo" : "http://schema.org/",
+    "geo": "http://www.w3.org/2003/01/geo/wgs84_pos#"
   }
 }