Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

""" GIS tools and utilities 

""" 

from . import convert, geohash, geom 

from .conventions import ( 

georeference, 

is_georeferenced, 

get_grid_mapping, 

create_grid_mapping, 

create_coordinates, 

) 

from .coords import ( 

transform_to_bounds, 

transform_to_coords, 

transform_to_res, 

coords_to_transform, 

coords_to_bounds, 

) 

from .grids import TileGrid, Tile, load_grids 

from .projections import ( 

epsg_code, 

crs_longname, 

cf_crs_name, 

cf_crs_attrs, 

cf_proj_params, 

cf_ellps_params, 

cf_xy_coord_names 

)