-
Notifications
You must be signed in to change notification settings - Fork 67
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
fix: Type error in GCBM API causes (fatal) - main(306) - Value too large.
error.
#197
base: master
Are you sure you want to change the base?
Conversation
@@ -153,15 +149,15 @@ def get_input_layers(): | |||
) as json_file: | |||
dictionary["layer_type"] = "GridLayer" | |||
dictionary["layer_data"] = "Int16" | |||
dictionary["nodata"] = nodatam[1] | |||
dictionary["nodata"] = 32767 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Namyalg @Janvi-Thakkar @SanjaySinghRajpoot @YashKandalkar - what do you think of this solution?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think, as a temporary fix, we can probably go ahead with this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might also need a comment explaining this temporary solution, so that other contributors know why the hard coded value is there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Freeman-kuch - can you please add documentation to this patch? Using a hard coded number is not a good long term solution, but it will do for now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@aornugent I'm not so sure i understand what you mean about adding documentation, can you help out ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean leaving a comment in the code to explain your change. Without documentation it's hard for others to understand why this value is set.
Maybe something like:
# FIXME: hard coded nodata value is a temporary solution,
but should instead come from the input data source.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think we can add a comment and add the link to the issue, so the problem becomes clear
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please run black
and flake8
on your code and fix all formatting/style issues.
I did Run both and no issue was raised |
c9afe5e
to
f4d83e0
Compare
…oja-global#181) * refactor: moved get_config_templates, get_modules_cbm_config, get_provider_config to preprocess.py file Signed-off-by: khanjasir90 <[email protected]> * app.py and preprocess.py linted Signed-off-by: khanjasir90 <[email protected]> Signed-off-by: khanjasir90 <[email protected]> Signed-off-by: Freeman <[email protected]>
…cs (moja-global#164) * feat: added fluro and GCBM dev docs Signed-off-by: SanjaySinghRajpoot <[email protected]> * chores: furo added to requirements Signed-off-by: SanjaySinghRajpoot <[email protected]> * chores: restructed Deployment docs Signed-off-by: SanjaySinghRajpoot <[email protected]> Signed-off-by: SanjaySinghRajpoot <[email protected]> Signed-off-by: Freeman <[email protected]>
* feat: autoapi implemented * chore: autoapi added to requirements Signed-off-by: SanjaySinghRajpoot <[email protected]> * CI fix Signed-off-by: SanjaySinghRajpoot <[email protected]> Signed-off-by: SanjaySinghRajpoot <[email protected]> Signed-off-by: Freeman <[email protected]>
docs: Add expected response codes on sucess to the GCBM docs Adds response codes to the GCBM curl documentation. Also changes the format of the document to be more navigable. Signed-off-by: Amit <[email protected]> Signed-off-by: Amit <[email protected]> Co-authored-by: Namya LG <[email protected]> Signed-off-by: Freeman <[email protected]>
…lobal#185) * feat: added endpoint to return .json for the input .tiff file Signed-off-by: khanjasir90 <[email protected]> * feat: updated endpoint with specified changes and some constraints Signed-off-by: khanjasir90 <[email protected]> * feat: formatted code with black Signed-off-by: khanjasir90 <[email protected]> * updated minor typos Signed-off-by: khanjasir90 <[email protected]> Signed-off-by: khanjasir90 <[email protected]> Co-authored-by: Namya LG <[email protected]> Signed-off-by: Freeman <[email protected]>
* feat: updated curl cmds Signed-off-by: SanjaySinghRajpoot <[email protected]> * db added and doc formated Signed-off-by: SanjaySinghRajpoot <[email protected]> * example text fixed Signed-off-by: SanjaySinghRajpoot <[email protected]> Signed-off-by: SanjaySinghRajpoot <[email protected]> Signed-off-by: Freeman <[email protected]>
…of rest api gcbm (moja-global#195) Signed-off-by: olalekan temitayo <[email protected]> Signed-off-by: olalekan temitayo <[email protected]> Signed-off-by: Freeman <[email protected]>
* Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * changed the endpoint name * Update app.py * Update README.md Co-authored-by: Harsh Mishra <[email protected]> Signed-off-by: Freeman <[email protected]>
Signed-off-by: Freeman <[email protected]>
Signed-off-by: Freeman <[email protected]>
Signed-off-by: olalekan temitayo <[email protected]> Signed-off-by: olalekan temitayo <[email protected]> Signed-off-by: Freeman <[email protected]>
f4d83e0
to
bb8daaa
Compare
Pull Request Template
Description
When /dynamic endpoint is visited during simulation, it raises Type error in GCBM API causes
(fatal) - main(306) - Value too large.
error with config filesFixes #136
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
I tested locally using Postman and added the necessary config files in GCBM_New_Demo_Run. The simulation did run and didn't raise further errors.
...
Checklist: