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

    [Plugin] KML Tools (2.0.0-beta) — updated 31.05.2013

    已排程 已置頂 已鎖定 已移動 Plugins
    137 貼文 49 Posters 124.4k 瀏覽 49 Watching
    正在載入更多貼文
    • 從舊到新
    • 從新到舊
    • 最多點贊
    回覆
    • 在新貼文中回覆
    登入後回覆
    此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
    • JClementsJ 離線
      JClements
      最後由 編輯

      I see that the plugin is only importing the coordinates as labels with a leader, but is not adding a Construction Point to the tip of the leader; thus, you can not snap to the tip of the leader with any of SU/s drawing tools.

      The import function of this plugin would have to be modified to have an option to do this.

      PERHAPS THERE ALREADY IS A SCRIPT TO ADD CONSTRUCTION POINTS TO THE TIPS OF LEADERS?

      John | Illustrator | Beaverton, Oregon

      1 條回覆 最後回覆 回覆 引用 0
      • TIGT 離線
        TIG Moderator
        最後由 編輯

        Perhaps

          if !description.nil? && !description.empty?
            context.add_text description, c, [1,1,1]
          elsif !name.empty?
            context.add_text name, c, [1,1,1]
          else
            context.add_cpoint c
          end
        

        needs to become

          if !description.nil? && !description.empty?
            context.add_text description, c, [1,1,1]
            context.add_cpoint c
          elsif !name.empty?
            context.add_text name, c, [1,1,1]
            context.add_cpoint c
          else
            context.add_cpoint c
          end
        

        TIG

        1 條回覆 最後回覆 回覆 引用 0
        • S 離線
          schoobie
          最後由 編輯

          Questions:

          1. And how do I convert labels to construction points?

          2. Where do I insert the code TIG is suggesting?

          3. I have imported in the past fro GE to SU with this plugin and do not remember having this issue.

          1 條回覆 最後回覆 回覆 引用 0
          • TIGT 離線
            TIG Moderator
            最後由 編輯

            @schoobie said:

            Questions:

            1. And how do I convert labels to construction points?

            2. Where do I insert the code TIG is suggesting?

            3. I have imported in the past from GE to SU with this plugin and do not remember having this issue.

            1. The code changes adds cpoints at all labels.
            2. Search the script for the first set of code and add the extra lines context.add_cpoint c where shown...
            3. ???

            TIG

            1 條回覆 最後回覆 回覆 引用 0
            • S 離線
              schoobie
              最後由 編輯

              @tig said:

              @schoobie said:

              Questions:

              1. And how do I convert labels to construction points?

              2. Where do I insert the code TIG is suggesting?

              3. I have imported in the past from GE to SU with this plugin and do not remember having this issue.

              1. The code changes adds cpoints at all labels.
              2. Search the script for the first set of code and add the extra lines context.add_cpoint c where shown...
              3. ???

              Wow, thanks!
              Quite simple, but very impressive!

              1 條回覆 最後回覆 回覆 引用 0
              • JClementsJ 離線
                JClements
                最後由 編輯

                Thanks TIG for helping out.

                John | Illustrator | Beaverton, Oregon

                1 條回覆 最後回覆 回覆 引用 0
                • D 離線
                  dawrightau
                  最後由 編輯

                  Hi

                  This is a great tool thank you. I am using it to import contour lines but am having an issue with failing to import all data with more detailed contours (ie 1 metre contours for a small area).

                  The KML file containing contours is only 152 k but when using the plug in fetches elevation data and then imports about 1/3 of the contour lines but then it hangs on a dialog title "Progess" importing linestrings which is all in blue and no further data is imported.

                  Is this a size / number of entities / memory limitation? Even though detailed it is not huge.

                  Any help would be appreciated.

                  Thanks regards

                  David

                  1 條回覆 最後回覆 回覆 引用 0
                  • D 離線
                    dawrightau
                    最後由 編輯

                    TIG Thanks for your PM reply :

                    I know of no size limit.
                    Are you sure Sketchup has hung and not just slowed down?
                    What does the Task Manager show ??

                    TIG


                    Re your questions :

                    Sketchup doesnt seem to have "Stopped responding" according to the task manager.

                    The first third of the contours come in quickly. After trying a couple of times I left it sit for a couple of hours but no further activity other than a blue progress bar sitting at 100%.

                    I did find a suggested size kml file limit of not much more than 200KB, otherwise Sketchup will go very slowly.

                    I have attached the file in question.

                    For other forum members interest, I also found another tool to import shapefiles into sketchup at the following URL :

                     [http://www.strategis.nl/StrateGisSoftware/SGGISShapeImporterForSketchup.zip](http://www.strategis.nl/StrateGisSoftware/SGGISShapeImporterForSketchup.zip)
                    

                    This imports all the contours from a shapefile into sketchup in instant (which suggests to me the KML file shouldn't be too big for sketchup).

                    However unlike KML Import, GIS Shape Importer does not georeference the contours or group individual contours with the elevation height as the group name. GIS Shape Importer as the name suggests also cannot export to shapefiles whereas KML Import can export as well. These features in KML Import are nice features which allows automation of height adjustment of the contours to create a tin file and export the elevated contours as well.

                    Unfortunately because of the import problem I cant use KML import for this at the moment so am doing it all painfully / manually. However at least with GIS Shape importer I am able to progress in the meantime.

                    If anyone can test my file and see if they are getting the same problem and suggest a solution that would be much appreciated.

                    Regards

                    David


                    Woolshed Contours 1m.KML

                    1 條回覆 最後回覆 回覆 引用 0
                    • A 離線
                      Aerilius
                      最後由 編輯

                      Hi,
                      I found the problem and fixed it. Thanks for attaching the file with which the problem occured.

                      Importing big kml files can be slow because they are in xml format and there is no efficient way in SketchUp/Ruby to do it faster. I think shapefiles are in a binary format, so if there is a direct importer it could be faster.

                      1 條回覆 最後回覆 回覆 引用 0
                      • D 離線
                        dawrightau
                        最後由 編輯

                        Hi Aerilius,

                        Thanks for getting back to me.

                        Glad you were able to fix it but how do I get access to the fix?

                        I checked the plugin download site and the date of the download plugin file is

                           3/07/2011 7:05 PM
                        

                        Be grateful to get this working.

                        Thanks again.

                        Cheers

                        David

                        1 條回覆 最後回覆 回覆 引用 0
                        • A 離線
                          Aerilius
                          最後由 編輯

                          Hi,
                          the first post of this thread has version 1.4.9 (29.04.2012). If it is also distributed on another site, then I don't have access to update it there.

                          1 條回覆 最後回覆 回覆 引用 0
                          • D 離線
                            dawrightau
                            最後由 編輯

                            Thanks Aerilus,

                            The update worked perfectly and immediately (essentially no delay).

                            For some reason I thought the official site was http://extendsketchup.com/plugins/kml-tools/

                            The logical spot as you say was at the beginning of this forum.

                            Thanks again.

                            Kind regards

                            David Wright

                            1 條回覆 最後回覆 回覆 引用 0
                            • U 離線
                              ulisessol7
                              最後由 編輯

                              @aerilius said:

                              I had done more than a week testing and hadn't imagined that there still could be such issues.
                              Now I've uploaded a new version. I found a work-around to drop the IE8 requirement and fixed some more things. I hope it works this time.

                              just wanted to say thank you so much for making this tool available

                              cheers from Mexico

                              1 條回覆 最後回覆 回覆 引用 0
                              • GaieusG 離線
                                Gaieus
                                最後由 編輯

                                @ulisessol7 said:

                                just wanted to say thank you so much for making this tool available...

                                👍

                                Gai...

                                1 條回覆 最後回覆 回覆 引用 0
                                • D 離線
                                  dawrightau
                                  最後由 編輯

                                  Hi Again Aerilus

                                  The plugin is working fine for some kml files but for some reason inst working with others.

                                  The ones that work have elevation data generated when they are created.

                                  I tried importing a simple kml file with no elevation data and I get a white dialog box progress and no progress (please see hayrack boundary.kml)

                                  I added 10 m vertices to the polygon and added elevation data to them and now get a dialog box with 50% progress where it stops (please see hayrack boundary with elevation.kml)

                                  Any assistance would be appreciated.

                                  Regards

                                  David

                                  @dawrightau said:

                                  Thanks Aerilus,

                                  The update worked perfectly and immediately (essentially no delay).

                                  For some reason I thought the official site was http://extendsketchup.com/plugins/kml-tools/

                                  The logical spot as you say was at the beginning of this forum.

                                  Thanks again.

                                  Kind regards

                                  David Wright


                                  Hayrack Boundary.KML


                                  Hayrack Boundary with Elevation.KML

                                  1 條回覆 最後回覆 回覆 引用 0
                                  • thomthomT 離線
                                    thomthom
                                    最後由 編輯

                                    I got an KML file I'm trying to import, but I'm getting errors:

                                    
                                    fetching elevation from url; http://api.geonames.org/astergdemJSON?formatted=true&lat=63.430509&lng=10.395091&username=aerilius&style=full&callback=returnJson
                                    kmlImport.rb; geonames returned 6
                                    Error; #<NoMethodError; undefined method `[]' for nil;NilClass>
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;758;in `points_to_plane'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;758;in `each'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;758;in `points_to_plane'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;327;in `polygon'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;195;in `run2'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;655;in `eachp'
                                    (eval);155;in `each_with_index'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;653;in `each'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;653;in `each_with_index'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;653;in `eachp'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;195;in `run2'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;175;in `each'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;175;in `run2'
                                    C;/Program Files (x86)/Google/Google SketchUp 8/Plugins/kmlTools/kmlImport.rb;151;in `fetch_alt'
                                    
                                    

                                    Thomas Thomassen — SketchUp Monkey & Coding addict
                                    List of my plugins and link to the CookieWare fund

                                    1 條回覆 最後回覆 回覆 引用 0
                                    • A 離線
                                      Aerilius
                                      最後由 編輯

                                      This plugin is unfortunately very error-prone because it was my second plugin and it uses RegExps to parse xml (I hope I find a better way to handle xml, rexml didn't prove to perform better). I'll take a look at this whern I'm at home!

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • thomthomT 離線
                                        thomthom
                                        最後由 編輯

                                        You're using a webdialog for the import - you can use the XML parsing capabilities of the web-browser:
                                        http://www.w3schools.com/xml/xml_parser.asp

                                        If you use jQuery it's very simple:
                                        http://stackoverflow.com/questions/649614/xml-parsing-in-javascript

                                        Thomas Thomassen — SketchUp Monkey & Coding addict
                                        List of my plugins and link to the CookieWare fund

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • A 離線
                                          Aerilius
                                          最後由 編輯

                                          That sounds interesting. Javascript isn't the fastest either, but this strategy probably doesn't use the script language's string functions but the browser's compiled code.
                                          I once ported the plugin (partly) to ReXML and ran performace tests (more reliable but 107% slower, ReXML is pure Ruby and I wanted to avoid gems). So I'll try it with this again.

                                          1 條回覆 最後回覆 回覆 引用 0
                                          • thomthomT 離線
                                            thomthom
                                            最後由 編輯

                                            ReXML is one of the slowest XML solutions - but as you mention it's pure Ruby. The others require some binaries. I want a Ruby parser because some times I don't have a WebDialog UI for plugins that has use of XML.

                                            Thomas Thomassen — SketchUp Monkey & Coding addict
                                            List of my plugins and link to the CookieWare fund

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 4 / 7
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement