Hi - I’m trying to format some excel data for input into family type parameters (that are shared), and keep getting “The parameter’s storage type is not a number”. In the screenshot, I have compared the object.type for both my excel data and the parameter storage types - they appear to match, other than the python node outputting System.* types instead of native Revit integers, doubles, etc. Is that what is causing the issue? You can ignore IN[0] in the python, it’s not doing anything yet.
# Load the Python Standard and DesignScript Libraries
import sys
import clr
clr.AddReference('ProtoGeometry')
from Autodesk.DesignScript.Geometry import *
# The inputs to this node will be stored as a list in the IN variables.
famtypes = IN[0]
params = IN[1]
# Format parameters
for param in params:
# ID
param[0] = str(param[0])
# Name
param[1] = str(param[1])
# Depth
param[2] = float(param[2]/12)
#Height
param[3] = float(param[3]/12)
# Width
param[4] = float(param[4]/12)
# Weight
if param[5] == None:
param[5] = 0
else:
param[5] = int(param[5])
# Counter or Floor
if param[6] == None:
param[6] = ''
else:
param[6] = str(param[6])
# Relocated?
if param[7] == None:
param[7] = 0
elif param[7].lower() == "y":
param[7] = 1
else:
param[7] = 0
# Location
if param[8] == None:
param[8] = ''
else:
param[8] = str(param[8])
# Power
if param[9] == None:
param[9] = 0
elif param[9].lower() == "y":
param[9] = 1
else:
param[9] = 0
# Dedicated Circuit
if param[10] == None:
param[10] = 0
elif param[10].lower() == "y":
param[10] = 1
else:
param[10] = 0
# BTU
if param[11] == None:
param[11] = 0.0
elif param[11].lower() == "y":
param[11] = 1.0
else:
param[11] = 0.0
# Water
if param[12] == None:
param[12] = 0
elif param[12].lower() == "y":
param[12] = 1
else:
param[12] = 0
# Drain
if param[13] == None:
param[13] = 0
elif param[13].lower() == "y":
param[13] = 1
else:
param[13] = 0
# Computer
if param[14] == None:
param[14] = 0
elif param[14].lower() == "y":
param[14] = 1
else:
param[14] = 0
# UPS
if param[15] == None:
param[15] = 0
elif param[15].lower() == "y":
param[15] = 1
else:
param[15] = 0
# Printer
if param[16] == None:
param[16] = 0
elif param[16].lower() == "y":
param[16] = 1
else:
param[16] = 0
# Notes
if param[17] == None:
param[17] = ''
else:
param[17] = str(param[17])
# Assign your output to the OUT variable.
OUT = params