Meter_gen Option Out - gridpocket/project-iostack GitHub Wiki

Meter_gen option -out:

From the usage message:

'-out [file path template]':
	specify the generated files names.

	You can use the following templates in the file name to change depending on the data:
		- '%Y': Generation year (format YYYY like 2017)
		- '%y': Generation year (format YY like 17)
		- '%M': Generation month (format MM like 01 for January to 12 for December)
		- '%D': Generation day of month (format DD like 01 to 31)
		- '%h': Generation hour (format HH like 00 to 23)
		- '%m': Generation minute (format mm like 00 to 59)
		- '%N': File Number (needed when using maxFileSize option)

	When not specified, equivalent to '-out "./%Y-%M-%D_%N.csv"'
	(that will generate files like './2017-12-31_42.csv')

	You can also juste put a folder path, like '-out ./specifiedPath/' (ending '/' needed to know it's a folder path)
	In this case, generated file names will be like './specifiedPath/%Y-%M-%D_%N.csv'.
⚠️ **GitHub.com Fallback** ⚠️