How can I move and replace spatial data to other table ?

Hello,
I have a Global Map table1 and other Local Map on table2, Their scale is 1:100000 and 1:5000 .
Now I want to move and replace table2 into table1 , make the new map look without gap
how can i do ?

Hi Yacus,
You have 2 different scales. In my opinion you should NOT use both in one table because the data quality may be different!
You want to insert your table2 data into table 1? This without problem. But when you try to test for identical geometry parts you will not succeed, because of generalization from 1:500 to 1:100000.
Can you exactly describe, what you want to do (which data, what to achieve)..
reghards, Andreas

Similar Messages

  • How can I resize and reposition the Date Created window for All windows?

    When setting view options for a finder window set to list view, I cannot get column resizing or positioning to hold. When making those changes, the option for "All Windows" automatically shifts to "This window only" and it then does not hold.
    How can I resize and reposition the Date Created column for All WIndows?

    Hi Harmz,
    Try dragging this file to the Îesktop & reboot...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist

  • How can I move and scale my photos

    How can I move and scale my photos so that I can use them for wallpaper?  After update, I'm no longer able to do this as much as I need to.  They just pop back to their original size or larger.

    You will either need to turn Settings > General > Accessibility > Reduce Motion 'on', or create a higher resolution versions of your images
    From http://support.apple.com/kb/HT5595 :
    When the parallax effect is on, you may notice the following:
    Wallpaper, icons, and alerts shift slightly as you move your phone.
    When you set a wallpaper in Settings > Wallpapers & Brightness, the photo or image will be slightly zoomed and can't be scaled to fit the screen.
    If you zoom in, you will need to rescale your wallpaper to fit to the screen. You can't rescale certain photo formats, including landscape or square images.

  • How can I remove and replace a purchased app that is malfunctioning.

    How can I remove and replace a purchased app that is malfunctioning.?

    Delete the App and redownload it...
    Touch the app and hold your finger down until all the apps start to jiggle.
    You will see a circled "x" in the upper left corner.
    Tap it to delete an app. When done press the Home button.
    ( You cannot delete any pre-installed iOS app.)
    http://www.apple.com/support/ipad/applications/
    Download Past Purchases
    http://support.apple.com/kb/HT2519
    Log into iTunes using the account the Purchase was made with... Click on Buy... and a notice will come up saying you already have it... do you wish to download it again... Click Yes...

  • How can i find and replace xml tags?

    Hi, i am using xml in my workflow and want to be able to remove certain tags if they contain particular text.
    here is an example of my xml structure…
    <entry>
        <name>DEFAULT</name>
        <tel>DEFAULT</tel>
        <address>DEFAULT</address>
    </entry>
    I am using this initial structure to set the paragraph styles to be followed when the xml data is imported.
    This leaves DEFAULT in place wherever an entry doesn't have any content for that field.
    I want to be able to import my XML then run a script that removes any tags that include DEFAULT, - I need the entire xml tag to be removed not just the text, if i do a normal find and replace it will only remove the text not the tags which is causing problems with styling. I also want to remove the end of para/return (^p) that i've placed at the end of the line. So it would be the same as opening up story editor and removing the content + tags + hard return in there, but i want to automate the process…
    So i think this is what i need to search for in each case
    "<name>DEFAULT</name>^p"
    and i want to replace it with nothing ""
    Can this be done through scripting (ideally javascript)?
    I have a little knowledge of javascript but am not sure how to search and target that kind of string in indesign...
    using indesign cs5
    many thanks

    Hi,
    Script should do it in two steps:
    1. find all occurences of i.e. ">DEFAULT<"
    2. remove whole paragraph which is a found_text's container.
    For example this way -JS - (a textFrame filled with your text should be selected) :
    var mStory = app.selection[0].parentStory;
    app.findTextPreferences =  null;
    app.findTextPreferences.findWhat = ">DEFAULT<";
    var myF = mStory.findText();
    var count = myF.length;
    while (count--)
         myF[count].paragraphs[0].remove();
    rgds

  • How can I convert and replace SDII files to WAV files in a song?

    I have to convert some audiofiles in a song from 16 to 24 bit and from SDII to WAV. I choose the option "Copy/convert files" in the audio window and everything is converted well.
    In my audio window I have now 16 and 24 bit files and WAV and SDII files.
    But how can I replace those new files in my song?
    On logic 6.4.3 I could after "Copy/convert files" choose the option "Change file reference(s) in the song to the audiofile(s) that have been copied", but in my new Logic 7.1.1 I don't have that possibility anymore.
    What am I'm doing wrong? I'm copying my new audio in new folders.
    G5 dual 2,7   Mac OS X (10.4.3)   Protools HD3 Accel, 192, 96i (2x)

    set sample rate to original sample rate

  • How can I search and replace fonts?

    iOS 7 doesn't support the Adobe workhorse fonts I've most relied on for years, and arbitrarily changes them to iOS built-in fonts when I link my standard documents and templates to the iPhone, via iCloud. There's no apparent logic to how it does this; a Pages document in Minion Pro, a serif font, gets changed to the sans-serif Helvetica. Myriad Pro may come out in Times New Roman. I accept that the iPhone's limited number of fonts makes translation necessary, but does Pages offer a way in which I can search and replace inappropriately substituted fonts for more logical alternatives?

    You noticed the first one yourself: the Found item list seems to randomly jump around the document -- I believe you are correct in your observation it may be due to the object construction order. That tells me, by the way, something about your lot numbers that tou didn't mention: your text is not one continuous long threaded story, but it's all or partially in disconnected etxt frames. The Found list does return everything inside a single story in the correct order, but it goes over each separate story in the order they were constructed.
    The only solution is to gather all of your lot numbers, *re-sort* them according to the page number they appear on (and some sort of Worst Case Scenario is when you might have more than one lot number frame per page; in that case you also need to sort by textframe, top to bottom -- yet even worse is if you also may have these textframes side by side!).
    Only then you have a reliable counting order.
    This isn't too bad. We can just extend the method I offered for sorting top-to-bottom/left-to-right in Re: Working around the frame selection order issue in CS 4 and make it also include page numbers:
    function byPageYX(a,b) {
        var
            aP = a.parentTextFrames[0].parentPage.index,
            bP = b.parentTextFrames[0].parentPage.index,
            aY = a.baseline[0],
            bY = b.baseline[0],
            aX = a.horizontalOffset[1],
            bX = b.horizontalOffset[1],
            dP = aP-bP,
            dy = aY-bY,
            dx = aX-bX;
        return dP?dP:(dy?dy:dx);
    myResults.sort(byPageYX);
    Or something like that.
    As for actually implementing the above I cannot be of any help with Applescript.
    Once we're dealing with sorting I think you're much better off in Javascript anyhow.

  • I cant change my apple ID because my linked e mail address is corporate and is not longer active, how can I delete and replace for mew one

    Does anyone knows how can delete the current I cloud ID form my I phone 5, because the linked e mail is not longer active, because it was a corporate account and i am not working with that company.

    Go to Settings>iCloud, turn off Find My iPhone and provide the password when prompted.  Then change the primary email address associated with the ID as explained here: Change your Apple ID.  After making the change, save any photo stream photos that you want to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow), then tapping Save to Camera Roll.  Then go to Settings>iCloud, tap Delete Account, choose Delete from My iPhone when prompted (your data will still be in iCloud), then sign back in with the updated ID.

  • How can I find and replace multiple words at once?

    I need to be able to find and replace words into queens English. For example, I need to replace all instances of "color" with "colour," "tire" with "tyre" etc.
    I'm new to scripting, so simple answers would be appreciated :)

    Hi hobs707,
    Please use the below code for your required output:
    Replace ("color", "colour")
    Replace("tire", "tyre")           
    //Replace("hobs707", "hobs007")     just copy and paste and edit the contents as your wish
    function Replace(input, output)
    app.findTextPreferences = app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences.findWhat = input;
    app.changeTextPreferences.changeTo = output;
    app.activeDocument.changeText();
    If the above answer is correct please provide Correct Answers for me.
    Regards
    Beginner

  • How can i save and retrieve blob data through forms and reports...

    I have blob data type column and I want to save word, html, gif
    document in oracle database through forms 6 and retrieve the
    data into forms and reports.
    Details : I want to open .doc,.html,.gif file through a button
    and save it ..and i want retrieve the data into text item same
    in reports....
    If anybody have the answer then send me at
    [email protected]

    use ole container
    initialize the container with the filename (doc or gif)
    Edited by: arshid on Feb 8, 2009 1:57 PM

  • [CS6] How can I copy and paste a rectangle or other shapes?

    [Photoshop CS6]
    I want to copy and paste a simple rectangle.
    I drawed a rectangle with the Rectangle Tool.
    I marked it with the Move Tool.
    If I go to Edit->Copy and then to Copy->Paste
    I see still only one rectangle. Could be
    one is overlayed by the other but I don't
    know how to separate them afterwards.
    So I tried to move the first rectangle to another place
    before click on Edit->Paste.
    I then get a copy of the first rectangle. But the problem is that they
    react as they would be one shape and not as two differnt shapes.
    I can only move the two rectangles as they would be one shape
    and they are also marked as they would be one shape.
    And I can only mark them as they would be one rectangle.
    But I want two independent rectangles.
    How can I in Photoshop CS6 copy and paste rectangles or other shapes so
    that the copy is independent of the original shape?

    Hi there,
      You can have both copies in the same shape layer, but you will not be able to move them as separate objects anymore. To merge them into the same shape layer select both layers in the layers pallete by holding down CTRL and clicking on a PC or holding down Command and clicking on a Mac:
      Then click the Panel menu in the layers pallete:
      Then choose Merge Shapes from the pop up menu that appears:
      And that's it! Now both shapes will be in the same shape layer.
    I hope this helps! Let me know if you need further clarification or if you have any other questions. : )

  • How can i move my game centre data from my old account to another new account??

    I want to tranfer my apple id date to another apple id. Because i was using my moms Apple id.. &amp; now i have created my own new apple. So now i want to move my all game centre, icloud data to my new email. Is that possible to move my data from my moms apple id to my apple id.??

    iTunes: How to move your music to a new computer:
    http://support.apple.com/kb/HT4527?viewlocale=en_US
    This is our resident iPhoto guru, Terence Devlin's, advice:
    You can move your iPhoto Library to an external disk pr new Mac:
    1. Quit iPhoto
    2. Copy the iPhoto Library Folder as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.

  • How can I search and replace the order items appear in the document?

    Here is my script. I am trying to replace instances of a text pattern (Lot ^9^9^9^9^9) with an auto incremented number Lot 1, Lot 2, Lot 3, etc... I believe this script produces unexpected results becuase the search result is ordered by document construction. The first item in myfounditems is the last item added to the document (which is on the last pages of the document), the second item in myfounditems is the next to last item that was added to the document (which was moved to a middle page in the document). The net result is that instead of having the first item on the first page being Lot 1) and the item directly below it being Lot 2), my document is a hodgepodge of Lot numbers is a seeminlgly random order. Any thoughts on how to fix this?
    tell application "Adobe InDesign CS5.5"
      --Clear the find/change preferences.
              set find text preferences to nothing
              set change text preferences to nothing
      --Search the document for the string "lot".
              set find what of find text preferences to "Lot ^9^9^9^9^9)"
      #set change to of change text preferences to "Lot " & lotnum & ")"
      --Set the find options.
              set case sensitive of find change text options to false
              set include footnotes of find change text options to false
              set include hidden layers of find change text options to false
              set include locked layers for find of find change text options to false
              set include locked stories for find of find change text options to false
              set include master pages of find change text options to false
              set whole word of find change text options to false
              tell active document
                        set lotnum to 1
                        set myFoundItems to find text
                        repeat with foundItem in myFoundItems
                                  set contents of object reference of foundItem to "Lot " & lotnum & ")"
                                  set lotnum to lotnum + 1
                        end repeat
              end tell
    end tell
    display dialog ("Numbered " & (count myFoundItems) & " lots in this document. Next starting lot number is " & lotnum & ".")

    You noticed the first one yourself: the Found item list seems to randomly jump around the document -- I believe you are correct in your observation it may be due to the object construction order. That tells me, by the way, something about your lot numbers that tou didn't mention: your text is not one continuous long threaded story, but it's all or partially in disconnected etxt frames. The Found list does return everything inside a single story in the correct order, but it goes over each separate story in the order they were constructed.
    The only solution is to gather all of your lot numbers, *re-sort* them according to the page number they appear on (and some sort of Worst Case Scenario is when you might have more than one lot number frame per page; in that case you also need to sort by textframe, top to bottom -- yet even worse is if you also may have these textframes side by side!).
    Only then you have a reliable counting order.
    This isn't too bad. We can just extend the method I offered for sorting top-to-bottom/left-to-right in Re: Working around the frame selection order issue in CS 4 and make it also include page numbers:
    function byPageYX(a,b) {
        var
            aP = a.parentTextFrames[0].parentPage.index,
            bP = b.parentTextFrames[0].parentPage.index,
            aY = a.baseline[0],
            bY = b.baseline[0],
            aX = a.horizontalOffset[1],
            bX = b.horizontalOffset[1],
            dP = aP-bP,
            dy = aY-bY,
            dx = aX-bX;
        return dP?dP:(dy?dy:dx);
    myResults.sort(byPageYX);
    Or something like that.
    As for actually implementing the above I cannot be of any help with Applescript.
    Once we're dealing with sorting I think you're much better off in Javascript anyhow.

  • My application disk is full, how can I move libraries to my data disk?

    My 250GB applications drive is full. I have a 2TB drive I use for data. I am wondering if I can move some of the libraries from I tunes or iphoto to the 2TB drive or are there other things I should be doing to manage the space?

    Hello Jkw2676,
    This can, indeed be done to alleviate the load on your boot volume.
    iPhoto: How to move the Library folder to a new location
    http://support.apple.com/kb/HT1229
    iTunes for Mac: Moving your iTunes Media folder
    http://support.apple.com/kb/HT1449
    Cheers,
    Allen

  • How can we iterate and retrieve the data from the slices ?

    Hello,
    All is said in the question...so..
    Thanks in advance.

    Hi,
    try with the info from the following link I think it'll be helpful:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/f6/f856d2469c11d4aa1100a0c9430730/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/f6/f856d2469c11d4aa1100a0c9430730/frameset.htm</a>
    Regards, Violeta

Maybe you are looking for

  • In BSP-HTMLB what is the code for auto refresh.?

    Hi friends, In BSP-HTMLB what is the code for auto refresh.? Means i gave the input every 2 minutes once my output should get refresh. So what is the code in bsp-htmpb? Moosa

  • ODS in Generic Data source?

    Dear Friends, I need to do a generi extraction from a view(2 tables). This is is a transactinal extraction. How can I take a decision weather I have to build ODS or not. Because we know from. 3.x onwards, The delta is enabled for Generic. What is the

  • Setting up BI on two seperate servers

    Hi We are currently on NW2004s SP9. The enterprise portal is installed on a seperate server than the BW server. What is required now is that I set up a connection between the two servers. I need to set up business explorer on the enterprise portal, b

  • Unable to open or import .swf into flash CC IDE

    hello, since I installed flash CC yesterday, I am unable to import .swf file into my .fla neither open .swf file in flash IDE. SWF extension is even not listed in list of supported files (I did all this normally in CS6 and before). When I try to open

  • How to apply HotFix 3 for AppV 4.6 SP2?

    My aim is to use AppV 4.6 SP2 HF03 Sequencer & Client? I've already installed 64-bit AppV 4.6 SP2 Sequencer in my Machine where version in ARP is 4.6.2.24020  & I've downloaded the HF03 from the URL below, http://support.microsoft.com/kb/2873471/en-u