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
If you call cartography::getTiles with x a a simple feature collection, which is not POINT, no bounding box bbx is generated. You should probably change
if (nrow(x) == 1) {
if (sf::st_is(x, "POINT")) {
to
if (nrow(x) == 1 && sf::st_is(x, "POINT")) {
The text was updated successfully, but these errors were encountered:
If you call cartography::getTiles with x a a simple feature collection, which is not POINT, no bounding box bbx is generated. You should probably change
if (nrow(x) == 1) {
if (sf::st_is(x, "POINT")) {
to
if (nrow(x) == 1 && sf::st_is(x, "POINT")) {
The text was updated successfully, but these errors were encountered: