User Activity

  • Posted a comment on discussion Field evaluations on Data-Bee

    Pin Test Table example: CREATE TABLE IF NOT EXISTS `Pin_test` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `CellsWithRemains` int(5) DEFAULT '0', `UnopenedSealedCell` int(5) DEFAULT '0', `colony_info_ID` int(11) NOT NULL, PRIMARY KEY (`ID`), KEY `colony_info_ID` (`colony_info_ID`), CONSTRAINT `ced_st_fk` FOREIGN KEY (`colony_info_ID`) REFERENCES `colonies` (`colony_info_ID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

  • Posted a comment on discussion Starting with Data-Bee on Data-Bee

    Set of Database Relationship Rules (DRR) and Database Operational Rules (DOR) considered in the architecture of the generic database. Name | Name DRR1 | One apiary can have an infinite number of colonies DRR2 | One colony can fit into an infinite number of hives' elements DRR3 | One colony can be moved between apiaries in different time periods DRR4 | One hive can be moved between colonies in different time periods DOR1 | Every activity (evaluation or management) in the apiary must be registered...

  • Modified a comment on discussion Field evaluations on Data-Bee

    This evaluation is related with colony level. The direct relationship with foreign key colony_info_ID gives information of where and when this evaluation have done. If you need create new evaluation at colony level, please see the generic code in files section for this level. Code example: CREATE TABLE IF NOT EXISTS `colonystate_queen` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `Eggs` tinyint(1) DEFAULT '0', `Larvae` tinyint(1) DEFAULT '0', `Pupae` tinyint(1) DEFAULT '0', `Queen` varchar(10), `LayingWorker`...

  • Modified a comment on discussion Field evaluations on Data-Bee

    This evaluation fields is related to colony level, so is directly link with the foreing key colony_info_ID. This store information like if a colony has Varroa, Deformed wing bee, etc. This variables ar declared as tinyint (or boolean). You can add more variables if you want, or create new evaluation field table related to colony level (see the code in files section) Code example: CREATE TABLE IF NOT EXISTS `deseases` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `Varroa` tinyint(1) DEFAULT '0', `Deformed_Wing_Bee`...

  • Posted a comment on discussion Field evaluations on Data-Bee

    The hive evaluation data is related to count, for example, items in esctructural elements. For example counter of bees, weight of honey, etc. This kind of tables are direct linked with Hive_info_ID foreing key, makig direct relationship with the chronological data associated to each evaluation. Code example: CREATE TABLE `hive_evaluation_data` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `ElementID` int(1) NOT NULL, `Hive_info_ID` int(11) NOT NULL, `Frame` int(3) DEFAULT '0', `BeesFront` int(3) DEFAULT...

  • Posted a comment on discussion Field evaluations on Data-Bee

    This evaluation fields is related to colony level, so is directly link with the foreing key colony_info_ID. This store information like if a colony has Varroa, Deformed wing bee, etc. This variables ar declared as tinyint (or boolean). You can add more variables if you want, or create new evaluation field table related to colony level (see the code in files section) CREATE TABLE IF NOT EXISTS `deseases` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `Varroa` tinyint(1) DEFAULT '0', `Deformed_Wing_Bee` tinyint(1)...

  • Posted a comment on discussion Field evaluations on Data-Bee

    This evaluation is related with colony level. The direct relationship with foreign key colony_info_ID gives information of where and when this evaluation have done. If you need create new evaluation at colony level, please see the generic code in files section for this level. -- CREATE TABLE IF NOT EXISTS `colonystate_queen` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `Eggs` tinyint(1) DEFAULT '0', `Larvae` tinyint(1) DEFAULT '0', `Pupae` tinyint(1) DEFAULT '0', `Queen` varchar(10), `LayingWorker` tinyint(1)...

  • Posted a comment on discussion General Discussion on Data-Bee

    Data-Bee is an Open Source database scheme for chronological data storing based on apiaries system abstraction. The Data-Bee philosophy and main goal are to share the model, opening the possibility of change it or improve it. This discussion section is the windows to share the improvements or utilities.

View All

Personal Data

Username:
fernandoipb
Joined:
2017-01-19 17:04:06
Location:
Spain / CET
Gender:
Male

Projects

This is a list of open source software projects that Fernando Pérez Rodríguez is associated with:

  • Project Logo ApkFor 1.0 ApkFor helps to transfer forest growth and yield models using Android Last Updated:
  • Project Logo CodelPlant Codelplant stat. multi-regression M-learning for leaves segmentation Last Updated:
  • Project Logo Data-Bee   Last Updated:
  • Project Logo ForestMTIS   Last Updated:
  • Stochastic Forest Simulator   Last Updated:

Personal Tools

MongoDB Logo MongoDB