factors.js 455 B

1234567891011121314151617181920212223242526272829303132
  1. export const factors = [
  2. {
  3. name: 'Natural',
  4. column: 'N_index',
  5. weight: 1,
  6. },
  7. {
  8. name: 'Social & Human',
  9. column: 'S_index',
  10. weight: 1,
  11. },
  12. {
  13. name: 'Anthropic',
  14. column: 'A_index',
  15. weight: 1,
  16. },
  17. {
  18. name: 'Economical',
  19. column: 'E_index',
  20. weight: 1,
  21. },
  22. {
  23. name: 'Cultural',
  24. column: 'C_index',
  25. weight: 1,
  26. },
  27. {
  28. name: 'Institutional',
  29. column: 'I_index',
  30. weight: 1,
  31. },
  32. ];