Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.44 KB

README.md

File metadata and controls

37 lines (30 loc) · 1.44 KB

This repository houses definitions of geometric features. These features can include regions, transects, and points. Currently they are described in geojson format. For example, here are some regions for Antarctica.

alt text

Data for regions has been derived from sources listed in the contributors file as specified via the author field in each geojson file.

The scripts in the top level directory can be used to help maintain and use this repository. All of them can be run with the -h flag to get usage information.

A typical workflow will look like:

  • Build feature list (features.geojson):
  • Multiple calls to: ./merge_features.py
  • Edit features:
  • Edit features.geojson
  • Visualize features:
  • ./plot_features.py
    (Note: requires cartopy package, e.g., conda install -c scitools cartopy)
  • Split features:
  • ./split_features.py

IMPORTANT: Always use the split_features.py script when placing features in their respective directories. This will help everyone maintain the repository, and allow tools to parse them cleanly.

An example workflow to select and plot region features is

$ rm features.geojson
$ ./merge_features.py -d ocean
$ ./merge_features.py -f iceshelves/region/Ronne_1/region.geojson
$ ./merge_features.py -d landice
$ ./plot_features.py -f features.geojson