voxcity.utils.projector.GridGeom ================================ .. py:class:: voxcity.utils.projector.GridGeom Bases: :py:obj:`TypedDict` Typed view of the dict returned by compute_grid_geometry(). .. py:attribute:: origin :type: numpy.ndarray [lon, lat] of the reference corner (rectangle_vertices[0]). .. py:attribute:: side_1 :type: numpy.ndarray Vector v0 → v1 in lon/lat degrees. .. py:attribute:: side_2 :type: numpy.ndarray Vector v0 → v3 in lon/lat degrees. .. py:attribute:: u_vec :type: numpy.ndarray lon/lat degrees per metre along the side_1 direction. .. py:attribute:: v_vec :type: numpy.ndarray lon/lat degrees per metre along the side_2 direction. .. py:attribute:: grid_size :type: tuple[int, int] (nx, ny) — number of cells along the u and v axes. .. py:attribute:: adj_mesh :type: tuple[float, float] (du_m, dv_m) — adjusted cell size in metres along u and v axes. .. py:attribute:: meshsize_m :type: float Nominal cell size in metres.