## mgrs.utm_to_crs()


Convert a numeric UTM zone and hemisphere to a pyproj.CRS.


Usage

``` python
mgrs.utm_to_crs(
    zone,
    hemisphere,
)
```


## Returns


`CRS`  
The `pyproj.CRS` for the UTM zone.


## Raises


`ValueError`  
If `zone` is outside 1-60 or `hemisphere` is not `'N'`/`'S'`.
