Skip to content

Tabular Listings of GeoRegions

A list of GeoRegions and their basic properties can be called using the function tableGeoRegions(), which lists all available GeoRegions, both predefined and user-defined. You can also choose to list only predefined or user-customized GeoRegions by setting their respective keywords arguments to true/false.

julia
tableGeoRegions(predefined = true/false, custom = true/false)

Additional Functionality for tableGeoRegions()

It is possible to use tableGeoRegions() to list user-defined GeoRegions in specific paths/directories. By default, it will list user-defined GeoRegions saved into the path joinpath(homedir(),".georegions"). For more on user-defined GeoRegions and saving them as part of a larger project, refer to how to setup GeoRegions.jl for a project.

Use Case Examples

julia
using GeoRegions
tableGeoRegions(warn=false,crop=true)
 ---------- ----------------------- -------- ------------------------------ ------------ --------
     ID      Name                    Parent         Bounds [N,S,E,W]         Rotation θ   Folder 
 ---------- ----------------------- -------- ------------------------------ ------------ --------
    GLB      Globe                    GLB      [90.0, -90.0, 360.0, 0.0]        0.0       .files
   GF_ALA    Alaska                   GLB      [75.0, 50.0, 255.0, 180.0]       0.0         GF
   GF_AMZ    Amazon Basin             GLB     [15.0, -20.0, 330.0, 275.0]       0.0         GF
   GF_AUS    Australia                GLB     [-10.0, -45.0, 155.0, 110.0]      0.0         GF
     ⋮       ⋮                         ⋮                   ⋮                     ⋮          ⋮
  AR6_WNA    Western North America    GLB     [50.0, 33.8, -105.0, -130.0]      0.0        AR6
  AR6_WSAF   Western South Africa     GLB      [-10.0, -36.0, 25.0, 8.0]        0.0        AR6
  AR6_WSB    Western Siberia          GLB       [65.0, 45.0, 90.0, 60.0]        0.0        AR6
 ---------- ----------------------- -------- ------------------------------ ------------ --------
                                                                                  106 rows omitted

See the API here

More specific Tabular Lists of GeoRegions

You may create tables of specific sets of predefined GeoRegions that come with GeoRegions.jl, as listed here.