2320 lines
No EOL
102 KiB
HTML
2320 lines
No EOL
102 KiB
HTML
; =================================================================================================
|
|
; WeatherComJSONPollen.inc by JSMorley
|
|
; "Weather.com - Parsing the JSON" (https://forum.rainmeter.net/viewtopic.php?f=118&t=34628)
|
|
;
|
|
; Requires that WeatherComJSONVariables.inc be @Included in the skin before this file.
|
|
;
|
|
; Updated August 4, 2020
|
|
; ==================================================================================================
|
|
|
|
[@PollenSuperParent]
|
|
Measure=WebParser
|
|
URL=https://api.weather.com/v2/indices/pollen/daypart/15day?geocode=#Latitude#,#Longitude#&language=#Language#&format=json&apiKey=#APIKey#
|
|
UpdateRate=#UpdateRate#
|
|
Flags=Resync | NoCookies
|
|
UserAgent=#UserAgent#
|
|
LogSubstringErrors=0
|
|
StringIndex=1
|
|
RegExp=(?siU)^(.*)$
|
|
FinishAction=[!EnableMeasureGroup Parents]
|
|
|
|
; ====================================================
|
|
; Create Parent measures for the various data elements
|
|
; ====================================================
|
|
|
|
[@PollenValidDateStampsParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"fcstValidLocal":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
FinishAction=[!EnableMeasureGroup Times]
|
|
|
|
[@PollenDayPartIndicatorParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"dayInd":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
FinishAction=[!EnableMeasureGroup Times]
|
|
|
|
[@PollenDayPartNameParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"daypartName":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
|
|
[@PollenGrassIndexParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"grassPollenIndex":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
|
|
[@PollenGrassCategoryParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"grassPollenCategory":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
|
|
[@PollenTreeIndexParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"treePollenIndex":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
|
|
[@PollenTreeCategoryParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"treePollenCategory":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
[@PollenRagweedIndexParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"ragweedPollenIndex":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
|
|
[@PollenRagweedCategoryParent]
|
|
Measure=WebParser
|
|
Group=Parents
|
|
Disabled=1
|
|
URL=[@PollenSuperParent]
|
|
RegExp=(?siU)"ragweedPollenCategory":\[(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)[,|\]]
|
|
|
|
; ====================================================
|
|
; Part 1
|
|
; ====================================================
|
|
|
|
[@PollenPart1ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart1ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart1ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart1DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart1DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart1GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart1GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart1TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart1TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart1RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart1RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=1
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 2
|
|
; ====================================================
|
|
|
|
[@PollenPart2ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart2ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart2ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart2DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart2DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart2GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart2GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart2TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart2TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart2RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart2RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=2
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 3
|
|
; ====================================================
|
|
|
|
[@PollenPart3ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart3ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart3ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart3DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart3DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart3GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart3GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart3TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart3TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart3RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart3RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=3
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 4
|
|
; ====================================================
|
|
|
|
[@PollenPart4ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart4ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart4ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart4DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart4DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart4GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart4GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart4TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart4TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart4RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart4RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=4
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 5
|
|
; ====================================================
|
|
|
|
[@PollenPart5ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart5ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart5ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart5DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart5DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart5GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart5GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart5TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart5TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart5RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart5RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=5
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 6
|
|
; ====================================================
|
|
|
|
[@PollenPart6ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart6ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart6ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart6DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart6DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart6GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart6GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart6TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart6TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart6RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart6RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=6
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 7
|
|
; ====================================================
|
|
|
|
[@PollenPart7ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart7ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart7ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart7DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart7DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart7GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart7GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart7TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart7TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart7RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart7RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=7
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 8
|
|
; ====================================================
|
|
|
|
[@PollenPart8ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart8ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart8ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart8DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart8DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart8GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart8GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart8TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart8TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart8RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart8RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=8
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 9
|
|
; ====================================================
|
|
|
|
[@PollenPart9ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart9ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart9ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart9DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart9DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart9GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart9GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart9TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart9TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart9RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart9RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=9
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 10
|
|
; ====================================================
|
|
|
|
[@PollenPart10ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart10ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart10ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart10DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart10DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart10GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart10GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart10TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart10TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart10RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart10RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=10
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 11
|
|
; ====================================================
|
|
|
|
[@PollenPart11ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart11ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart11ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart11DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart11DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart11GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart11GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart11TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart11TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart11RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart11RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=11
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 12
|
|
; ====================================================
|
|
|
|
[@PollenPart12ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart12ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart12ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart12DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart12DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart12GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart12GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart12TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart12TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart12RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart12RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=12
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 13
|
|
; ====================================================
|
|
|
|
[@PollenPart13ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart13ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart13ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart13DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart13DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart13GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart13GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart13TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart13TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart13RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart13RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=13
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 14
|
|
; ====================================================
|
|
|
|
[@PollenPart14ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart14ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart14ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart14DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart14DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart14GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart14GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart14TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart14TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart14RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart14RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=14
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 15
|
|
; ====================================================
|
|
|
|
[@PollenPart15ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart15ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart15ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart15DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart15DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart15GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart15GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart15TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart15TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart15RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart15RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=15
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 16
|
|
; ====================================================
|
|
|
|
[@PollenPart16ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart16ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart16ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart16DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart16DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart16GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart16GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart16TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart16TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart16RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart16RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=16
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 17
|
|
; ====================================================
|
|
|
|
[@PollenPart17ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart17ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart17ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart17DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart17DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart17GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart17GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart17TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart17TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart17RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart17RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=17
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 18
|
|
; ====================================================
|
|
|
|
[@PollenPart18ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart18ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart18ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart18DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart18DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart18GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart18GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart18TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart18TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart18RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart18RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=18
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 19
|
|
; ====================================================
|
|
|
|
[@PollenPart19ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart19ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart19ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart19DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart19DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart19GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart19GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart19TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart19TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart19RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart19RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=19
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 20
|
|
; ====================================================
|
|
|
|
[@PollenPart20ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart20ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart20ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart20DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart20DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart20GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart20GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart20TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart20TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart20RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart20RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=20
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 21
|
|
; ====================================================
|
|
|
|
[@PollenPart21ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart21ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart21ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart21DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart21DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart21GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart21GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart21TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart21TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart21RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart21RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=21
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 22
|
|
; ====================================================
|
|
|
|
[@PollenPart22ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart22ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart22ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart22DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart22DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart22GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart22GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart22TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart22TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart22RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart22RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=22
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 23
|
|
; ====================================================
|
|
|
|
[@PollenPart23ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart23ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart23ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart23DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart23DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart23GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart23GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart23TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart23TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart23RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart23RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=23
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 24
|
|
; ====================================================
|
|
|
|
[@PollenPart24ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart24ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart24ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart24DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart24DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart24GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart24GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart24TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart24TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart24RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart24RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=24
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 25
|
|
; ====================================================
|
|
|
|
[@PollenPart25ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart25ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart25ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart25DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart25DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart25GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart25GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart25TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart25TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart25RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart25RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=25
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 26
|
|
; ====================================================
|
|
|
|
[@PollenPart26ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart26ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart26ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart26DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart26DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart26GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart26GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart26TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart26TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart26RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart26RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=26
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 27
|
|
; ====================================================
|
|
|
|
[@PollenPart27ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart27ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart27ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart27DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart27DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart27GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart27GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart27TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart27TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart27RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart27RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=27
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 28
|
|
; ====================================================
|
|
|
|
[@PollenPart28ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart28ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart28ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart28DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart28DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart28GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart28GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart28TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart28TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart28RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart28RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=28
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
; ====================================================
|
|
; Part 29
|
|
; ====================================================
|
|
|
|
[@PollenPart29ValidDateStamp]
|
|
Measure=WebParser
|
|
URL=[@PollenValidDateStampsParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart29ValidWeekDay]
|
|
Measure=Time
|
|
Group=Times
|
|
Disabled=1
|
|
TimeStamp=[@PollenPart29ValidDateStamp]
|
|
DynamicVariables=1
|
|
TimeStampFormat=%Y-%m-%dT%H:%M:%S
|
|
FormatLocale=#Language#
|
|
Format=%A
|
|
|
|
[@PollenPart29DayPartIndicator]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartIndicatorParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart29DayPartName]
|
|
Measure=WebParser
|
|
URL=[@PollenDayPartNameParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart29GrassIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassIndexParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart29GrassCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenGrassCategoryParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart29TreeIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeIndexParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart29TreeCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenTreeCategoryParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart29RagweedIndex]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedIndexParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute#
|
|
|
|
[@PollenPart29RagweedCategory]
|
|
Measure=WebParser
|
|
URL=[@PollenRagweedCategoryParent]
|
|
StringIndex=29
|
|
RegExpSubstitute=1
|
|
Substitute=#CommonSubstitute# |