Mostly Revit... by Eric Stimmel

LOD Specification Revealed! - NYC RUG Presentation

Friday, October 18, 2013

James Vandezande gave a presentation this past Tuesday about the recently published AGC BIMForum LOD Specification for 2013. It’s a precursur to a class he’s teaching at AU this year and it’s worth watching if you are at all interested in where the future of BIM deliverables is headed. According to the user group’s page

After two years of work, the AGC BIMForum and AIA have published the first industry specification for the reliability of building information modeling data - the Level of Development (LOD) Specification 2013.

James Vandezande served as the chair of the Exterior Enclosure sub-group for the LOD Spec. James will introduce the document and share some insight behind the robust deliberations conducted in the work group.

Recorded at the October 15, 2013 meeting of the NYC Revit Users Group, this video features James Vandezande from HOK discussing the first release of the Level of Development (LOD) Specification.

Sorted Directory Listing

Friday, October 11, 2013

As I’ve said before, it’s always good to know your way around the commandline on Windows (or any platform for that matter). You can get a lot done with a few short commands. Today I want to document one simple command that I use quite often with one option that I usually forget and have to look up when it’s important. The command is to write a list of file and folder names to a text file. That’s it. Simple, but think about how you would get this otherwise - not so easy1.

Open the commandline, navigate to the folder you want to get a listing for and type the following at the commandline.

dir /b /o:n > list.txt

The dir is a directory listing and the /b option tells it to show just the bare file (or folder) name. the /o option tells it to sort the listing and the :n modifier tells the sorting to be by name. There are other options for sorting, but you can also just leave the /o:n portion off and paste the text into Excel or use your text editor to sort the list if you need it. That’s the part I always forget…

I use this because I often want to send someone a list of filenames or occasionally I want to create a batch file that renames files, so I use this to get the original filenames and go from there in a text editor or Excel.

  1. Okay, there might be a way - I admit that I didn’t look very hard. 

IFC - What It Is and Why You Should Care

Thursday, June 20, 2013

Here’s a great presentation from on of my former colleagues about what IFC is and why it’s important. I’m not sure why I didn’t watch it until today, but I’m glad I did. Makes me want to stop using Navisworks and start using Solibri.

pushd and popd

Thursday, April 18, 2013

Here’s a quick one that’s more of a Windows tip than a Revit tip, but it can come in handy to someone who manages files on network drives that aren’t always mapped to a drive letter. For example, when you need to get a quick list of files from a network folder.

I learned this from a Superuser forum response, but you can find more information on Wikipedia or just a quick Google search.

The scenario is simple, I’m in Windows Explorer looking at a folder of files and I want to email that list of files to someone so they can comment on it. I could take a screenshot, but I’d rather have text. Normally I would open the command prompt, cd to the location and type the following:

C:\path\to\files> dir /b > list.txt

This would list the files and folders (that’s the ‘/b’ part) and write that to a text file named list.txt which I could then open and manipulate. This doesn’t work on a UNC path. Windows tells you “CMD does not support UNC paths as current directories.” However with this newly discovered pushd command, I can do the following:

C:\path\to\files> pushd \\server\uncpath\to\files
X:\uncpath\to\files> dir /b > list.txt
X:\uncpath\to\files> popd
C:\path\to\files>

As you can see, the first command pushd takes the UNC path and temporarily maps it to a drive letter where I can operate on it as a local path. The second command popd deletes the temporary drive and returns you to where you were. Simple.

Office Desk Temperature

Thursday, February 21, 2013

Here’s a simple graph of the temperature at my desk at work over the last 24 hours. It’s using a temperature and humidity sensor hooked up to an old Arduino NG and sending data to a custom console application that uploads to Cosm.com.

<img src=https://api.cosm.com/v2/feeds/92748/datastreams/Temperature.png?width=748&height=250&colour=%23f15a24&duration=1day&legend=Temperature%20(%C2%B0C)&title=Temperature%20at%20My%20Desk&stroke_size=6&show_axis_labels=true&detailed_grid=true&scale=auto&timezone=UTC>

The sensor I’m using also measure humidity, so I’ve been logging that as well. Here is a graph of the same time period showing the humidity.

<img src=https://api.cosm.com/v2/feeds/92748/datastreams/Humidity.png?width=748&height=250&colour=%23f15a24&duration=1day&legend=Humidity%20(%25)&title=Humidity%20at%20My%20Desk&stroke_size=6&show_axis_labels=true&detailed_grid=true&scale=auto&timezone=UTC>

You might ask ‘What does this have to do with Revit?’ or ‘Why are you doing this?’ The answer is partly that I have a great interest in data, data visualization and the IoT. I also believe that part of the value in moving to systems, like Revit, that makes embedded data practically inevitable if not friendlier and more accessible, is that we can start to do some real, testable research. We can do simulations in software and then we can compare that to real data like what I’ve shown above.

It’s far from reliable at this point, but it’s a start.

UPDATE: Obviously the links above don’t work anymore and at this point, I’m not sure if I ever captured an image to replace the live link, but if I find one, I’ll add it in. For now, I just preserved the api call in a code block. ¯\_(ツ)_/¯