Skip to content

compute_box returns null when passed an empty string #5

@eliotstock

Description

@eliotstock

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions