# HG changeset patch # User greg # Date 1533823604 14400 # Node ID b03291d5a84246317869d61704d1843f1dc90f23 # Parent 459b422e5df68a1cb528021d0ceb48e66a70f1ba Uploaded diff -r 459b422e5df6 -r b03291d5a842 extract_ipm_date_interval.xml --- a/extract_ipm_date_interval.xml Wed Aug 08 14:15:59 2018 -0400 +++ b/extract_ipm_date_interval.xml Thu Aug 09 10:06:44 2018 -0400 @@ -41,7 +41,7 @@ len(value.split('-')[0])==4 and int(value.split('-')[0]) and len(value.split('-')[1])==2 and int(value.split('-')[1]) and len(value.split('-')[2])==2 and int(value.split('-')[2]) - + len(value.split('-')[0])==4 and int(value.split('-')[0]) and len(value.split('-')[1])==2 and int(value.split('-')[1]) and len(value.split('-')[2])==2 and int(value.split('-')[2]) @@ -87,7 +87,29 @@ **What it does** -Provides an agent-based stochastic model expressing stage-specific phenology and population dynamics for an insect species across geographic regions. +Extracts a date interval from the data produced by the Insect Phenology Model tool, providing a "zoomed in" view of the plots. + +The Insect Phenology Model tool produces 2 data set collections, one consisting of the the analyzed data files and another consisting +of plots based on the data files. The data consists of a complete year, and the X axis displays weekly tick marks (on Sundays) +as well as the first day of each month. + +This tool accepts the Insect Phenology Model collection of data files as input and extracts the user-specified date interval from +the files, producing a collection of data files with the same names, but containing only the extracted date interval. A collection +of plots is also produced, each with the same name as those produced by the Insect Phenology Model tool, but restricted to the +date interval, which is cannot be more than 50 days. The X axis displays daily tick marks, essentially zooming in on the original +data. + +This tool inspects the parameters values that were specified when the Insect Phenology Model tool was executed in order to +generate the plots, so it is essential that the dataset collection selected as the input to this tool was produced by the +Insect Phenology Model tool. + +----- + +**Required options** + + * **Insect phenology model data files** - select the collection of data files produced by the Insect Phenology Model tool. + * **Start date** - enter a start date for the interval using the format YYYY-MM-DD, making sure that the year coincides with the selected collection of input data files. + * **End date** - enter an end date for the interval using the format YYYY-MM-DD which is between 1 and 50 days after the start date. -----