SHCanada2

Members
  • Posts

    1113
  • Joined

  • Last visited

Posts posted by SHCanada2

  1. 5 minutes ago, TeaTime said:

    You'd just draw two Elevation Lines at different heights.

    tried that. on a normal walkout that always works, but because this one back corner is higher than the front it looks to be cubic splining the terrain between the two regions making weird things happen at the house wall (I tried changing the terrain intervals, no luck). I even tried to put in more regions, no luck. I'll see if I can post the plan later. In the meantime I'll try your first suggestion. thanks

     

     

     

  2. I have a walkout basement which needs a wing wall, and I cannot get the terrain to be uniformly declining (its on a corner lot where the one rear corner is actually higher that the associated front corner)

     

    It there a method to get a wing wall or retaining wall to taper? and/or get a terrain region to start at a specific elevation on one end and a different elevation at the other end(as the retaining wall will follow the terrain)

     

    thanks

     

  3. i calculate a percentage of windows on side property line walls with a couple macros. Because it is "Above grade", I think the only solutions is to draw a polyline (or at least that is what I do). You get the area from the polylline, and then you would need to subtract the windows and doors

    if you look closely below you can see the blue polyline that I drew

    image.thumb.png.451b8f06a131d1ac176687acf7bb865c.png

  4. so something like:

     

     

    ..manage initialization and setting of variables...

     

    i = 0

    j = $Array1.length

    lfound = false

    while i < j

    if $Array1[i][0] == owner.schedule_number

    $Array1[i]= [owner.schedule_number,@customfield]

    lfound = true

    end

    i = i+1

    end

     

    i=$Array1.length

    if lfound == false

    $Array1[i] = [owner.schedule_number, @customfield]

    end

     

    The above assumes there are no duplicate objects with the same schedule number

  5. if you have a unique id for the object (such as a schedule number), the label can add the value to an array which has the unique id. so before adding it to the array, you check to see if it is there first. if it is, you update, if not you add. I think joe uses ObjectId as the unique identifier

     

    The only downside is when an item is removed, or if the unique ID changes. I have not found a great solution. One is to reset the whole thing and let it repopulate the array

  6. On 8/14/2023 at 11:29 AM, Renerabbitt said:

    Switched to tab breaks and its even worse...seems to be duplicating data..this has to be a bug

    post the CSV

     

    you can view it in a hex editor to see if there is anything funny. However if you just open up a new text file in notepad and type in the chracters with commas, and then save it, and then see if you still get the error, 

    To check your code, you could just read the first character in the newly created file from above, and see if it is screwed up. Not sure how you are reading the file,

     

    It is odd it works for the second line but not the first.

     

    I would also try adding a line break in the CSV file on the first line to see if that makes a difference.

     

    I thought it might be the character encoding set, but that doesnt really make sense if the second line is interpreted correctly. It's almost like the CA rich text box processing of the returned macro result, is thinking it is part of the rich text encoding.

     

    The other thing you could do to check that is to print out the first line's buffer  again, after the good second line is printed

     

     

  7. 3 hours ago, DesignerAnnilee said:

    I would like to be able to set them all to export PBRT images in a batch

    in what file format? and one file per image?

     

    I put my PBR cameras on layout, and fit to the sheet, and update on demand. I suppose one could use a no line layout template, and perhaps a jpg or other image print driver to then create the image files by printing every page in the template at once ...but I havent tried it

  8. 15 hours ago, Joe_Carrick said:

    That eliminates some automatic labeling of objects using their NVPs.  CAD Details are unfortunately without intelligence.

    i assume he cant get most of that(if any) from the live view, so by going to CAD, he ensures the items which vary by dimension are the correct dimension related to other things. A better man than I.

     

    I leave my CAD details generic (I don't change the size of the lumber) and instead change the label, thereby minimizing the number of CAD details, but it also means my CAD details are not dimensionally correct related to each component, and they are NTS. That is the tradeoff which is acceptable for myself

  9. 21 hours ago, DRDesign said:

    In the example section, the CADBlockName macro automatically names the label for the Simpson SDWF floor screw just by making the arrow touch the CAD block. The LumberHeight and LumberWidth macros automatically fill in the nominal lumber size in the 2x12 rim joist label. For example, changing the size of the cross box to 1"W and 16"H would change the label to "5/4X16" RIM JOIST".

    i see there are dim lines, is that a live view with some add ons (flashing and everything outside the ribboard, Simpson, et al)? CAD Detail from view?

  10. On 7/27/2023 at 4:57 PM, ChiefUserBigRob said:

    I wish I wasn't so oblivious to all this AI I am hearing about

    haven't you heard, AI will make you breakfast and put the dishes in the dishwasher.

     

    and soon every company will have an AI line of enhanced products ... that aren't really AI.

     

    It is good at generating content, not so good (yet) at interpreting multiple types of technical data. Ask Chat GPT what is the maximum size of cantilever I can have on my side property line at "your address here"

     

    It gives garbage for my address, but ironically it must know that it is because it tells you to consult the "authority"

     

  11. 2 hours ago, TeaTime said:

    Why not just delete the slab on Floor 1 and define a porch room with room dividers? Makes no sense making a room on Floor 2 when its really a floor 1 room space.

    I just left the slab thinking he had it there for a reason. 

     

    2 hours ago, TeaTime said:

    Makes no sense making a room on Floor 2 when its really a floor 1 room space

     

    I did that because he has a window above the door which made me think it was two storeys on the inside, although when I look a  little closer, it is probably part of the door. anyway if it is a window and if it was to be placed on the second floor, I wanted him to avoid this possible problem in the future:

     

    but his eaves are at the main floor level, so yes, 1 storey room is the solution

     

     

  12. a couple things to do:

    1. Align all of your 1st storey walls to the wall below using the litlle icon with the down arrow (once the walls are close). use the reference display to check. repeat for second storey

    2. Click on the walls, go to the structure tab and click default wall top height

     

    this fixes up a lot.

     

    I created a room on the second storey for the front entry with open to below and walls set to invisible with short room height

     

    I have to go, but here is where it is at

    image.thumb.png.a130e4335a391500222884044a84de9e.png

     

    but i am on X15 and you are not, so I cannot post the file

     

     

  13. On 7/24/2023 at 11:55 PM, NewbieMichael said:

    Does 30 hours sound reasonable on the roof top deck home for someone who is efficient with Chief (charging out at $100 per hour for example)  

    to answer this question, I charge a surcharge for non flat lots. Fiddling with the terrain and the stepped foundation takes time, especially if the customer doesnt like the terrain, or you have to put in a wingwall because its not actually sloped that much. and then if they change the footprint you get to do it all again.

     

    Non flat=headache

  14. this would be nice, I do a lot of wall tracing. Albeit I would not consider it AI as I don't see it going to a database of the world to do it in a better way tomorrow when the database changes.

    I perceive this a purely a software feature that could be built in CA. For instance, it could highlight what it thinks are walls and then lets you select more or less, then a button to create them.