Reader - GHM

ReaderName: GHMReader (in Preview)

This reader can read data in the Global Hydrological Model (GHM) format. This is a CSV format with multiple timeseries in each file. The format has the following characteristics:

  • The first line contains the external IDs of all the timeseries in the dataset
  • The rest of the lines contain the timestep value and the measured value for the corresponding timestep for each external ID
  • All rows have the same number of columns

The imported data will have one property: the external GHM ID. The reader takes one optional parameter, the data field delimiter (DataFieldDelimiter). If this is not specified by the user, then it is assumed that the values are comma-separated.

An example request might look like this:

    {
      projectId: <projectId>,
      uploadUrl: <fileUrl>,
      outputDatasetData: {
        name: <dataset-name>
      },
      readerName: 'GHMReader',
      writerName: 'TSWriter',
      readerParameters: [
        {

        }
      ]
    }