Type alias CalculateIdwResult

CalculateIdwResult: {
    code: "NotFound";
    message: "no measurements found";
} | {
    code: "Ok";
    data: {
        breaks: number[];
        featureCollection: {
            features: {
                geometry: {
                    coordinates: number[][][];
                    type: string;
                };
                properties?: {
                    idwValues: number[];
                };
                type: string;
            };
            type: "FeatureCollection";
        }[];
        timesteps: RFC3339Date[];
    };
}

Type declaration

  • code: "NotFound"
  • message: "no measurements found"

Type declaration

  • code: "Ok"
  • data: {
        breaks: number[];
        featureCollection: {
            features: {
                geometry: {
                    coordinates: number[][][];
                    type: string;
                };
                properties?: {
                    idwValues: number[];
                };
                type: string;
            };
            type: "FeatureCollection";
        }[];
        timesteps: RFC3339Date[];
    }
    • breaks: number[]
    • featureCollection: {
          features: {
              geometry: {
                  coordinates: number[][][];
                  type: string;
              };
              properties?: {
                  idwValues: number[];
              };
              type: string;
          };
          type: "FeatureCollection";
      }[]
    • timesteps: RFC3339Date[]

Generated using TypeDoc