本文整理汇总了C#中Prediccion.Vento类的典型用法代码示例。如果您正苦于以下问题:C# Vento类的具体用法?C# Vento怎么用?C# Vento使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Vento类属于Prediccion命名空间,在下文中一共展示了Vento类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: procesarFicheroXml
private void procesarFicheroXml()
{
List<Vento> datos = new List<Vento>();
Vento medidaViento = new Vento();
string busqueda = "Estacion/Valores";
XmlNodeList nodos = document.SelectNodes(busqueda);
foreach (XmlNode node in nodos)
{
Vento medidaVento = new Vento();
medidaVento.Data = node.Attributes["Data"].Value;
XmlNodeList medidas = node.ChildNodes;
//Console.WriteLine(node.Attributes["Data"].Value);
foreach (XmlNode medida in medidas)
{
switch (medida.Attributes["ID"].Value)
{
case "81":
medidaVento.Velocidade = float.Parse(medida.Attributes["Valor"].Value);
break;
default:
break;
}
//Console.WriteLine(medida.Attributes["Valor"].Value);
}
}
}
示例2: procesarFicheroXml
private string procesarFicheroXml(StreamReader sr)
{
Vento medida;
string fichero = "";
XmlTextReader lectorXml = new XmlTextReader(sr);
while (lectorXml.Read())
{
string v = lectorXml.Name;
string x = lectorXml.Value;
if (lectorXml.NodeType == XmlNodeType.Element)
{
switch (lectorXml.Name)
{
case "Valores Data": medida = new Vento(); ; break;
case "Medida": c.Nombre = lectorXml.ReadString(); break;
}
}
}
lectorXml.Close();
return fichero;
}
示例3: procesarFicheroXml
private string procesarFicheroXml(StreamReader sr)
{
Vento medida = new Vento();
string fichero = "";
XmlTextReader lectorXml = new XmlTextReader(sr);
while (lectorXml.Read())
{
string v = lectorXml.Name;
string x = lectorXml.Value;
if (lectorXml.NodeType == XmlNodeType.Element)
{
switch (lectorXml.Name)
{
case "Contacto": c = new Contacto(); ; break;
case "nombre": c.Nombre = lectorXml.ReadString(); break;
case "apellido": c.Apellido = lectorXml.ReadString(); ; break;
case "direccion": c.Direccion = lectorXml.ReadString(); break;
case "telcasa": c.TlfnoCasa = lectorXml.ReadString(); break;
case "telmovil": c.TlfnoMovil = lectorXml.ReadString(); break;
case "teltrabajo": c.TlfnoTrabajo = lectorXml.ReadString(); agenda.Add(c); break;
}
}
}
lectorXml.Close();
return fichero;
}
示例4: procesarFicheroXml
public List<Vento> procesarFicheroXml()
{
List<Vento> datos = new List<Vento>();
Vento medidaViento = new Vento();
string busqueda = "Estacion/Valores";
XmlNodeList nodos = document.SelectNodes(busqueda);
foreach (XmlNode node in nodos)
{
Vento medidaVento = new Vento();
medidaVento.Data = node.Attributes["Data"].Value;
XmlNodeList medidas = node.ChildNodes;
foreach (XmlNode medida in medidas)
{
switch (medida.Attributes["ID"].Value)
{
case "81":
medidaVento.Velocidade = float.Parse(medida.Attributes["Valor"].Value);
break;
case "82":
medidaVento.Direccion = float.Parse(medida.Attributes["Valor"].Value);
break;
case "83":
medidaVento.TempMedia = float.Parse(medida.Attributes["Valor"].Value);
break;
case "10001":
medidaVento.Chuvia = float.Parse(medida.Attributes["Valor"].Value);
break;
case "10003":
medidaVento.Refacho = float.Parse(medida.Attributes["Valor"].Value);
break;
case "10006":
medidaVento.HorasSol = float.Parse(medida.Attributes["Valor"].Value);
break;
}
}
datos.Add(medidaVento);
}
return datos;
}
示例5: procesarFicheroXml
private void procesarFicheroXml()
{
Vento medida = new Vento();
string busqueda = "Estacion/Valores";
XmlNodeList nodos = document.SelectNodes(busqueda);
foreach (XmlNode node in nodos)
{
XmlNodeList medidas = node.ChildNodes;
//Console.WriteLine(node.Attributes["Data"].Value);
foreach (XmlNode medida in medidas)
{
//Console.WriteLine(medida.Attributes["Valor"].Value);
}
}
}