Martin Gauch
Martin Gauch
I create a RasterLayer of type `SPACETIME` like so: ``` temporal_projected_extent = gps.TemporalProjectedExtent(extent=extent, proj4=crs, instant=datetime.datetime(1955,1,4)) tile = gps.Tile.from_numpy_array(var_data_at_instant, no_data_value) tiles = [(temporal_projected_extent, tile)] rdd = spark_ctx.parallelize(tiles) raster_layer = gps.RasterLayer.from_numpy_rdd(layer_type=gps.LayerType.SPACETIME, numpy_rdd=rdd)...
I am running my scripts on a SLURM-scheduled cluster where the compute nodes don't have internet access. The training script works just fine: I can use an `OfflineExperiment`. But the...