@@ -502,8 +502,8 @@ function add_space_coordinates_maybe!(
502
502
hdims_names =
503
503
add_space_coordinates_maybe! (nc, horizontal_space, num_points_horiz)
504
504
505
- vertical_space = Spaces . FiniteDifferenceSpace (
506
- Spaces. vertical_topology (space),
505
+ vertical_space = FiniteDifferenceSpace (
506
+ Spaces. grid (space). vertical_grid ,
507
507
Spaces. staggering (space),
508
508
)
509
509
@@ -610,8 +610,8 @@ function target_coordinates(
610
610
hcoords =
611
611
target_coordinates (Spaces. horizontal_space (space), num_points_horiz)
612
612
613
- vertical_space = Spaces . FiniteDifferenceSpace (
614
- Spaces. vertical_topology (space),
613
+ vertical_space = FiniteDifferenceSpace (
614
+ Spaces. grid (space). vertical_grid ,
615
615
Spaces. staggering (space),
616
616
)
617
617
vcoords =
@@ -687,8 +687,8 @@ function default_num_points(
687
687
horizontal_space = ClimaCore. Spaces. horizontal_space (space)
688
688
num_horz = default_num_points (horizontal_space)
689
689
690
- vertical_space = ClimaCore . Spaces . FiniteDifferenceSpace (
691
- Spaces. vertical_topology (space),
690
+ vertical_space = FiniteDifferenceSpace (
691
+ Spaces. grid (space). vertical_grid ,
692
692
Spaces. staggering (space),
693
693
)
694
694
num_vert = default_num_points (vertical_space)
0 commit comments