110023: The number of time steps (Neighborhood Time Step) cannot encompass more than 75 percent of the maximum time extent.

Description

You have provided a Neighborhood Time Step that is larger than 75 percent of the total number of time steps found in the Input Space Time Cube.

Solution

Enter a smaller value for the Neighborhood Time Step parameter. It should be no smaller than 1 and no larger than 75 percent of the total number of time steps in the Input Space Time Cube. Details, including the total number of time steps, are written as messages when the cube is created (Create Space Time Cube). You may also get access to cube dimensions by entering the following code in the Python window:

import arcpy
in_netcdf = "c:/working/fire.nc"
nc_fp = arcpy.NetCDFFileProperties(in_netcdf)
print("\tSize of the time dimension:
      {0}".format(nc_fp.getDimensionSize('time')))