-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Milestone
Description
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 manuallyname- 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/animalcategory- a list of categories, ideally the pClock could group common speciesevent start- when a single phenological event startsevent end- when a single phenological event endsdescription- text description of the eventcolor- 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?
Reactions are currently unavailable