Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

I don't know of a .ddy dataset and I haven't looked for it (I'm assuming you've searched online prior to posting).

But it'll be very easy to create... The link you gave has .imf file. It's basically a collection of the SizingPeriod:DesignDay objects encompassed in if statements.

##ifdef KEY
SizingPeriod:DesignDay (1st for the location)
...
SizingPeriod:DesignDay (12th for the location)
##endif
##ifdef ANOTHER_KEY
SizingPeriod:DesignDay (1st for the location)
...
SizingPeriod:DesignDay (12th for the location)
##endif

The key can be found in the csv file.

So if you need a couple locations, do it manually.

Otherwise, you can write something that'll parse it out and save as individual files in 10 or less lines of code.