"grdview [ERROR]: Map region exceeds 360 degrees" when plotting data in UTM coordinates with grdview

Here is the code I’ve used and the complete error message it produced:

import pygmt
dem_file = "ASTGTMV003_N53E158_dem.tif"
cut_file = "cut.grd"
reproj_data = pygmt.grdproject(
    grid=dem_file,
    projection="+proj=utm+zone=57+datum=WGS84"
)
utm_region = [473985.689738, 478012.268774, 5874985.86281, 5879019.97682]
pygmt.grdcut(
    grid=reproj_data,
    region=utm_region,
    outgrid=cut_file
)
fig = pygmt.Figure()
fig.grdview(
    grid=cut_file,
    perspective=[-100, 30],
    frame="a",
    zsize="3c",
    surftype="s",
    cmap="geo",
    plane="80+ggray"
)
fig.show()

[quote]grdview [ERROR]: Map region exceeds 360 degrees
grdview [ERROR]: General map projection error

GMTCLibError Traceback (most recent call last)
in <cell line: 15>()
13 )
14 fig = pygmt.Figure()
—> 15 fig.grdview(
16 grid=cut_file,
17 perspective=[-100, 30],

3 frames
/usr/local/lib/python3.10/site-packages/pygmt/helpers/decorators.py in new_module(*args, **kwargs)
607 raise GMTInvalidInput(msg)
608
→ 609 return module_func(*args, **kwargs)
610
611 new_module.aliases = aliases

/usr/local/lib/python3.10/site-packages/pygmt/helpers/decorators.py in new_module(*args, **kwargs)
771
772 # Execute the original function and return its output
→ 773 return module_func(*bound.args, **bound.kwargs)
774
775 return new_module

/usr/local/lib/python3.10/site-packages/pygmt/src/grdview.py in grdview(self, grid, **kwargs)
153 ):
154 kwargs[“G”] = vdrapegrid
→ 155 lib.call_module(
156 module=“grdview”, args=build_arg_list(kwargs, infile=vingrd)
157 )

/usr/local/lib/python3.10/site-packages/pygmt/clib/session.py in call_module(self, module, args)
657 status = c_call_module(self.session_pointer, module.encode(), mode, argv)
658 if status != 0:
→ 659 raise GMTCLibError(
660 f"Module ‘{module}’ failed with status code {status}:\n{self._error_message}"
661 )

GMTCLibError: Module ‘grdview’ failed with status code 74:
grdview [ERROR]: Map region exceeds 360 degrees
grdview [ERROR]: General map projection error[/quote]
I appreciate any guidance or suggestions you can provide. Thank you very much for your assistance!

Can you please format your post??

this and below