The Clipping Range of a new camera is set to 0.01 → 10000000.0 (aka 0 to infinity), but the orthographic camera (projection: orthographic) can’t deal with these values.
The first image was taken with default values above the warehouse (BTW: it would be nice to also have warehouse versions without a roof), the second one with a Max Clip of 30 (camera is at z=20).
I think the easiest fix would be to change the clipping range (effect already vanishes for max Clip < 10000000 for my setup).
Here is an example snippet on hiding the ceiling so you do not have to do this manually:
root_prim = stage.GetPrimAtPath("/Root")
if not root_prim.IsValid():
print(f"Could not find root prim at path: {root_prim}")
for child in root_prim.GetChildren():
if child.GetName().startswith("SM_CeilingA"):
child.GetAttribute("visibility").Set("invisible")