Introduction
  • 19 May 2022
  • 1 Minute to read
  • PDF

Introduction

  • PDF

Article Summary

Data Exporter is a N3uron module that generates XML or CSV files containing raw or aggregated data. This data is collected from selected tag groups to be exported as files, either compressed or loose. This module also allows for automatic uploading of the generated files to an SFTP or FTP server, as well as storing files locally. The image below depicts an example XML file and CSV file.

<Data Name=”PLANT001.BLK001.INV001” Start=”2020-03-12T10:00:00” End=”2020-03-12T10:05:00”>
<Tag Name=”Voltage” First=”231” Last=”233” Min=”230” Max=”235” Avg=”232.1” Good=”1.00” Count=”9”/>
<Tag Name=”Current” First=”124” Last=”152” Min=”89” Max=”152” Avg=”110.62” Good=”1.00” Count=”8”/>
<Tag Name="DailyEnergy" First="667" Last="668" Min="667" Max="668" Avg="667.87" Good="1.00" Count="9"/>
<Tag Name="Power" First="69.31" Last="83.62" Min="48.48" Max="83.62" Avg="60.77" Good="1.00" Count="7"/>
</Data>
#Name=CSVFileName
#Start=2020-03-12T10:00:00Z
#End=2020-03-12T10:05:00Z
:Tag,min,max,first,last,avg,count,good
PLANT001.BLK001.INV001.Voltage,230,235,231,233,232.1,9,1.00
PLANT001.BLK001.INV001.Current,89,152,124,152,110.62,8,1.00
PLANT001.BLK001.INV001.DailyEnergy,667,668,667,668,667.87,9,1.00
PLANT001.BLK001.INV001.Power,48.48,83.62,69.31,83.62,60.77,7,1.00



Was this article helpful?

What's Next