Lithology
I have used the following collections as examples of how to map Age and Lithology information. I start with lithology mappings.
| collection_no |
lithadj |
minor_lithology |
lithification |
lithology1 |
fossilsfrom1 |
lithadj2 |
minor_lithology2 |
lithification2 |
lithology2 |
fossilsfrom2 |
| 234 |
NULL |
NULL |
lithified |
"limestone" |
Y |
glauconitic |
NULL |
lithified |
sandstone |
NULL |
| 3234 |
hummocky CS,burrows |
silty |
lithified |
sandstone |
NULL |
NULL |
NULL |
NULL |
NULL |
NULL |
| 28282 |
gray,green |
carbonaceous |
unlithified |
sandstone |
Y |
brown,gray,yellow |
carbonaceous |
unlithified |
claystone |
NULL |
| 134134 |
NULL |
NULL |
lithified |
not reported |
NULL |
NULL |
NULL |
NULL |
NULL |
NULL |
I convert these into the following example (abridged) collections json payloads. I added in some other key-pairs, just for realism/context. The only part that really matters for this issue is the "lithology" array.
Collection 234
{ "data": {
"name": "example collection 234",
"coordinates": {
"lat": "34",
"lng": "88"
},
"lithology": [
{
"major": "\"limestone\"",
"fossils": "true",
"lithification": "lithified"
},
{
"major": "sandstone",
"adjectives": ["glauconitic"],
"lithification": "lithified"
}
],
"formation": "Riley"
}
}
Collection 28282
{ "data": {
"name": "example collection 28282",
"coordinates": {
"lat": "-20",
"lng": "118"
},
"lithology": [
{
"major": "sandstone",
"minor": "carbonaceous",
"adjectives": ["gray","green"],
"fossils": "true",
"lithification": "unlithified"
},
{
"major": "claystone",
"minor": "carbonaceous",
"adjectives": ["brown","gray","green"],
"lithification": "unlithified"
}
],
"formation": "Some Formation"
}
}
Lithology
I have used the following collections as examples of how to map Age and Lithology information. I start with lithology mappings.
I convert these into the following example (abridged) collections json payloads. I added in some other key-pairs, just for realism/context. The only part that really matters for this issue is the "lithology" array.
Collection 234
{ "data": { "name": "example collection 234", "coordinates": { "lat": "34", "lng": "88" }, "lithology": [ { "major": "\"limestone\"", "fossils": "true", "lithification": "lithified" }, { "major": "sandstone", "adjectives": ["glauconitic"], "lithification": "lithified" } ], "formation": "Riley" } }Collection 28282
{ "data": { "name": "example collection 28282", "coordinates": { "lat": "-20", "lng": "118" }, "lithology": [ { "major": "sandstone", "minor": "carbonaceous", "adjectives": ["gray","green"], "fossils": "true", "lithification": "unlithified" }, { "major": "claystone", "minor": "carbonaceous", "adjectives": ["brown","gray","green"], "lithification": "unlithified" } ], "formation": "Some Formation" } }