Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

What is taxonomy ?

Taxonomy helps to clarify our thinking by classifying things neatly into categories and sub-categories based on their relationships. The primary goal of taxonomy is to recognize, characterise, classify, and name based on their properties.

What is term ?

Terms are items (entities or objects) with in the taxonomy, As below example shows education system taxonomy, where CBSC, Hindi, Grade1, English are terms belonging to different categories,

What is Association ?

In the taxonomy system terms belonging to different category relate to each other, that relation is called association, each category term might have multiple relations with terms belonging to different categories.

In the below example CBSC board have relate to Hindi medium, like Hindi medium might have grde 1 and grade 2 relation.

Example:- Education Taxonomy would look as below.

...

Problem Statement:

In sun-bird system classification of terms and identify the relations (association) between terms belongs to different categories and represent the in visuallyshow that in visual representation help user to creation and publishing of framework with categories.

Existing System

Current system of Taxonomy classifications are hierarchical representation of terms belongs to different category in a tree structure which might be complex when there are large system, It might be difficult to understand the system.is difficult to show relation or association between terms belong to different category
creation and association of terms in sun bird is done through postman collection,

Proposed System of Taxonomy

With In proposed the taxonomy editor system we can create any number of categories dynamically and under each category we can create any number of terms and also we can also add/show association/relation between associate/relate terms belonging to different categories in a visual representation as shown below this.

...

How it works:

...

UI setup guide :-

  1. Install latest version of angular.

    npm i sb-taxonomy-editor

  2. Add the below properties to Environment.ts.

    Code Block url: 'https://portal.igot-dev.in',

    below element in sunbird-Ed-portal

<sb-taxonomy-editor [environment]="environment" [taxonomyConfig]="taxonomyConfig"></sb-taxonomy-editor>

  1. Save below "environment" and "taxonomyConfig" in local storage before initialize above library. (this need to change as input to a library).

    Code Block
             environment =  {
                     frameworkName: 

...

  1. string,   
                     channelId: 

...

  1. string,
                     authToken:

...

  1.  string,
                     isApprovalRequired:

...

3. Embed Library component into your application and pass above configuration values as input to below and app.module.ts ( will change as one place configuration)

Code Block
<lib-taxonomy-editor [environment]="environment"></lib-taxonomy-editor> 

...

  1.   boolen  // set default to false,
              }
    
             taxonomyConfig = {
                  

...

  1.       frameworkId: 

...

  1. string,
                        config: [
                            {
                                

...

  1. index:number,
                                category:string,
              

...

  1.                   icon: 'string',
                                

...

  1. color:

...

  1.  'string'
                   

...

  1.          }
                        ]
            }

...

4. Navigate to “/dashboard” to view the categories columns and to “/approval“ to view approval flow.

Contribution:

  1. Clone https://github.com/sunbird-cb/taxonomy-editor/tree/develop-new

  2. npm install

  3. ng build taxonomy-editor --watch

  4. npm run start

  5. open browser tab, in http://localhost:4200/dashboard to see the taxonomy

Taxonomy overview :-

What is taxonomy ?
Taxonomy helps to clarify our thinking by classifying things neatly into categories and sub-categories based on their relationships. The
primary goal of taxonomy is to recognize, characterise, classify, and name based on their properties.

What is term ?
Terms are items (entities or objects) with in the taxonomy, As below example shows education system taxonomy, where CBSC, Hindi,
Grade1, English are terms belonging to different categories,

What is Association ?
In the taxonomy system terms belonging to different category relate to each other, that relation is called association, each category term
might have multiple relations with terms belonging to different categories.

In the below example CBSC board have relate to Hindi medium, like Hindi medium might have grde 1 and grade 2 relation.

Example:- Education Taxonomy would look as below.

...