如何计算紫外线指数

时间:2016-08-07 06:54:25

标签: weather-api openweathermap

我可以从这个信息中计算UV指数吗?

private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
        var grid = (sender as DataGridView);
        if (e.RowIndex != -1 && (e.ColumnIndex == 0 || e.ColumnIndex == 1))
            (grid.Rows[e.RowIndex]).Cells[2].Value = (int)(grid.Rows[e.RowIndex]).Cells[0].Value + (int)(grid.Rows[e.RowIndex]).Cells[1].Value;
}

我使用forecast.io api创建一个应用程序,但我找不到uv索引值!我可以从这个信息中计算UV指数吗?

谢谢,

1 个答案:

答案 0 :(得分:0)

根据当前天气和地理数据,使用UV索引计算说明查看该文档:Calculation of UVI for Smartphone Apps

您还可以查看OpenUV - Global UV Index Forecast API