1

Weather Converter: Purpose of ProcessWeather() OutFileURL parameter?

In the weather converter DLL documentation it specifies the following parameters for the ProcessWeather() function:

Private Declare Sub ProcessWeather Lib "EPlusWth" 
    (ByVal strInType As String,      ByVal InTypeLen As Long, 
     ByVal strOutType As String,     ByVal OutTypeLen As Long, 
     ByVal strInFileName As String,  ByVal InFileNameLen As Long, 
     ByVal strOutFileName As String, ByVal OutFileNameLen As Long, 
     ErrorFlag As Boolean, 
     Optional ByVal strOutFileURL As String, Optional ByVal OutFileURLlen As Long)

(VB code)

However, the documentation omits discussing the last parameter OutFileURL.

Since It is an optional parameter the example on the same page leaves it out.

What is this for?

dhollman's avatar
397
dhollman
asked 2018-01-05 08:37:57 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2018-01-05 11:10:36 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

In another part of the weather converter documentation it contains the following:

2.5.3.3 Field: OutputURL When a list of files is being processed, one of the outputs that results from the processing is a KML (Keyhole Markup Language) file that can be used with Google Earth to pinpoint the locations of the weather site. This field can be used to set this URL for later output. The list file format also includes a URL as its third (optional) parameter. If included, this input would overwrite other URL designations.

So I assume that is what this last parameter is for.

That said, this description is still a bit vague, I guess it will insert the provided URL string in the output KML file? (Any comments to clarify this would be useful).

dhollman's avatar
397
dhollman
answered 2018-01-05 08:40:02 -0500, updated 2018-01-05 08:40:42 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments