You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firstly, thanks for the port. It's exactly what I need.
The call stack for my use case is something like this:
best_bbox_search_cells
min_resolution remains as 0 (not sure if this is expected or not)
cur_ne and cur_sw are initially empty strings
interpolation_count is passed empty strings
compute_box is passed an empty string
In the Java version, computeBox() would return the following when passed an empty string:
BoundingBox bbox = new BoundingBox(90.0f, 180.0f, -90.0f, -180.0f);
But in your JS version, the following code returns null:
if (!cell_) {
return null;
}
That later results in the following error in interpolation_count:
caught TypeError: Cannot call method 'getNorth' of null
at this line:
var cell_lat_span = bbox_sw.getNorth() - bbox_sw.getSouth();
Haven't provided a patch since I'm not sure of the best fix.
Thanks,
Eliot.
The text was updated successfully, but these errors were encountered:
Glad you found this useful and thanks for the report. Can your provide a code sample or sample data? Knowing what input to best_bbox_search_cells() generates this issue would be helpful in figuring out the most appropriate way to handle it.
Firstly, thanks for the port. It's exactly what I need.
The call stack for my use case is something like this:
best_bbox_search_cells
min_resolution remains as 0 (not sure if this is expected or not)
cur_ne and cur_sw are initially empty strings
interpolation_count is passed empty strings
compute_box is passed an empty string
In the Java version, computeBox() would return the following when passed an empty string:
BoundingBox bbox = new BoundingBox(90.0f, 180.0f, -90.0f, -180.0f);
But in your JS version, the following code returns null:
if (!cell_) {
return null;
}
That later results in the following error in interpolation_count:
caught TypeError: Cannot call method 'getNorth' of null
at this line:
var cell_lat_span = bbox_sw.getNorth() - bbox_sw.getSouth();
Haven't provided a patch since I'm not sure of the best fix.
Thanks,
Eliot.
The text was updated successfully, but these errors were encountered: