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

Error in .call_proxy(arc.write...) FDO error: -1 #92

Open
michaela-wong opened this issue Aug 15, 2024 · 0 comments
Open

Error in .call_proxy(arc.write...) FDO error: -1 #92

michaela-wong opened this issue Aug 15, 2024 · 0 comments

Comments

@michaela-wong
Copy link

I'm trying to use arc.write to export a 3,500,000 line spatial point data frame to an arc geodatabase, but I get FDO error: -1. What does this error code mean?
arc.write error

This is the code I used to generate and export the Spatial Points Dataframe:
dat <- read.csv("masterdata.csv")
xy <-dat[,c("latitude","longitude")]
sf::st_as_sf(dat, coords = c("latitude","longitude"), crs = st_crs(4326))
sp::coordinates(xy) <- ~longitude+latitude
sp::proj4string(xy) <- sp::CRS("+init=epsg:4326")
spdat <- SpatialPointsDataFrame(coords = xy, data = dat)
arc.write(path = "path", data = spdat, overwrite = T)

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

1 participant