Skip to main content
  • Home
  • Documentation
  • FAQ
  • Downloads
  • Support
  • Current Release Notes
  • Ferret Users Guide
    • Users Guide Index
    • Commands Reference
    • 1. Introduction
    • 2. Data Set Basics
    • 3. Variables & Expressions
    • 4. Grids & Regions
    • 5. Animations & Gif Images
    • 6. Customizing Plots
    • 7. Handling String Data Symbols
    • 8. Working with Special Data Sets
    • 9. Computing Environment
    • 10. Converting to NetCDF
    • 11. Writing External Functions
    • Glossary
    • Appendix A: Functions
    • Appendix B: PPLUS Guide
    • Appendix C: Ferret-Specific PPLUS Enhancements
  • Previous Release Notes
  • Tutorials and Demos
    • Ferret Tour
    • DSG files: Discrete Sampling Geometries Demo
    • Ferret sorting demo
    • Fast Fourier Transforms demo
    • Empirical Orthogonal Functions demo
    • Ferret objective analysis demo
    • Ferret Palette Demo
    • Map projections
    • Ferret polygon vector demo
    • Ferret Graticules demo
    • Ferret Polytube Demo
    • Ferret Polymark Demo
    • Ferret Constant-Array demo
    • Ferret land_detail demo
    • COADS Tour
    • Levitus Tour
    • Use OPeNDAP
    • Ferret binary read demo
  • PyFerret
    • PyFerret Downloads and Install ../../faq/ferret-faqs.html
    • What is PyFerret?
    • Why use PyFerret?
    • PyFerret for the Ferret user
    • PyFerret command syntax: quick-start notes
    • PyFerret for the Python user
    • Graphics in PyFerret ?
    • New Ferret functionality
    • PyFerret Python functions and constants
    • PyFerret Python objects and methods
    • Ferret external functions in Python
    • Ferret Fortran external functions
    • PyFerret metadata-and-data dictionaries
  • OPeNDAP
    • OPeNDAP usage in Ferret
    • Use OPeNDAP Demo
    • Test OPeNDAP

HELP


The Ferret web pages, including the Users Guide, Tutorials, FAQ's and the Ferret Users List and archives are your source for help with Ferret. These resources are listed on the Ferret Support page.

For Ferret scripts, the Ferret command GO/HELP echos the start of the script to the terminal, showing the documentation at the start of the script including its arguments and any other notes that the author of the script has included.

yes? GO/HELP land.jnl
Full path name: /home/tmap/ferret/go/land.jnl
\cancel mode verify ! ... now overlaying coastal outline ...

! Description: Plot outlines of continents, countries, and/or states

! arg 1 arg 2 arg 3 arg 4
! usage: GO land [continent_pen] ["basemap"] [country_pen] [state_pen]

! pens may be "0"(background), "1"(foreground), "thick"(same as pen 7),
! "black", "red", "green", "blue", or 2-18.
! arg 2 may be "basemap", "overlay", "fast" (fast, 20e:20e overlay) or omitted

! Note 1: A pen color of "black" will actually pen number 1
! -- normally white if the window background is black
! Note 2: An "N" for the continent pen means no continents
! -- use this for the special case of geo-political
! overlay without continents.

! examples:
! GO land red - overlay continents using red pen (2)
! GO land 10 - overlay continents using pen number 10
! GO land 1 basemap - basemap of continents outline in foreground color
! GO land 1 fast - overlay continents in region 20e to 380, only
! GO land 1 " " red - overlay continents with countries in red
! GO land thick basemap black black - continents, countries, and states
! GO land N " " 1 1 - overlay: no continents; yes political boundaries

! Notes:
! 1) If a pen value is given for the country_pen or state_pen then the
! corresponding geopolitical boundaries will be drawn - else
! they will be omitted
! 2) use GO line_samples to view the first 6 pen numbers
! Higher pen numbers cycle with thicker lines (max 18)
! 3) For more control over basemaps use "GO basemap"
!