How to identify Path is a  Arc,Line, Rectangle, etc

I am using DLE API for Images extraction,
GIS images contains Layer basis,
It extract Raster image sucessfully, and other images show as a Path.
May i get some info regarding to identify Path has Arc,Rectangle,Line,curve...

Thanks All,
yes exactly its knows about lines,rectangles and curve.
I can create different structure of Path using addCurve(), addLine(Point Point) , addRect(Point Point, double Width, double Height) .......... APIs
now i want extract all those Path co-ordinate or Point and identify which is rectangle, Line , curve.......
I had lot of algorithmic analysis on the data.
but unable to identify........
Please may i get any clue......

Similar Messages

  • How do I remove signs indicating space, line shift etc.

    I must have done something stupid, for suddenly there are a lot of small devils, that indicate each space, forced line shift etc.
    How do I get rid of them, before they drive me crazy?
    Thank you very much

    Oh, now I know why:
    I have programmed Windows to start InDesign when I press ctlr-alt-i, sorry

  • How to identify open schedule line item?

    Hi,
    I have a requirement for identifying open schedule line items. I want to identify any indicator or any field in any table which will tell me that the schedule line item is complete. Can anyone tell me how can I know that?
    Ex. Sales Order 1 has 3 materials (line items) in it A, B & C.
           For A the quantity is 10 and for which 3 schedule line have been created.
           Out of the 3 schedule lines, 1 schedule line item is complete that is the delivery has been done and the rest 2 are open.
    For B and C there are 4 & 5 schedule lines created and all are open.
    How can i identify that total 12 schedule line 1 is completed and 11 are open.
    Please suggest tables, field names / indicators.
    Regards,
    Vishal

    Hi Vishal,
    You can not identify the open line items directly, rather you have to calculate the delivered quantity and copmare it with the ordered qty for each line item. The ordered qty can be idenitfy from the table VBEP and the deliverd qty can be found out by calling the function RV_SCHEDULE_CHECK_DELIVERIES.
    Follow the link for more details to calculate the delvierd qty.
    http://scn.sap.com/thread/279862
    Rgards,
    Rutvik.

  • How to configure Team explorer 2010 command-line tool in Mac x os. configure shell or system path to include the folder to which (TF client) unzipped archive available.

    How to configure Team explorer 2010 command-line tool in Mac x os.
    Hot to configure shell or system path to include the folder to which (TF client) unzipped archive available. I am new to Mac X OS. Please help.

    Dmitry,
    Thanks for the great writeup!
    I think I've got my universal instant client libraries built correctly.
    I too am using MacBook Pro but I'm getting stuck at building the 32 bit oci8.so
    First problem is my pecl download (ver 1.4.1) did not contain a "configure" file so ./configure failed.
    I used configure from /sw/....... to try to continue.
    Second problem. Using existing configure from /sw/.... I used an appropriate variation of your example command
    (./configure --with-oci8=instantclient,/usr/local/oracle/instantclient_10_2 && make).
    Things look like everything ran OK but The output does NOT include an oci8.so file
    So I guess my question is: Which "configure" should I be using? And if it is not the one on the system under /sw/...
    where would I get it since it doesn't come in the pecl download?

  • How to identify a blank new line in an open txt file

    hi all
    i'm reading a file, and i have to identify all the blank new lines.
    does anybody can help me?
    thanks to all !!
    follows a sample of the code i'm writing:
    fHandler := UTL_FILE.FOPEN(FileAttuale.Oracle_Input,FileAttuale.Nome_File, 'r');
    -- Lettura file
    BEGIN
    WHILE 1 < 2 LOOP
    Line_Number := Line_Number + 1;
    -- Leggo riga per riga finche non viene lanciata la eccezione NO_DATA_FOUND
    UTL_FILE.GET_LINE(fHandler, buf);
    if (buf is a blank new line) then
    end if;
    END LOOP;
    END;
    documentation says:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_file.htm
    Because the line terminator character is not read into the buffer, reading blank lines returns empty strings.
    but if i try
    IF (BUF ='') THEN
    do something
    END IF;
    IF (BUF is null) THEN
    do something
    END IF;
    don't do nothing!!
    thanks all
    Edited by: Massimo T. on 4-mag-2011 12.05

    13 is ^K also known as Vertical Tab No Massimo, it's ^M, that is Carriage Return : you have to consider Dec column, since ASCII function returns the decimal representation in the database character set of the first character of char.

  • How to identify BTE's relating to a transaction?

    Can anyone pls tell me how to identify BTE's related to a transaction...or rather what are the BTE's related to the transaction CM01,CM02,CM03,CM04?

    Example Business Scenario for Business Transaction Events
    Company A would like to copy the group key field from the vendor master into the allocation field on all the line items within a vendor invoice and payments, including the vendor lines. This requirement assumes only one vendor is posted to in a document.
    To accomplish this requirement, Company A will use the Business Transaction Event 1130, Post Document: SAP Internal Field Substitution.
    1. IMG Menu Path: Financial Accounting Financial Accounting Global Settings Use Business Transaction Events Environment Infosystem (Processes).
    2. Find the correct Business Event. You are updating a field, so you select the Processes Info System instead of the Publish and Subscribe Info System.
    3. Execute the search with the defaults.
    4. Find the correct interface for updating a document: Post Document: SAP- Internal Field Substitution
    5. Put your cursor on the event and click on the Sample Function Module button.
    6. You are now in transaction SE37 – Function Builder. This is the function module (sample_process_00001130) you will need to copy into a "Z" name function module for your coding
    7. Click on the Copy button.
    8. Enter the "Z" function module name in the To Function Module field
    9. Enter a Function Group. If you need to create a "Z" function group, go to transaction code SE37 and follow menu path: Go to Function Groups Create Group. A function group is a logical grouping of function modules, and the ABAP code is generated for function groups. You will be prompted for a development class and transport when creating the function group.
    10. In Function Builder (transaction SE37), enter the new "Z" function module. Click on the Change button.
    11. The system will default into the source code screen where you may enter your ABAP code.
    12. Notice the tables available for the code. Additional tables may be declared if necessary.
    13. Enter the following source code
    tables: lfa1.
    data: z_groupkey like lfa1-konzs.
    z_groupkey = ' '.
    loop at t_bseg.
    check for vendor lines. If one is found, read the vendor master and
    retrieve the group key field.
    if t_bseg-koart eq 'K'.
    select single konzs from lfa1 into z_groupkey
    where lifnr = t_bseg-lifnr.
    endif.
    Move the group key field into all line items allocation field.
    loop at t_bsegsub.
    t_bsegsub-zuonr = z_groupkey.
    modify t_bsegsub index sy-tabix.
    endloop. "t_bsegsub
    endloop. "t_bseg
    14. Save the function module.
    15. Back out to the main Function Builder screen by clicking on the green arrow button.
    16. Activate the function module by clicking on the Activate button
    17. Assign the function module to the event in the IMG: Financial Accounting Financial Accounting Global Settings Business Transaction Events Settings Process Function Modules of an SAP Appl.
    18. Hit enter past the warning messages that this is SAP data.
    19. Click on the New Entries button.
    20. Enter the process for your interface. In your example it is 00001130.
    21. Enter the country the interface is valid for. If it is valid for all countries, leave this field blank.
    22. Enter the application the interface should be called for. If it should be called for all applications, leave this field blank. Please note that not all integrated transactions are programmed to go through these interfaces! You will need to test to find out!
    23. Enter the new "Z" function module
    24. Save the settings. At this point you will be prompted for a CTS number for the configuration change.
    25. The Business Transaction Event is complete! You are ready for testing.
    http://help.sap.com/saphelp_erp2005/helpdata/en/3b/7f3e8be57c11d1951f0000e82dec10/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/ad/fc5a4064b4ef6fe10000000a1550b0/frameset.htm
    Example
    http://fuller.mit.edu/user_exits/business_transaction_event.htm
    have a look here too:
    Re: Open FI
    <b>Reward points</b>
    Regards

  • How do I back up the music and apps etc. I restored my computer and I reinstalled iTunes, I was told something about a terminal command line, what does that mean? Please help

    How do I back up the music and apps etc. I restored my computer and I reinstalled iTunes, I was told something about a terminal command line, what does that mean? Please help

    - Transfer iTunes purchases to the computer by:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    - Transfer any other music by using a third-party program like one of those discussed here:
    Copy music
    - Connect the iPod to the computer and make a backup by right clicking on the iPod under Devices in iTunes and select Back Up
    - Restore the iPod from that backup. The restore will also update the iOS.
    Note that the backup that iTunes makes does not include synced media like apps and music
    Are you sure you have a 3G iPod? A 1G iPod can only go to iOS 3.1.3
    See:
    Identifying iPod models

  • How to identify the variable processing type

    Hi Experts,
    How to find the details of the variable whether it is filling with user exit or replacement path
    Say i have a variable xxx , how to identify the above details.
    Thanks,

    use RSZGLOBV table in VNAM give your variable and VPROCTP will give you processing type

  • How to identify if a data node exist?

    Hi,
    If a form is binded to a schema, and when the xml is supplied to the form how to identify an optional node in the xml is available or not.
    for example if I have a XML input like below
    <root>
         <childTable>         
              <childRow>
                   <child1>
                   <child2>
              </childRow>
              <childRow>
                   <child1>
                   <child2>
              </childRow>
         </childTable>
    </root>
    is it possible to identify if the childTable node is present in the xml input.
    The code xfa.datasets.data.root.childTable if used fails when the childTable is not present in the input xml?
    Please let me know if there is a way to identify if the input xml has  a specified node. Assuming that we know the path of the node in the xml structure.
    Regards -
    Ashok Deivaisgamani

    Hi Ashok,
    Could you please try this?
    var nodeCheck = xfa.resolveNode("$record.childTable");
    if(nodeCheck != null)
         app.alert("Node Exists");
    else
         app.alert("Node Not Avaliable");
    Thanks,
    VJ

  • How to Identify the Same Characters in 2 Different Strings

    Hi All,
    I am requiring a suggestion on how to identify the same characters in 2 different Strings, for example:
    String str1 = "hello";
    String str2 = "llheo";
    Both Strings contain the same characters, but in a different order, so what would be the best technique to verify t that both Strings indeed contain the same characters?
    I was personally thinking along the lines of using the class, java.util.regex.Pattern?
    Any thoughts would me much appreciated. Thanks

    I would instead sort the characters, and then compare
    the sorted data.
    I'm fealing generous
        private static boolean anagram(String left, String right)
            if (left.length() != right.length())
                return false;
            char[] leftChars = left.toCharArray();
            char[] rightChars = right.toCharArray();
            Arrays.sort(leftChars);
            Arrays.sort(rightChars);
            return Arrays.equals(leftChars, rightChars);
        }

  • How to identify which videos

    I took a dozen or so short clips of an event. I know which three I want to combine and edit. But I can't figure out how to identify which they are in imovie in order to put those clips in my project. It shows them all as consecutive clips or frames, without file numbers or names.

    I'll try to explain better.
    A dozen clips or videos, 1 min to 5 min in length. In one case all along a mountain road.
    I want to produce a 5 min project or video with the best parts of 3 of those 12.
    All 12 have thumbnails almost identical (the dashboard across the bottom, roof line at the top)
    I only want to start editing the 3, not put all 12 in.
    How do I identify those 3?

  • How to identify whether a multiline container is empty or not in Workflow?

    Hi Experts,
    Does any1 know how to identify whether a multiline container
    is empty or not in a workflow?
    Thanks.
    Points wil be rewarded.
    Vincent

    Dear Vincent,
    You can get the report name for the Business Object which contains the multi-line container, from the BO itself. Put a break-point in the report and try executing the workflow. The multiline container is like an internal table in the report. See if the internal table is initial while execution.
    Regards,
    Michael.

  • How to identify manual journal entries

    Hello,
    In the GL tables, GL headers and GL Lines, how can we identify if a journal entry is an automated entry or a manual entry.
    That is, entries can be made into the General ledger through Interface programs or other import methods. We describe them as Automated.
    And if journal entries are made directly into the GL, how to identify them against the automated ones.
    I need to know from a backend perspective, i.e which column in which GL table specifies if an entry is a manual or an automated journal entry.
    For Ex: In the GL_JE_Headers table, the JE_Source and the JE_Category mentions from where the source is.
    Like, JE_Source is Payables and Je_Category can be Purchase Invoices or Payments.
    Looking at the above line, we can identify that this is an automated entry from Payables.
    How to identify the manual entries.
    Your help is greatly appreciated.
    Thank you
    Bob

    Hi Bob,
    In the GL_JE_HEADERS table, column JE_SOURCE would have value as "MANUAL", this indicates that journal is created manually in General Ledger module and not imported from subledgers ....There is no indicative column for us to identify whether it is Automatic or Manual .... values such as MANUAL and RECURRING indicates entries that were created directly in General Ledger Module...
    Also in the GL_JE_LINES table, for GL_SL_LINK_ID and GL_SL_LINK_TABLE coumns, the column values would be NULL/Blank, since these columns normally contains reference to the base transaction in the subledger ....for a manual transaction there wont be a reference to subledger, hence they would remain as blank ..
    Regards,
    Ivruksha

  • How to identify default browser through a 'C' program on solaris 8

    I have a requirement to display a html page in the default browser installed on solaris 8 machine through a C program.
    through a C program,
    1. How to identify the default browser installed on a solaris machine?
    2 How to get the path of the default browser installed on solaris machine?
    thanks in advance.

    Thaks a lot for the help,
    When Internet Explorer is installed on solaris as a default browser, it does not change
    the user-prefs.dt file. But still when a HTML document is double clicked from the file manager of solaris CDE, it opens the HTML page in Internet Explorer.
         Internet Explorer copies a file called IE.dt in /etc/dt/appconfig/types/C. Just by copying a file how does the CDE file manager is able to open any html file in Internet Explorer??
         Further the installation path of the Internet Explorer is not fixed as that of netscape. Our application need to display the HTML help in user's default browser.
    On Windows-NT this can be implemented just by passing the html file as an argument to a win32 API ShellExecute(FindExecutable can also be used.
    How this can be achieved on solaris??
    Regards,
    Atul.

  • How to identify XML gateway patch version in R12 ?

    Hi,
    how to identify XML gateway patch version in R12.1.3? Which is the latest version available for R12.1.3
    Regards

    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> @ecxver.sql
    ECX_UTL_XSLT_DIR Profile :
    /usr/tmp
    ECX_OAG_LOGICALID Profile :
    ECX_SERVER_TIMEZONE Profile:
    ECX_SYS_ADMIN_EMAIL Profile:
    ECX_XML_VALIDATE_FLAG Profile: Y
    ECX_XML_MAXIMUM_SIZE Profile : 2000000
    utl_file_dir :
    /usr/tmp, /usr/tmp,
    /busdata/dfop/nca1/db/tech_st/11.1.0/appsutil/outbound/dfopnca1_oncerpd4,
    /usr/tmp, /busdata/dfop/nca1/db/tech_st/11.1.0/ccr/state
    Oracle XML Developers Kit 11.1.0.7.0 - Production
    Parser Version Ok
    XML Gateway Status Summary
    XML Parser Version OK
    All ECX Objects Valid? OK
    All XML Parser Objects Valid? OK
    OTA Running? N/A*
    Total Messages on Outbound Queue 0
    OTA Msgs on Outbound Queue 0
    Others Msgs on Outbound Queue 0
    Messages on Inbound Queue 0
    *Please use the ECXOTAPing.html as described in the Testing Oracle Transport
    Agent section of the User's Guide
    End of Summary
    Service Component Control Event Subscriptions
    EVENT_NAME RULE_FUNCTION OUT_AGENT STATUS
    oracle.apps.ecx.inbound.message.process [email protected]. MICHELIN.COM Not Defined ENABLED
    oracle.apps.ecx.inbound.message.process [email protected] N.COM Not Defined ENABLED
    oracle.apps.ecx.inbound.message.receive [email protected] N.COM Not Defined ENABLED
    oracle.apps.ecx.inbound.message.receive CLN_XMLG_EVENT_HANDLER_PKG.CLN_XMLG_SET [email protected] Not Defined ENABLED
    NC.MICHELIN.COM
    oracle.apps.ecx.inbound.message.receive CLN_XMLG_EVENT_HANDLER_PKG.CLN_XMLG_EVE [email protected] Not Defined ENABLED
    .MICHELIN.COM
    oracle.apps.ecx.inbound.message.receive CLN_XMLG_EVENT_HANDLER_PKG.CLN_XMLG_EVE [email protected] Not Defined ENABLED
    .MICHELIN.COM
    oracle.apps.ecx.inbound.message.receive [email protected]. MICHELIN.COM Not Defined ENABLED
    oracle.apps.ecx.processing.message.callb [email protected] LIN.COM Not Defined ENABLED
    ack
    oracle.apps.ecx.processing.message.error CLN_XMLG_EVENT_HANDLER_PKG.CLN_XMLG_PRO CESSING_ERROR_F@DFOPN Not Defined ENABLED
    CA1.ONC.MICHELIN.COM
    oracle.apps.ecx.processing.message.error [email protected] LIN.COM Not Defined ENABLED
    oracle.apps.ecx.processing.message.error [email protected] LIN.COM Not Defined ENABLED
    oracle.apps.ecx.processing.message.error [email protected] N.COM Not Defined ENABLED
    oracle.apps.ecx.processing.notification. [email protected] LIN.COM Not Defined ENABLED
    send
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Regards

Maybe you are looking for

  • Problem deploying related EJBs in separate JARs

    I have 2 entity EJBs, User and Address, in separate JAR files. The User bean has business methods to get and set its related address as follows: void setAddressPK(AddressPK newAddress) throws java.rmi.RemoteException; AddressPK getAddressPK() java.rm

  • File to ile using udfs

    hi can any one provide me sample file  to file scenarios using udfs regards ram

  • My login screen is now zoomed in and I cannot change it.

    My login screen has all of a sudden become zoomed in.  But once I'm logged in, the screen size/zoom is back to normal.  What is going on here?

  • Expression language to determine Mobile Device in spaces

    Sr#-3-6785317771 Ver- PS5 Customer wanted to switch our navigation on webcenter spaces based on the device. We tried to use the below EL, but it cannot differentiate between tablets and phones. #{requestContext.agent.platformName Eg: Android tablet a

  • Attribute value is not valid

    After executing an RFC, I want to get a table of elements that is passed as the Output. As soon as I try to get the first element of the Output table, via xxxNode.getElementAt(index), I receive this error: Attribute value is not valid for attribute '