Skip to content

GDocs data structure #13

@dhornbein

Description

@dhornbein

Current column headers for our spreadsheets need to be discussed, they are:

  • id - an id for each row, it doesn't make sense because people would have to input them manually
  • name - the scientific name of the plant or animal, the idea here is that this name will match across any pClock out there. It's the unique identifier of any entry.
  • common name - what the common person calls the plant/animal
  • category - a list of categories, ideally the pClock could group common species
  • event start - when a single phenological event starts
  • event end - when a single phenological event ends
  • description - text description of the event
  • color- the HEX color of the event

We should try and nail this all down for the MVP. Here's the data structure as it currently stands:

{
"categories": ["cat1", "cat2", "cat3"],
"category": "perennial",
"color": "ffff00",
"description": "",
"events": [
  {
    "start":"1/1/2014",
    "end":"1/1/2015",
  }
],
"id": "",
"name": "Achillea filipendulina ‘Parker’s Variety’"
}

The key thing (which isn't supported right now) is that each specie of animal/plant supports multiple events which should be rendered inline (perhaps, see: #12).

Potential additional column headers

mutualistic relationships - what plants work with this one
Reference - link to data about the plant/animal

How do you feel about this data structure, what makes sense, what doesn't, what should be added or removed or changed?

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions