Open Yaw1517 opened 2 years ago
@Yaw1517 thanks for your report. Are you able to open other data sources with arc.open
, like this example dataset?
filename <- system.file("extdata", "ca_ozone_pts.shp",
package="arcgisbinding")
d <- arc.open(filename)
cat('all fields:', names(d@fields), fill = TRUE) # print all fields
It possibly could be a path issue — your text says 'C:/CAnalysis/p20/Default.gdb/temp_time_series'
but the screenshot shows C:/ClimateAnalysis/p10/Default.gdb/temp_time_series'
.
Hi sir , Thanks for the reply,
No please I'm still not able to open other data source with arc open and still having the same problem )
@Yaw1517 thanks for your report. Are you able to open other data sources with
arc.open
, like this example dataset?filename <- system.file("extdata", "ca_ozone_pts.shp", package="arcgisbinding") d <- arc.open(filename) cat('all fields:', names(d@fields), fill = TRUE) # print all fields
It possibly could be a path issue — your text says
'C:/CAnalysis/p20/Default.gdb/temp_time_series'
but the screenshot showsC:/ClimateAnalysis/p10/Default.gdb/temp_time_series'
. Hi sir , Thanks for the reply,
No please I'm still not able to open other data source with arc open and still having the same problem
@Yaw1517 were you able to address this issue? If not, I would see if it works outside of a notebook environment in a direct R session to help separate out possible DLL loading issues.
Hello,
I'm using Jupiter notebook in conjuction with ArcGIS Pro 2.5 I am trying to run read in the time-series mosaic that contains the predicted temperature profiles, but always giving me errors below are the codes
INITIALIZE CONNECTION WITH ARCGIS PRO arc.check_product() Define the location for GDB containing rasters r <- arc.open('C:/CAnalysis/p20/Default.gdb/temp_time_series')
Read In Time Series Mosaic Times forecast_times <- arc.select(r) forecast_times <- as.Date(forecast_times$StdTime) pls any help will be appreciated