sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] ComponentReporter++ v1.2

    Scheduled Pinned Locked Moved Plugins
    71 Posts 22 Posters 62.5k Views 22 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • romuloigorR Offline
      romuloigor
      last edited by

      TIG,
      The "full report" is generated by the menu File > Generate Report > CSV file ? ( Only SU 8 PRO ).
      [ How could I generate this report by ruby ?, And saving automatically in my custon directory, silently.]
      if you can not do the "full reporter", I use your ComponentReporter++v1.1, but the need for this option to export values ​​LenX, LenY and LenZ of dynamic component.
      [ Create a Dynamic Component and Call ComponentReporter++v1.1 and view output is not LenX, LenY and LenZ ... ]

         [ Layer ] - My dynamic component has 10 layers and a select in listbox in component options the Dynamic Component user will select a layer and all objects when exporting the model will be in csv file
      

      ( I do not use the option to export only selected ) always full export.

      
      inlist.each{|c|
      dname="'"+c.definition.name ... 
      LenX=c.lenx.to_s ???
      LenY=c.leny.to_s ???
      LenZ=c.lenz.to_s ???
      if c.layer
         layer="'"+c.layer
      end
      
      

      OK?

      [I can not speak english and do not know ruby, I speak portuguese and I know python.]

      1 Reply Last reply Reply Quote 0
      • TIGT Offline
        TIG Moderator
        last edited by

        So to recap...
        You want to export a CSV file of ALL Dynamic Component instances [by name ?], listing their LenX, LenY and LenZ [in what units ?], plus up to 10 Layers [by name ?] showing if they are 'on'/'off'. If it's to be saved 'silently' how will the file be 'located/named' ? Perhaps in the Model's folder with its name e.g. MyModel.skp >>> MyModelDCs.csv ???

        For example:

        MyDC#1,5.678.9.012,3.456,>>Layer1<<,Layer2,Layer3,Layer4,Layer5,Layer6,Layer7,Layer8,Layer9,Layer10
        MyDC#2,1.234,5.678.9.000,Layer1,>>Layer2<<,Layer3,Layer4,Layer5,Layer6,Layer7,Layer8,Layer9,Layer10

        Where Layer1 and Layer2 are 'on' while the rest are 'off' in their respective MyDC's...

        TIG

        1 Reply Last reply Reply Quote 0
        • TIGT Offline
          TIG Moderator
          last edited by

          Here's a version that might do what you want or be adapted easily...TIG-exportDCs2csv.rb(c) TIG 2011
          Script:
          TIG-exportDCs2csv.rb
          Type:
          TIG.exportDCs2csv
          in the Ruby Console to run it.
          Exports all DCs is the model with a Name,LenX,LenY,LenZ,Layer[s]...
          'CSV' file - in the model's folder and named after the model thus:
          ModelName.skp >>> ModelNameDCs.csv
          If a new model is unsaved the current directory receives the new file.
          All Layers used in the DC are listed by name and visible ones marked
          thus >>LayerName<<
          Edit sep="," if something other than separating comma is desired e.g. ';'
          Make sep="\t" if a TSV file is desired and change ext="csv" to ext="tsv".
          It uses the current Model Units.
          Version:
          1.0 20111104 First issue.
          🤓

          TIG

          1 Reply Last reply Reply Quote 0
          • N Offline
            notekm
            last edited by

            my dcHi, in my dynamic component is a custom attribute "DSP",how and where it is necessary to register the plugin, so it will write out me to required attributes?Sorry for the quality of language

            1 Reply Last reply Reply Quote 0
            • TIGT Offline
              TIG Moderator
              last edited by

              Notekm

              Here's a modified version of the draft .rb file, which now adds 'dsp' and 'kromka' as additional reported attributes in the CSV. [which I guess are 'Chipboard' and 'Edging'/'Lipping' thicknesses ?]
              To get ANY DC attribute you can use its key's name, as you have typed it in the 'Custom' attribute section of the dialog, BUT all in lowercase letters - i.e. 'dsp' NOT 'DSP'...TIG-exportDCs2csv.rbTo find a specific DC's attribute keys/values you can select it in the SKP, then paste this line of code into the Ruby Console +<enter>:
              Sketchup.active_model.selection[0].attribute_dictionaries["dynamic_attributes"].each_pair{|k,v|puts k+"="+v.to_s}
              This will give an output list something like this:
              _has_movetool_behaviors=0.0 _hasbehaviors=1.0 dsp=0.216 kromka=1.32 lenx=0.6299212598425197 leny=11.811023622047244 lenz=28.34645669291339
              Note that the attributes starting with '_' are added by the system and you can't/shouldn't normally need or edit these.
              The others attributes represent what you have added as keys/values in the dialog - e.g. 'dsp' and 0.216... etc...

              TIG

              1 Reply Last reply Reply Quote 0
              • N Offline
                notekm
                last edited by

                it works, and how to make a that would show the sum of attribute values ​​on the right key

                1 Reply Last reply Reply Quote 0
                • TIGT Offline
                  TIG Moderator
                  last edited by

                  You can simply open it is Excel and sum the Column ?
                  However currently the units have 'mm' etc so you'd need to change those...
                  I've recast it to miss those off.
                  To =SUM a column you can add a final line of formulae...
                  See what I've done to the code... I actually summed ALL 'number columns' BUT you will probably want to sum just some...TIG-exportDCs2csv.rb

                  TIG

                  1 Reply Last reply Reply Quote 0
                  • N Offline
                    notekm
                    last edited by

                    TIG.exportDCs2csv
                    Error: #<ArgumentError: C:/PROGRA~1/Google/GOOGLE~1/Plugins/TIG-exportDCs2csv.rb:50:in to_l': Cannot convert "0.6299212598425197" to Length> C:/PROGRA~1/Google/GOOGLE~1/Plugins/TIG-exportDCs2csv.rb:50 C:/PROGRA~1/Google/GOOGLE~1/Plugins/TIG-exportDCs2csv.rb:50:in exportDCs2csv'
                    C:/PROGRA~1/Google/GOOGLE~1/Plugins/TIG-exportDCs2csv.rb:47:in each' C:/PROGRA~1/Google/GOOGLE~1/Plugins/TIG-exportDCs2csv.rb:47:in exportDCs2csv'
                    (eval):50

                    1 Reply Last reply Reply Quote 0
                    • TIGT Offline
                      TIG Moderator
                      last edited by

                      I have NOT changed the way the ...lenx.to_l etc works in line#50 - I added some code after that to remove 'mm' and '~' but nothing else; it's failing on the .to_l ?
                      Are you muddling ',' and '.' as decimal separators perhaps ?
                      If you copy/paste this into the Ruby Console it works too:
                      "0.6299212598425197".to_l
                      Works for me on your sample SKP.
                      Have you changed the DCs in your test SKP ?

                      TIG

                      1 Reply Last reply Reply Quote 0
                      • N Offline
                        notekm
                        last edited by

                        hi, I did not change, I just copied a component in the scene.
                        this task.
                        1.Select all the components in the scene
                        2. select the components of a key (such as "DSP")
                        2a. (can take the key values ​​from a separate file?)
                        3. display or save the file in the list of components (screen of what I would like to see)


                        screen of what I would like to see


                        Scene

                        1 Reply Last reply Reply Quote 0
                        • irwanwrI Offline
                          irwanwr
                          last edited by

                          so many versions in one page? is this free and not to difficult to learn for beginners?
                          if i may ask. which one is good for beginners to download, please?

                          1 Reply Last reply Reply Quote 0
                          • TIGT Offline
                            TIG Moderator
                            last edited by

                            @irwanwr said:

                            so many versions in one page? is this free and not to difficult to learn for beginners?
                            if i may ask. which one is good for beginners to download, please?

                            Get the first one [at start] - the others are to show how to make a simple DC attribute reader/reporter...

                            TIG

                            1 Reply Last reply Reply Quote 0
                            • TIGT Offline
                              TIG Moderator
                              last edited by

                              @notekm said:

                              hi, I did not change, I just copied a component in the scene.
                              this task.
                              1.Select all the components in the scene
                              2. select the components of a key (such as "DSP")
                              2a. (can take the key values ​​from a separate file?)
                              3. display or save the file in the list of components (screen of what I would like to see)

                              The XY [in mm] need to come from the two largest values of the 'panel' - because sometimes the Z is NOT the minimum [=thickness]. OR you could report all three XYZ and you then simply ignore the smallest one [thickness] ??
                              Counting the number of a a specific DC and reporting it is possible:
                              number = instance.definition.instances.length.
                              I now see that the 'DSP' is the area [in m2] of 'chipboard' used in that panel.
                              I'm not sure what the 'Kromka' is - probably linear 'm' of edging ?
                              You need to adjust the way the values of these 2 are handled - so NO .to_l step since that turns the value [assumed to be in inches] into a length in current units [mm] - perhaps leave them as the float that they are, made into a string [.to_s] ?
                              Totaling up specific columns is demonstrated in the example code I've given you - adjust it to sum just those you want.
                              The CSV format can be linked [or save_as] into a XLS file where you format it as you like...

                              TIG

                              1 Reply Last reply Reply Quote 0
                              • irwanwrI Offline
                                irwanwr
                                last edited by

                                thank you very much TIG.
                                for Extrusion Tool Set, i've learnt and succeed using the EEbyRail 😄
                                it works great as if a wizard made it 😛
                                thank you

                                1 Reply Last reply Reply Quote 0
                                • U Offline
                                  unearthed
                                  last edited by

                                  Hi TIG, thanks for the great plugin, now I can count my plants easily and sum plant areas easily.

                                  But would it be possible to add the ability to get length of curves (arcs and splines) and lines from components?

                                  Often I have many hedges in my designs, and if I could get their length, I could send this out with the report to Excel and then divide hedge length by plants per metre. I accept I will probably have to have a curve length for the hedge in a separate component but that's fine, although maybe it could just be as a nested instance.

                                  Growplan - People ∩ Plants ∩ Place

                                  windows 7 64b, 4GB RAM, SU 8.0.16846
                                  Gimp, QGIS, Vectorworks 12, Bricscad 11

                                  1 Reply Last reply Reply Quote 0
                                  • TIGT Offline
                                    TIG Moderator
                                    last edited by

                                    This tool was really written as a demonstration of how you can extract information from the model into CSV files etc.
                                    As you probably already know selected lines/curves report their total length in the Entity Info dialog.
                                    It's easy enough to sum the lengths of edges and report it out.
                                    If you give a 'little more flesh to your bones' I can perhaps guide you on how to do this...

                                    TIG

                                    1 Reply Last reply Reply Quote 0
                                    • U Offline
                                      unearthed
                                      last edited by

                                      Well here's a very typical hedge arrangement, although 100's of metres in many pieces is also quite common.

                                      I've also put the hedge centrelines as a nested component within each component, although if there's a way of avoiding that I'm all ears.
                                      Would it be easier to export the values of dimensions to the .csv?


                                      hedge.lengths.skp

                                      Growplan - People ∩ Plants ∩ Place

                                      windows 7 64b, 4GB RAM, SU 8.0.16846
                                      Gimp, QGIS, Vectorworks 12, Bricscad 11

                                      1 Reply Last reply Reply Quote 0
                                      • TIGT Offline
                                        TIG Moderator
                                        last edited by

                                        IF you want to use the nested component containing the linear info then you can readily add extra code into another column in the CSV. OR make a separate CSV report on linear info.
                                        Here's how to do it separately.
                                        The tool runs***, its code finds all components in the model with instances having a name containing 'hedge' and thereby their nested component giving the linear info drawn as a line or curve.
                                        It takes all edges in this nested component and totals their length.
                                        It writes a CSV listing the instance-name [e.g. 'c.hedge'], instance's-layer, definition-name, linear total [in meters]
                                        Sorted in order, with a header line and a total of the minear-meterage.
                                        Copy/paste this whole set of code into a new file [Notepad.exe] that you make in the Plugins folder named ' TIG-hedgelengths.rb'

                                        require 'sketchup.rb'
                                        module TIG
                                         ###
                                         unless file_loaded?(File.basename(__FILE__))
                                           UI.menu("Plugins").add_item("Hedges Length CSV"){self.hedgelengths()}
                                         end
                                         file_loaded(File.basename(__FILE__))
                                         ###
                                         def self.hedgelengths()
                                          model=Sketchup.active_model
                                          if model.path.empty?
                                            dir=Dir.pwd
                                        	tit="Untitled"
                                          else
                                            dir=File.dirname(model.path)
                                        	tit=model.title
                                          end
                                          ###
                                          rows=[]
                                          model.definitions.each{|d|
                                            next if d.group? or d.image?
                                        	d.instances.each{|i|
                                        	  txt=""
                                        	  if i.name=~/[Hh]edge/
                                        		txt << i.name+","
                                        		txt << i.layer.name+","
                                        		txt << d.name+","
                                        		lin=0
                                        		d.entities.each{|c|
                                        		  if c.class==Sketchup;;ComponentInstance
                                        		    c.definition.entities.each{|e|
                                        			  if e.class==Sketchup;;Edge
                                        			    lin+=e.length
                                        			  end
                                        			}
                                        		  end
                                        		}
                                        		txt << sprintf("%.3f", lin.to_m) ### 3d.p.
                                        	  end
                                        	  rows << txt
                                        	}
                                          }
                                          rows.dup.each{|e| rows.delete(e) if e.empty? }
                                          rows.sort!
                                          ## add total
                                          rows=["INST-NAME,INST-LAYER,DEFN,LIN.METERS"]+rows
                                          tot=rows.length.to_s
                                          rows << "\n,,TOTAL,=SUM(D2;D#{tot})"
                                          ###
                                          csv=File.join(dir, tit+"_HedgesLength.csv").tr("\\","/")
                                          ###
                                          begin
                                             file=File.open(csv,"w")
                                          rescue### trap if open
                                             UI.messagebox("Report;\n\n  "+csv+"\n\nCannot be written - it's probably already open.\nClose it and try making the Report again...\n\nExiting...")
                                        	 return nil
                                          end
                                          ###
                                          rows.each{|row| file.puts(row) }
                                          file.close
                                          ###
                                          UI.messagebox("Report;\n"+csv+"\nWritten.")
                                          UI.openURL("file;///"+csv)
                                          ###
                                         end
                                        end
                                        

                                        ***Usage: either type TIG.hedgelengths in the Ruby Console... OR more easily use the Plugins menu item...

                                        TIG

                                        1 Reply Last reply Reply Quote 0
                                        • U Offline
                                          unearthed
                                          last edited by

                                          Thanks TIG, that's simply amazing Elegant and simple.

                                          Now thanks to your plugins I've got the basis for a complete plant counter (areas, individual plants and hedges and shelterbelts - Sketchup has just become a LOT more useful), thanks again.


                                          output from TIG-hedge.lengths.rb

                                          Growplan - People ∩ Plants ∩ Place

                                          windows 7 64b, 4GB RAM, SU 8.0.16846
                                          Gimp, QGIS, Vectorworks 12, Bricscad 11

                                          1 Reply Last reply Reply Quote 0
                                          • S Offline
                                            samyell77
                                            last edited by

                                            Hi Tig,
                                            Great plugin - thanks. Ive used this on several jobs now and wonder if you can help me to make a few tweaks. I've been trying to use this to count components in a selection. I know that the plugin exports 3 csv documents and was wondering if you can help me to tailor the script to get the count Im after - Im afraid Im a total noob to Ruby but am more than happy to have a play with it if you can offer a little advice.

                                            Id like to be able to generate a count for eithera whole model or for a selection within the model. I know that the script already generates a count for a selection but I'd like to be able to summarize items with the same name -giving me a total number.

                                            I also wonder if its possible to only display the component name and the count and none of the other information (guid, description, material etc). Im trying to reduce the amount of work I need to do to tidy up the csv files that are generated.

                                            Ive been playing with this whenever I get some spare time but would love a little advice.

                                            Any help much appreciated.

                                            Thanks

                                            Sam

                                            SU Pro 2016
                                            Dell Precision M4800
                                            PC Windows 10
                                            Intel Core i7-4900MQ @ 2.80ghz
                                            Nvidia Quadro K2100M
                                            16gb RAM

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 1 / 4
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement