Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an option to determine the format of the columns while writing the google sheet from json file #2

Open
SamuelLaheux opened this issue Mar 22, 2018 · 0 comments
Assignees

Comments

@SamuelLaheux
Copy link

Add an option to determine the format of the columns while writing the google sheet from json file.

An example:

  {
    "pName": "param1",
    "pDesc": "",
    "pref": "",
    "pVal": 0.00001,
    "pMinValue": 0.0000903,
    "pMaxValue": "",
    "pIsDeprecated": "False"
  },
  {
    "pName": "param2",
    "pDesc": "",
    "pref": "",
    "pVal": 1e-15,
    "pMinValue": 1e-15,
    "pMaxValue": "",
    "pIsDeprecated": "False"
  }
]

gives us:

pName   | pDesc  | pref | pVal    | pMinValue | pMaxValue | pIsDeprecated
--      | --     | --   | --      | --        | --        | --
param1  |        |      | 0.00001 | 0.0000903 |           | FALSE
param2  |        |      | 0       | 0         |           | FALSE


and we want to determine the format of the table (or for pVal, pMinValue and pMaxValue column) to be "Scientific format" instead of "Automatic format":

pName | pDesc | pref | pVal | pMinValue | pMaxValue | pIsDeprecated
-- | -- | -- | -- | -- | -- | --
param1 |   |   | 1.00E-05 | 9.03E-05 |   | FALSE
param2 |   |   | 1.00E-15 | 1.00E-15 |   | FALSE


@nopnop nopnop self-assigned this Mar 26, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants