...
Info |
---|
Old index is ~0.39 times greater than new index in terms of number of documents |
Data before denormalisation:
Code Block |
---|
{
"_index": "plotdata_ecoplots-data-observations-ausplots2-aggregate-plant-20211026050100",
"_type": "_doc",
"_id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-obs-height-54494348-134833",
"_score": 1,
"_ignored": [
"foi_attributes.value.value.float",
"foi_attributes.value.value.integer",
"foi_attributes.value.value.date"
],
"_source": {
"id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-obs-height-54494348",
...
"foi_attributes": [
{
"id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-attr-transect-54494348",
"attribute": {
"label": "transect direction",
"value": "http://linked.data.gov.au/def/tern-cv/d82a71d7-677a-45fe-968f-6dad4b8e8488"
},
"value": {
"label": null,
"value": "S1-N1",
"type": "string"
},
"unit_of_measure": {
"label": null,
"value": null
}
},
{
"id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-attr-point_number-54494348",
"attribute": {
"label": "transect point",
"value": "http://linked.data.gov.au/def/tern-cv/08035bb8-d972-4110-b3e9-1939bc972ace"
},
"value": {
"label": null,
"value": "74",
"type": "string"
},
"unit_of_measure": {
"label": null,
"value": null
}
},
{
"id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-attr-species_name-54494348",
"attribute": {
"label": "scientific name",
"value": "http://linked.data.gov.au/def/tern-cv/082c84fe-d923-4162-9b73-294b7a8a2dda"
},
"value": {
"label": null,
"value": "Acacia sibirica",
"type": "string"
},
"unit_of_measure": {
"label": null,
"value": null
}
}
],
...
} |
Date after denormalisation:
Code Block |
---|
{
"_index": "plotdata_ecoplots-data_foi",
"_type": "_doc",
"_id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-obs-height-54494348-134833",
"_score": 1,
"_source": {
"id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-obs-height-54494348",
...
"foi_attr_tern:d82a71d7-677a-45fe-968f-6dad4b8e8488": {
"id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-attr-transect-54494348",
"value": {
"label": null,
"value": "S1-N1",
"type": "string"
},
"unit_of_measure": {
"label": null,
"value": null
}
},
"foi_attr_tern:08035bb8-d972-4110-b3e9-1939bc972ace": {
"id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-attr-point_number-54494348",
"value": {
"label": null,
"value": "74",
"type": "string"
},
"unit_of_measure": {
"label": null,
"value": null
}
},
"foi_attr_tern:082c84fe-d923-4162-9b73-294b7a8a2dda": {
"id": "http://linked.data.gov.au/dataset/ausplots/point_intercept-attr-species_name-54494348",
"value": {
"label": null,
"value": "Acacia sibirica",
"type": "string"
},
"unit_of_measure": {
"label": null,
"value": null
}
},
"foi_attributes": [
"http://linked.data.gov.au/def/tern-cv/d82a71d7-677a-45fe-968f-6dad4b8e8488",
"http://linked.data.gov.au/def/tern-cv/08035bb8-d972-4110-b3e9-1939bc972ace",
"http://linked.data.gov.au/def/tern-cv/082c84fe-d923-4162-9b73-294b7a8a2dda"
]
...
}
} |