Select attributes in point cloud

hi everyone,
i am a new in this theme, and i problem obviously :(...
i have data in point cloud (x,y,z,a,b,c,d (a,b,c,d are some attributes about this point)). i create a point cloud (sdo_pc - geometry), block tables (sdo_geometry - geometry). if i use a function to_geometry, result is only in multipoint without attributes. it is way display this 3D data, and at the same time enquire of concerning for a attributes in concrete points?
thanks

Hi Debbie,
   There are couple of things you need to take care of before you can see those attributes:
1) Go to initial system data and upload the file for ERM you received with AC installation.
2) Once the step 1 is done, go to Miscellaneous tab and provide webservice url, user name and password for workflow type 'RE'. Make sure to activate 'RE' by clicking on active checkbox.
Regards,
Alpesh

Similar Messages

  • Error creating sdo_pc point cloud: "ORA-02289: sequence does not exist"

    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0
    I've come across a problem when creating point clouds - every so often I'll get an error about a sequence not existing.
    ERROR at line 1:
    ORA-13199: Invalid Parameters for Partition_Table
    ORA-13199: Invalid Parameters for Partition_Table
    ORA-13249: Stmt-Execute Failure: DROP SEQUENCE "MDPCS_a_17745$$$"
    ORA-29400: data cartridge error
    ORA-02289: sequence does not exist
    ORA-06512: at "MDSYS.PRVT_PC", line 3
    ORA-06512: at "MDSYS.PRVT_PC", line 171
    ORA-06512: at "MDSYS.SDO_PC_PKG", line 179
    ORA-06512: at line 17
    I've got a test case which creates a table where we'll put a sdo_pc, a block table and then a loading XYZ table.  We then loop a bunch of times and create a PC for each.
    Test case setup:
    create table pc_test (
        id integer primary key,
        pc sdo_pc);
    create sequence pc_test_id;
    create table pc_test_blocks as select * from mdsys.sdo_pc_blk_table;
    create table xyz (
        rid number,
        val_d1 number,
        val_d2 number,
        val_d3 number);
    insert /*+ append */ into xyz (
        select
            rownum,
            round(dbms_random.value(1,10000),2),
            round(dbms_random.value(1,10000),2),
            round(dbms_random.value(20,50),2)
        from dual
        connect by level <= 1000);
    commit;
    Run test case:
    declare
      l_pc sdo_pc;
        l_id pls_integer;  
    begin
        for i in 1..50 loop
            l_pc := sdo_pc_pkg.init(
                'PC_TEST', 'PC', 'PC_TEST_BLOCKS', 'blk_capacity=500',
                sdo_geometry(2003, 2157, NULL, sdo_elem_info_array(1,1003,3), sdo_ordinate_array(400000, 500000, 800000, 1000000)),
                0.005, 3, null);
            l_id := pc_test_id.nextval;
            dbms_output.put_line('PC_TEST id=' || l_id);
            insert into pc_test (id, pc) values (l_id, l_pc);
            sdo_pc_pkg.create_pc(l_pc, 'XYZ');
        end loop;
    end;
    Some of the PCs will create, but eventually it'll blow up with
    ORA-02289: sequence does not exist
    In so far as I can tell, once I call sdo_pc_pkg.create_pc(), Oracle is creating a sequence with a name such as MDPCS_a_1751F$$$.  When it is done creating the blocks, it then tries to drop the sequence.  However the statement to drop the sequence is wrapped in double quotes - so if the sequence name contained any lowercase letters then it will error out when trying to drop it.  The values used between the underscores seem to be hexadecimal - sometimes they're numbers only, sometimes numbers and uppercase letters, sometimes numbers and lowercase letters.
    Has anybody else come across this issue?
    The issue isn't critical as the PC blocks do seem to be created correctly, so the issues are: (a) my pl/sql block errors out and (b) I'm left with sequences lying around.
    For the former I'll catch the exception and ignore it, for the latter I'll just drop the sequences myself afterwards.

    I tried the test on 11.2.0.4.  On that release I get an error during a rename:
    ERROR at line 1:
    ORA-13199: Invalid Parameters for Partition_Table
    ORA-13199: Invalid Parameters for Partition_Table
    ORA-13249: Stmt-Execute Failure: RENAME "MDPCI_a_26062$$$" TO "M3_A_26062$$"
    ORA-29400: data cartridge error
    ORA-04043: object MDPCI_a_26062$$$ does not exist
    ORA-06512: at "MDSYS.PRVT_PC", line 3
    ORA-06512: at "MDSYS.PRVT_PC", line 157
    ORA-06512: at "MDSYS.SDO_PC_PKG", line 74
    ORA-06512: at line 17

  • Point cloud clip doesn't return anything in the result table

    Hi experts,
    I am wondering why my point cloud clipping function does not return anything into the result table.
    The boundaries of my point cloud are:
    min long 316,500
    max long 316,643.21
    min lat 234,000
    max lat 234,105.38
    min elevation -4.79
    max elevation 30.87
    For the ind_dimquery I have tried different geometry types, like 3003 and 3008, usually with the elem_info_array (1,1007,3)
    like in the following example:
    SQL> declare
    2 inp sdo_pc;
    3 begin
    4 select pc into inp from base109 where rownum=1;
    5 insert into restst
    6 select * from table(sdo_pc_pkg.clip_pc(
    7 inp,
    8 sdo_geometry(3003, 29903, null,
    9 mdsys.sdo_elem_info_array(1,1007,3),
    10 mdsys.sdo_ordinate_array(316510, 234080, -3, 316550, 234100, 2)),
    11 null, null, null, null));
    12 end;
    13 /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.20
    SQL> select count(*) from restst;
    COUNT(*)
    0
    What am I doing wrong? This should be a query window within the right area and I know that at least one point lies within this defined window.
    Any help is greatly appreciated!!!!!
    Cheers,
    F.

    yes exactly, I have tried all of this already.
    For a further example, there is a point in:
    POINTS(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    R G B I POINT_ID
    SDO_GEOMETRY(3001, 29903, SDO_POINT_TYPE(316503.49, 234089.46, 3.32), NULL, NULL
    71 91 78 70 55
    so theoretically, I'd feel that at the VERY LEAST this point should be in the 3008geometry and 1007 elem array for the coordinates for xmin, y min, zmin, xmax, ymax, zmax for
    316500, 234080, 2, 316510, 234100, 5
    but...nothing. Nothing in the result table.
    For full query:
    SQL> declare
    2 inp sdo_pc;
    3 begin
    4 select pc into inp from base109 where rownum=1;
    5 insert into restst
    6 select * from table(sdo_pc_pkg.clip_pc(
    7 inp,
    8 sdo_geometry(3008, 29903, null,
    9 mdsys.sdo_elem_info_array(1,1007,3),
    10 mdsys.sdo_ordinate_array(316500, 234080, 2, 316510, 234100, 5)),
    11 null, null, null, null));
    12 end;
    13 /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.13
    SQL> select count(*) from restst;
    COUNT(*)
    0

  • In Flash CS4, how do you select multiple anchor points across separate layers?

    I am talking about anchor points on a line, not a keyframe. They are also called "handles". I can select the anchor points as "white" quickly, but I can't get them to be "solid"without doing it layer by layer, which is tedious. What I want is way to select lines that are in different layers and get the points I selected in a way similar to the regular selection tool or free transform tool. I have been trying to do this all day and I can't find a good way to do this, and I would appreciate any help.
    Here is an image of what I'm trying to do, but more easily. The lines are on separate layers, but when I select them with the subselection tool I have to go layer by layer selecting the points. I'm trying to look for a very quick way of doing it. When I do select all with the subselection tool on, the anchor points are only "white" and not "solid" as shown below.

    Now you're post was a while ago and I still need a solution, but I have to say this. I didn't mean to be rude to you; it’s just that it doesn’t answer my question I specified in the original post. I know your intentions are good, but it frustrates me when someone doesn’t fully read a post and offers a solution, it sometimes gives a false impression that the problem is taken care of. Example of being "helpful": http://forums.adobe.com/message/2540277    Yes I know there is a “Yes, my question has been answered,” but you know they don’t always select it, and other people know that as well. But you are right; I should probably act a little bit nicer and reiterate what I’ve already said before, I’ll probably get more help from it. It just seems to be a simple feature that seems to be needed to be in the program. I didn't mean it takes forever to move, it takes forever to select multiple anchor points across, let's say 10 layers, so that's 10 different lines on 10 layers. You have to select each layer and then select the anchor points. If there is an away to select anchor points across all layers in one go please tell me. Maybe I was wrong, but I could’ve sworn I’ve seen ideas that were posted on here get taken into Adobe as a suggestion, but yes I submitted it as a suggestion to Adobe, but I wanted to confirm that there was no way of doing it first since it seems kind unbelievable because the regular selection tool works across multiple layers.

  • Can I add a point cloud to a 3D PDF?

    I created a 3D model based off of a point cloud and I want to include the point cloud in the PDF. I already exported the Revit model into the PDF. Thanks.

    The problem with MeshLab is that it exports in U3D format that has no control over point size and Adobe viewer ignores color settings for points in U3D.
    If you create a PRC model you can control point size and color.
    FOSS tools Asymptote and MathGL can do that, if you know C++ I can send you a simple lib to make PRC file with a pointset.
    (May be the demo of non-free Tetra 4D converter can do pointset translation.
    But it sure can can combine several PRC files, created via different tools, into a single model).
    Or, if it fits your purpose, replace points with cubes and stay on the beaten path of trinagle-mesh based scenes.

  • Selected Attribute in f:selectitem is missing ?

    Hello,
    In EA4, it was possible to write..
    <h:selectitem .... selected="true" />However, in the beta release, there is no "selected" attribute in <f:selectitem>.
    How do we specify the initial selected item in case of <f:selectitem> ?
    Ajay

    Fair enough !
    But, I would like to specify something like the following in the JSP..
    <h:selectone_radio id="searchType" value="#{CustomerSearch.searchType}">
      <h:selectitem item itemValue="01" itemLabel="Phone Number" />
      <h:selectitem item itemValue="02" itemLabel="Customer ID" />
      <h:selectitem item itemValue="03" itemLabel="Customer Name" />
    </h:selectone_radio>Ofcourse, I can set the default value of the property searchType in faces-config.xml
    or in the CustomerSearch bean constructor.
    But, I think the page author should be able to specify the default value for any
    selection item.
    Ajay

  • Subquery in select attributes

    I don't think this is possible, I've exhausted every option I can think of to output this sql in toplink. I've searched the web and this forum but found no info about it. If it's not possible please let me know and I will move on to something else.
    This is a simplified example of what I want to do in toplink:
    select r.name, (select count(*) from items i where i.request_id = r.request_id), r.comments from requests r where r.requestor like '%FRED%' ... etc
    I can get the subquery in the where clause fine, but I can't work out how to put it in the select part of the statement.
    Thanks for your help!

    Oh lookie at me, I'm replying to myself. Again.
    If you want a subquery in the select attributes then gosh darn it use a function. Create an oracle function that does the subquery and add it as an attribute with:
    query.addFunctionItem("numRequests", request.get("id"), "request_counter")

  • Load LiDAR data into Spatial 11g making use of Point Cloud Type?

    Dear all,
    from an aerial LiDAR scan I have approximately 226 million points, spread over 9 files. I would like to load them into Oracle Spatial 11g, making use of the new point cloud data type. I have the book "Pro Oracle Spatial for Oracle Database 11g" here and Appendix E explains how you have these two tables that together manage your point cloud. I find the example given in the book rather simplified though as they have only x, y and z and a row id colum. In addition to this I also have r, g, b and i (intensity) values.
    I was wondering if anyone could give me a hint on how to store all the information in one table and making use of the sdo_pc data type at the same time.
    Also, the example has the points already in a table, but I'd like to load it all directly from my files into the point cloud table (I know how to use sqlldr, but how do I get it into this point cloud table structure). What's the cleverest way to go about this?
    All ideas are greatly appreciated!!
    Regards,
    Bia.

    Hi,-
    Our LAS converter supports LAS 1.1 format.
    LAS version 1.0 has fewer entries for the data than LAS version 1.1 so you might just ignore those extra fields that donot exist in LAS 1.0.
    Therefore, i am expecting your data to be fine with our LAS to SDO_PC converter.
    Thanks

  • Problem using 'selected' attribute of dropDown component

    Valid Assumptions:
    1. Developer is not a novice
    2. Problem has been verified by third party
    3. Using Netbean 5.5 plus Visual Web Pack 5.5
    Problem:
    The 'selected' attribute of the webuijsf:dropDown throws 'Component Error'
    <webuijsf:dropDown... selected="#{address$CreateUI.addressFormBean.accessLevel}" />where:
    a. 'selected' is the object that represents the selection made from the available options
    b. 'accessLevel' is java.lang.String with get/setter methods
    ERROR:
    javax.el.ELException: javax.faces.el.PropertyNotFoundException: javax.el.PropertyNotFoundException: Target Unreachable, 'addressFormBean' returned null
         at javax.faces.component.ValueExpressionValueBindingAdapter.getType(ValueExpressionValueBindingAdapter.java:129)
         at com.sun.webui.jsf.util.ValueTypeEvaluator.evaluateValueBinding(ValueTypeEvaluator.java:138)
         at com.sun.webui.jsf.util.ValueTypeEvaluator.evaluateValueType(ValueTypeEvaluator.java:111)
         at com.sun.webui.jsf.util.ValueTypeEvaluator.getValueType(ValueTypeEvaluator.java:90)
         at com.sun.webui.jsf.util.ValueTypeEvaluator.getValueType(ValueTypeEvaluator.java:67)
         at com.sun.webui.jsf.component.ListSelector.processSelections(ListSelector.java:278)
         at com.sun.webui.jsf.component.ListSelector.getListItems(ListSelector.java:122)
         at com.sun.webui.jsf.renderkit.html.ListRendererBase.renderList(ListRendererBase.java:376)
         at com.sun.webui.jsf.renderkit.html.ListRendererBase.renderListComponent(ListRendererBase.java:168)
         at com.sun.webui.jsf.renderkit.html.DropDownRenderer.encodeEnd(DropDownRenderer.java:78)
         at com.sun.webui.jsf.renderkit.html.AbstractDesignTimeRenderer.encodeEnd(AbstractDesignTimeRenderer.java:40)
         at com.sun.webui.jsf.renderkit.html.SelectorDesignTimeRenderer.encodeEnd(SelectorDesignTimeRenderer.java:131)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         :Thanks in advance.

    What object type for dropdown's items? selected property's type has to match dropdown's value.

  • I cannot select radial filter points after I create them in Lightroom.  Anyone experience this issue before and what might be the solution?

    I cannot select radial filter points after I create them in Lightroom.  Anyone experience this issue before and what might be the solution?

    Press H to hide/show control points.

  • Point cloud and TIN data column types

    Hi,
    I am designing some tables using the new SQL Developer Data Modeler, and have added some columns which will store point clouds and TINs (both using the specialized Oracle data types). I have noticed in Data Modeler that the SDO_GEOMETRY data type is available to use as a column type, but the SDO_PC and SDO_TIN data types are not available for use. Or perhaps the column types for these data types are actually something else - perhaps integers (given that several tables may be used to store this specialized data)?
    Thanks,
    Matt

    Maybe try Forum: SQL Developer:
    SQL Developer

  • Merging(Align) two different point cloud data in Kinect Fusion

    Hi,
      I am now working in kinect fusion point cloud align from two different sensors.  Here is the code,
       bool success = volume.AlignPointClouds(sensor1PointCloud, sensor2PointCloud, 10, fusionColorFrame, out alignmentEnergy, ref currentMatrix);
    How to get the merged(Aligned) point cloud data.
    The above function (fusionColorFrame)  returns only integer data....Pls help me If any body know....
    Thanks in Advance.
    kirubha

    The api doesn't return a point cloud. The intent of the volume api is to integrate point cloud data into the internal reconstruction of Fusion. By calling the api, it will provide a Matrix that you can then multiply the points by to align the two.
    If the intent is to get a merged point cloud, then you might want to look into a point cloud library PCL.
    Carmine Sirignano - MSFT

  • Create Height field from 3D point cloud

    Hello,
    There is a VI called: Create Height Field.vi to craete surface to 3D picture control.
    "Converts a 2D array of values to a 3D height field and applies the height field to a 3D object that appears in a 3D scene."
    This should be perfect for me ( this function interpolates the whole surface) but, I have 3D  [x,y,z] point cloud, where the coordinates are not equally spaced. As I understad this VI can display point cloud with equidistant coordinates. How can I use this tool to display my data?
    I have tried the Create Mesh.vi to display my point cloud, but I really need the interpolated surface also. Could you give me some guide points where and how to do now?
    Thanks in advance,
    +++ In God we believe, in Trance we Trust +++
    [Hungary]
    Solved!
    Go to Solution.

    Hi D60!
    Sorry for the late reply.
    Is your problem still unsolved?
    If yes, I searched for some examples that use the Create Height Field VI.
    I only found one example code on Community: https://decibel.ni.com/content/docs/DOC-4765
    If your data points are not sampled on the same rate, you could use interpolation, to reach the same length.
    I guess the easiest way is to use the Mathscript node for this, like in this eaxmple: http://zone.ni.com/reference/en-XX/help/371361F-01/lvtextmath/msfunc_interpolate/
    Or this VI could be used for the same purpose: http://zone.ni.com/reference/en-XX/help/371361J-01/gmath/interpolate_2d/
    Please let me know, if my suggestions helped. If you have any questions, please don't hesitate to post them.
    Best Regards,
    Balazs Nagy

  • Is it possible to select multiple anchor points in CS6?

    Hi,
    I'm trying to select multiple anchor points of shapes across different layers by dragging over them, but nothing is getting selected.
    I use CC at work, and I've done it there, but I use CS6 at home and can't seem to do it.
    Thanks!

    I doN'T think it is possible to work on two different path at once.  I think you would need to merge the two shape layers and work on the resultant merged path.    You can target more then one shape layer and select some of the path and change them however the stay separate path and  all the point the the selected shape layers are highlighted
    CS6 top CC bottom note the difference is the path palettes  CS6 shows no paths in the path palette when more then a single shape layer is targeted where CC shows all path involved as separate paths.

  • Possible to Update Point Cloud?

    Experts -
    Is it true that there is currently no method to modify existing points or add new points to a Point Cloud?  If so, does that mean that we would have to reconstruct the entire point cloud using the sdo_pc.create_pc function if we wanted to modify exiting points or add new points?
    Thank you,
    - BDub122

    iPhone 5c has stuff which iPhone 4S do not, so....

Maybe you are looking for

  • How do I pass a null value to the reportDocument?

    I'm using CR 2008 and VS 2005.  I am using a stored procedure as the datasource for one of my report, which we run using the C# API.   The stored procedure is expecting a NULL in certain cases and I find I cannot pass a NULL with my current code: //

  • Can't move photos to iphoto 9.6

    I recently updated my mac to Yosemite and I can't seem to get my photos from my old iPhoto application to the iPhoto 9.6 that I had to download with the new IOS.  My MacBook is a 13 inch aluminum, late 2008 with a 2.4 GHz Intel Core 2 Duo processor. 

  • External Drive Not Working Properly

    I have a 30GB Lacie Drive I use to transfer data between my imac and my macbook (both are intel machines) - since upgrading to Snow Leopard, it no longer seems to be working properly. It lets me upload some smaller files onto it, but whenever i try t

  • Migration OS Win2008 under EPM 11.1.2.0

    Hi, I'm using EPM 11.1.2.0 on OS MS Windows 2008 Standard Edition SP2 64 bit like a production environment. On this server I have: Foundation Services, OHS, Essbase, Planning, RA Framework, FinReporting and WebAnalysis Services. This server hardware

  • Oracle Openworld 2007 moved from San Francisco?

    I was googling for Oracle Openworld 2007, and noted that OOW 2007 is not being held in San Fransicso this year: Oracle OpenWorld 2007 September27th-29th, Lalandia Why has it been moved from San Francisco? http://miracleas.dk/images/upload/MOOW07/MOOW