PS CS Technique Merge 2 Maps

I have 2 or more World Maps (tiff images) whose backgrounds are essentially the same as I add more maps to the pile.
Each map shows who's visited my artsite, and I'd like to merge the collection of maps to show all visitors. They change from month to month, as my map marker only saves the most recent 100 visitors.
I've tried various things with varying success ... for recent example, link to my artsite and look down on the main page for Recent Visitor Map.
Anyone have a technique that works well? nails it?
Need to line up the maps, some being bigger than others, depending on how I saved them, cut and crop. In the future, this could be standardized.
Hints welcomed.

A quick search using the terms
free website visitor maps
found this:
http://www.niftymaps.com/
From the FAQ:
Are there any custom map designs?
Those that have more than 20,000 friends or 100,000 markers on their map will be able to have a special custom map designed. Just let us know and we will get right to work. You will not have to worry about losing any of your current markets either because they will all be transferred to the custom design.

Similar Messages

  • Automatic merging of map files in RoboHelp?

    [Hope this isn't a double post; my first attempt ended in
    network error and forum doesn't seem to have that post]
    My group is charged with developing a help system using
    RoboHelp 7. Output type will be WebHelp. The interface between
    context-sensitive Help system and the target application will be a
    single project's output and a single map file. The plan for help
    development is to divide the work up into multiple layers of
    projects. The final output will be the result of multiple project
    merges from the bottom layer up.
    RH7 enables this methodology with the WebHelp merge
    module...except that it doesn't automatically merge sub projects'
    map ID files (individual BSSCDefaults.h) into the master project's
    map ID file BSSCDefaults.h. I can use a different name for the sub
    projects' map files and import them into the master project, but
    this still does not result in the master's map file being modified.
    The map IDs remain dispersed across the multiple map files within
    the master project.
    Is there a way to get an automatic concatenation of map ID
    files?

    Thanks for the suggestion. I was hoping that the answer would
    be other than that it's a manual procedure outside of RH7, but
    that's the conclusion given my previous [admittedly brief]
    searching within this site and thinking more about the RH paradigm
    (as explained in the Grainge article as well as the other Adobe
    articles).
    For now, I'm going to have the team use the following process
    while we're shaking out our development methodology:
    - each author follows the established naming convention for
    Topic IDs and use his/her assigned map number range when creating
    map IDs which should guarantee that the IDs are unique across all
    projects
    - each author will export his/her projects' map file (for
    java applications) to a subfolder within their project
    - rename the resultant BSSCDefaults.properties file to a
    globally unique filename
    - copy that project-unique properties file to the specified
    folder
    - one person/admin will concatenate the individual properties
    files into a single file to be used by the application developers
    Comments?
    ayf

  • BPM: Messager Merge - Transformation Mapping Problem

    Hi,
    I tried an eg for time bound message merging (rather adding the items in the message).
    I am using a single datatype/message type.
    I was able to do the message mapping/interface mapping test by changing the source by making it 0 to unbounded and on the target I have same message type.
    This test was successful.I went ahead with the creating the scenario .I used a file adapter for picking up a file. The message monitor shows it is picked it and sent to the bpm.
    but the bpm part failed I checked in bpe monitor.It just says the mapping failed(transformation step).prior to which there is a receive step and container operation step which I used it for append the message .these are under a block and this block has a infinite loop for collecting the messages.There is a exception thrower(control step) which is for 2 minutes.this handled by a exception handler.and I guess my file was collected and send to the transformation step after this.but the thing is it never seems to appended since the two files are shown as two seperate error messages in transformation rather than as single ...
    Can somebody tell what could be the problem/where to look for the file.
    THnks

    I am getting more and more sure that the problem is at the block entry only...becoz i checked with direct entry to loop with a counter as loop breaker.it entered the loop and added the lines to the message with multiple lines.and once it hit the counter it came out and did the transformation successfully and sent it to the target system.
    when i add the block it fail right at the block entry for the first message after that all the messages show the green flag clicking on pe would show an empty queue...
    I guess the only step happening before the block is the correlation key creation i amn't sure if this is giving  some problems..
    NOW FOR THE BPM Steps....
    1.I created the correlation key.
    2.I put the block for the block i added the correlation key and exception name.
    3.I put the exception branch and the deadline branch
    4.on the exception branch i put the name of  the exception to be handled.
    5. on the deadline branch i put a 2 minute duration
    6.within the deadline branch i put the control which throws the exception...
    7.i added a loop to the block which is 1 = 1.in that there is a recieve step
    8.after that there is container operation which adds the message to the list...
    9.followed by outside the block i have a transformation and send steps..
    10.the block is in default mode.
    I tried creating the scenario completely again and again with different datatype etc to avoid the cache problem + workflow item locked problem...
    but no luckk
    THNks

  • How to merge two maps in a single map

    i have two maps existing. i want to merge both the maps into a single map through coding. do we have any function which can solve this problem. If not then please provide me some suggestions to solve this problem.
    thanks,
    amit

    Amit,
    I did this once using the HashMapUtils found in the apache myfaces code...
    package se.inserve.util;
    import java.util.HashMap;
    import java.util.Map;
    import java.util.Set;
    import java.util.Iterator;
    public class HashMapUtils
        //~ Constructors -------------------------------------------------------------------------------
        protected HashMapUtils()
            // block public access
        //~ Methods ------------------------------------------------------------------------------------
         * Calculates initial capacity needed to hold <code>size</code> elements in
         * a HashMap or Hashtable without forcing an expensive increase in internal
         * capacity. Capacity is based on the default load factor of .75.
         * <p>
         * Usage: <code>Map map = new HashMap(HashMapUtils.calcCapacity(10));<code>
         * </p>
         * @param size the number of items that will be put into a HashMap
         * @return initial capacity needed
        public static final int calcCapacity(int size)
            return ((size * 4) + 3) / 3;
         * Creates a new <code>HashMap</code> that has all of the elements
         * of <code>map1</code> and <code>map2</code> (on key collision, the latter
         * override the former).
         * @param map1 the fist hashmap to merge
         * @param map2 the second hashmap to merge
         * @return new hashmap
        public static HashMap merge(Map map1, Map map2)
            HashMap retval = new HashMap(calcCapacity(map1.size() + map2.size()));
            retval.putAll(map1);
            retval.putAll(map2);
            return retval;
         * spit out each name/value pair
        public static String mapToString(Map map){
            Set entries = map.entrySet();
            Iterator iter = entries.iterator();
            StringBuffer buff = new StringBuffer();
            while (iter.hasNext())
                Map.Entry entry = (Map.Entry) iter.next();
                buff.append("[" + entry.getKey() + "," + entry.getValue() + "]\n");
            return buff.toString();
    }Then then just calling the methods from within a rule in XPRESS.
    <Rule name='Inserve - mergeHashMap'>
      <RuleArgument name='map1'/>
      <RuleArgument name='map2'/>
      <block>
        <set name='map1'>
          <map>
            <s>A</s>
            <s>1</s>
            <s>B</s>
            <s>2</s>
          </map>
        </set>
        <set name='map2'>
          <map>
            <s>C</s>
            <s>3</s>
            <s>D</s>
            <s>4</s>
          </map>
        </set>
        <invoke name='merge' class='se.inserve.util.HashMapUtils'>
          <ref>map1</ref>
          <ref>map2</ref>
        </invoke>
      </block>
      <MemberObjectGroups>
        <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
      </MemberObjectGroups>
    </Rule>This gives the output:
    <Map>
      <MapEntry key='A' value='1'/>
      <MapEntry key='B' value='2'/>
      <MapEntry key='C' value='3'/>
      <MapEntry key='D' value='4'/>
    </Map>I typically create a jar-file with my custom classes which i place in $WSHOME/WEB-INF/lib.
    Good luck and hope this helps. Im sure there are better ways to do this, but this did the trick for me.
    /Anders

  • Merging Workset Maps?

    Hi,
    I tried to merge two workset map iviews from two different roles but I am getting the below error message
    "Could not find workset location. Check the 'Relative Workset Location' parameter of this iView."
    Can you help me fix this?
    Thanks
    Raj Balakrishnan

    Selvaraj -
    First, I think that merging is only available on the role, workset, or folders.  The last time I checked, page and iView merging were not supported.
    I don't believe that you can merge the workset maps as you desire.  The workset map works by visually displaying icons for individual pages etc. that are contained in the workset.  The parameter 'Relative Workset Location' describes where to find the workset.  When merging two workset maps, I'm guessing that the iView does not know where the workset is for display.
    Regards,
    Kyle

  • Mapping in BPM: how to merge results of receive steps into send steps

    Hello,
    we need the following BP:
    1. async. Receive Step: receive an IDoc
    2. sync. Send Step: WebService request using the content of an IDoc field.
    The WebService returns some data we need for the destination structure.
    3. Transformation???
    4. async. Send Step: we have to <b>merge</b> and map the Idoc fields and the
    resulting fields of the WebService into the destination structure.
    What are the basic steps and objects therefore?
    IDoc-message            X  --> |
    WebService-message Y  --> |   -->  Z dest-message
    Out problem is, how an where to get access to both Source Messages to merge them for the destiniation message?
    Regards
    Gunnar

    <i>1. async. Receive Step: receive an IDoc
    2. sync. Send Step: WebService request using the content of an IDoc field.
    The WebService returns some data we need for the destination structure.
    3. Transformation???
    4. async. Send Step: we have to merge and map the Idoc fields and the
    resulting fields of the WebService into the destination structure.</i>
    >>>>
    1. async. Receive Step: receive an IDoc - OK
    2. sync. Send Step: WebService request using the content of an IDoc field.
    The WebService returns some data we need for the destination structure. - OK
    3. Transformation - this transformation step will have 2:1 mapping. source would be IDOC and response of WS mapped to result.
    4. async. Send Step: Send the result

  • How to Maintain Surrogate Key Mapping (cross-reference) for Dimension Tables

    Hi,
    What would be the best approach on ODI to implement the Surrogate Key Mapping Table on the STG layer according to Kimball's technique:
    "Surrogate key mapping tables are designed to map natural keys from the disparate source systems to their master data warehouse surrogate key. Mapping tables are an efficient way to maintain surrogate keys in your data warehouse. These compact tables are designed for high-speed processing. Mapping tables contain only the most current value of a surrogate key— used to populate a dimension—and the natural key from the source system. Since the same dimension can have many sources, a mapping table contains a natural key column for each of its sources.
    Mapping tables can be equally effective if they are stored in a database or on the file system. The advantage of using a database for mapping tables is that you can utilize the database sequence generator to create new surrogate keys. And also, when indexed properly, mapping tables in a database are very efficient during key value lookups."
    We have a requirement to implement cross-reference mapping tables with Natural and Surrogate Keys for each dimension table. These mappings tables will be populated automatically (only inserts) during the E-LT execution, right after inserting into the dimension table.
    Someone have any idea on how to implement this on ODI?
    Thanks,
    Danilo

    Hi,
    first of all please avoid bolding something. After this according Kimball (if i remember well) is a 1:1 mapping, so no-surrogate key.
    After that personally you could use Lookup Table
    http://www.odigurus.com/2012/02/lookup-transformation-using-odi.html
    or make a simple outer join filtering by your "Active_Flag" column (remember that this filter need to be inside your outer join).
    Let us know
    Francesco

  • Graphical Mapping Vs XSLT mapping Vs Java Mapping Vs ABAP Mapping

    Hi Experts,
              I have a question regarding different message mapping options available in XI namely
    Graphical Mapping
    XSLT mapping
    Java Mapping
    ABAP Mapping
    Q1: Which amoung the above mappings is the best and why?
    Q2: On what cases Graphical, XSLT, Java and ABAP Mapping should be used?
    Q3: Is it true that graphical and XSLT mappings are converted into Java class internally?
    Kindly help!
    Thanks
    Gopal
    Message was edited by:
            gopalkrishna baliga

    Hi,
    There is no hard and fast rule for using the mapping techniques.
    Graphical Mapping is used for simple mapping cases. When, the logic for your mapping is simple and straight forward and it does not involve mult hiearchical mapping requirement. and context handling.
    Java and XSLT mapping are used when graphical mapping cannot help you.
    When the choice is between Java And XSLT, XSLT is simpler than java mapping and easier. But, it has its drawbacks.  XSLT can lead to a bad perfrormance if the Source XML is huge.
    Java Mapping uses 2 types of parsers. DOM and SAX. DOM is easier to use with lots of classes to help you create nodes and elements, but , DOM is very processor intensive.
    SAX parser is something that parses your XML one after the other, and so is not processor intensive. But, it is not exaclty easy to develop either.
    For further info on each of the mapping, refer to these links,
    Graphical Mapping,
    http://help.sap.com/saphelp_nw04/helpdata/en/6d/aadd3e6ecb1f39e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/content.htm
    XSLT Mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/content.htm
    http://www.w3.org/TR/xslt20/
    Java Mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/content.htm
    DOM parser API
    http://java.sun.com/j2se/1.4.2/docs/api/org/w3c/dom/package-frame.html
    Also, check this thread for more info,
    Different types of Mapping in XI
    Am not sure about XSLT , but , yes graphical mapping is converted into java classes internally and these classes use SAX parsing as well.
    Regards,
    Bhavesh

  • Java ,abap and XSLT mapping

    Hi all,
               can any one provide some material on java ,ABA and XSLT mapping(as i got requirement on my current project)..
    thanks in advance.
    regards
    krish..

    Hi
       All mapping related links
    There is no hard and fast rule for using the mapping techniques.
    Graphical Mapping is used for simple mapping cases. When, the logic for your mapping is simple and straight forward and it does not involve any complex logic.
    Java and XSLT mapping are used when graphical mapping cannot help you and you have multilevel hierarchy structure data.
    When the choice is between Java and XSLT, XSLT is simpler than java mapping and easier. But, it has its drawbacks. One among them being that you cannot use Java APIs and Classes in it. There might be cases in your mapping when you will have to perform something like a properties file look up or a DB lookup, such scenarios are not possible in XSLT and so, when you want to use some specific Java API's you will have to go for Java Mapping.
    Java Mapping uses 2 types of parsers. DOM and SAX. DOM is easier to use with lots of classes to help you create nodes and elements, but, DOM is very processor intensive.
    SAX parser is something that parses your XML one after the other, and so is not processor intensive. But, it is not exactly easy to develop either.
    To know more about each of them please go thru the following links. And if you ask me your which is better, it depends basically on the scenario you implementing and the complexity involved. Anyways please go thru the following links:
    Graphical mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/6d/aadd3e6ecb1f39e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/content.htm
    /people/bhanu.thirumala/blog/2006/02/02/graphical-message-mapping-150-text-preview
    http://www.sapgenie.com/netweaver/xi/mapping1.htm
    /people/alessandro.guarneri/blog/2006/01/26/throwing-smart-exceptions-in-xi-graphical-mapping
    XSLT mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/content.htm
    http://www.w3.org/TR/xslt20/
    JAVA mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/content.htm
    DOM parser API
    http://java.sun.com/j2se/1.4.2/docs/api/org/w3c/dom/package-frame.html
    ABAP mapping
    /people/r.eijpe/blog
    To know more about the value mapping tools for the SAP Exchange Infrastructure (XI), please go thru the following link:
    http://www.applicon.dk/fileadmin/filer/XI_Tools/ValueMappingTool.pdf
    To get an idea as to what value mapping is, please go thru the following links:
    http://help.sap.com/saphelp_nw04/helpdata/en/13/ba20dd7beb14438bc7b04b5b6ca300/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/f2/dfae3d47afd652e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/9d2891cc976549a9ad9f81e9b8db25/content.htm
    most of the links that I have provided also helps you get the step by step procedure of doing the same. And also involves the procedure to implement certain advanced features.
    And please go through this link which clearly explains the 3 types of mappings.
    /people/ravikumar.allampallam/blog/2005/02/10/different-types-of-mapping-in-xi
    regards
    Prasad

  • Using Map Files / Map IDs

    Heya,
    RH9, merged webhelp
    I'm trying to set up Map IDs for a quasi-context sensitive help feature, and I'm feeling a bit overwhelmed. I've read through the RH9 help which links to the Grainge website and a couple more links, but I'm still not sure what to do.
    First, the background:
    We auto-generate a set of release notes for new features and fixes. This is done using a script that pulls the relevant information out of Dovetail (basically where all our support and development cases are stored). So basically our release list shows the case number, the area of the software, and a brief summary of the fix/feature. The release notes are script-generated as an .html file that we can link to in help.
    The issue is that they want me to alter the release notes so that the case number serves as a hyperlink to the relevant topic in help. So, for example, if we had a new feature for widget making, case number 12345, the release notes entry for this would have a hyperlink that would take the user to the 'Widget Making' help topic.
    My thinking is that I can use the case numbers as Map IDs, ie assign Map ID '12345' to the 'Widget Making' topic, and then create a generic link in the release notes that can 'insert' the relevant case number when the user goes to find that associated help topic.
    Potential Issue:
    We use a merged help system, but we do not need to merge map files. Our help system consists of one mostly-empty parent project (title page, about page, etc.), a project that contains the majority of our topics, a project that contains database information for technical users, and a few other odd projects. All of the linked topics are going to be in the same main child help project. Because of this, the map file/IDs are going to be a single set in a single project, but not the parent project.
    Does this only affect the pathway for the basic link (e.g. "webhelp/mergedProjects/child1.htm" instead of "webhelp/start.htm"?), or are there other considerations? For example, the merged help map ID topics I've seen talk about using number ranges to denote the different projects, but since we've only the one, do we really need to do that? To me, it seems like we should be able to use a relatively straight-forward single-project type link, with the only difference being that the the link goes to a child project folder and not the main webhelp folder.
    So far in testing, the link doesn't work, so I'm wondering if either the URL is not as straight-forward as I hoped, or I'm missing something else due to the nature of how our webhelp is set up. Because it's a child, do we still need to 'merge' map files even if we don't need one for the parent? (ie we create an empty parent map file, merge it with the child, and link to the parent?)
    Thanks for any tips/advice!

    Hi,
    When you use CSH in a merged project, the master project will automatically check all child projects when the context sensitive id cannot be found in the master project.  Peter’s method includes merging the map files but I don’t think that is necessary. We have several merged projects that work perfectly without merging the map files. But Peter is the authority on merged help
    It is important to first get the terminology straight. In WebHelp there are Map ID’s and Map numbers. The Map ID (or topic id) is an alphanumeric string that can be anything from one character to a hundred or more characters. Then there are the Map numbers. Map numbers are a number between 1 and 4.294.967.295.
    The terminology is important because what RoboHelp calls a Map ID may be referred to as a map number. Reading the article on Peter’s site I get the impression that what is called a Map ID on Peter’s site is actually the Map number in RoboHelp. (Please correct me if I’m wrong Peter.) The Map ID in RoboHelp is the Topic ID on Peter’s site. See step 8 of the article, it describes how to create a test page using the default RoboHelp JavaScript API. But that test page actually uses the map numbers as the default JS API does not support topic id’s, only map numbers.
    Your map file tells the following:
    ‘12345’ is the Map ID or topic ID.
    ‘1’ is the Map number. The Map ID referred to on Peter’s site if I’m not mistaken.
    Calling the Map number 12345 will not work if you use the default method because you are looking for the wrong number. Try the following:
    Say that your master project is placed on http://localhost/newproject.htm. Open a new browser window and add the following URL in the browser where you replace the url with the url your project is placed:
    http://localhost/newproject.htm#<str=12345
    Does this get the desired result? Also try the test page but use ‘1’ instead of ‘12345’. Does this also get the correct page?
    You (or your developers) may also be interested in my WebHelp CSH dissection: http://www.wvanweelden.eu/robohelp/webhelp/csh Note that this article is aimed at developers and does not provide any direct answers, but it will help you understand the different settings in RoboHelp.
    Hope this doesn’t confuse you and I hope my assumptions about your intended action are correct.
    Greet,
    Willam

  • Inheritance of mapping xml files?

    How can one use inheritance (or other technique) to generate mapping files to be bundled with common components that are shared among several departments/projects. The original map (XML) would be distributed in a jar file with the classes. The idea is that the other people might want to extend components but don't want to have to map all of the objects again. Just want to add some new methods.

    Currently for coherent use of the MW, objects that inherit mappings must be in the same project (mapping file). This means that the common mapping file would need to be used as a starting point for the different components, and amendment methods/code APIs would have to be used at deployment by each of the components to modify the project according to their needs.
    HTH,
    -Mike

  • XI Mapping - BIT460

    Hello,
    I am interested in taking the BIT460 XI mapping class.  Has anyone taken this class?  If so, what were your thoughts? 
    I'm hopping to learn how mapping can help me handle acknowledgments and monitoring.  Can mapping help me in these ways?
    What can I expect from this class?
    Thanks,
    Matt

    Hi Matt
    This can help you understanding
    Overview of mapping techniques
    Integrating Java mapping
    Integrating XSLT mapping
    Integrating ABAP mapping
    Standard functions of message mapping
    User-defined functions
    Complex mapping tasks
    Value mapping
    Most of these are available as blog posts or articles. if you have PI system then you can learn on your own as well
    But going for this class is also a good idea
    Thanks
    Gaurav

  • Mapping lookups - RFC API

    Hi
    I have cr8ed rfc lookup in UDF,and I want to parse this xml and use only the value I need
    I read in the forum that there are 2 ways of doing it :
    DOM and SAX
    any1 knows good weblogs/threads which ellaborates on how or explain how it should b done ?
    thx,Shai

    Hi Shai,
    This blog and article deals with calling your RFC from your JAVA MAPPING / User Defined Function.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/801376c6-0501-0010-af8c-cb69aa29941c
    /people/sravya.talanki2/blog/2005/12/21/use-this-crazy-piece-for-any-rfc-mapping-lookups
    And now going to the next half of your question regarding SAX and DOM parsers....
    The user defined functions that you write in your Graphical Mapping has nothing to do with Java Mapping.
    In your Graphical Mapping, the parsing of source structure is handled interannly by XI.
    But, when you go for an explicit mapping technique like Java Mapping, you have to parse the source XML structure, so that you can write the logic for your mapping.
    Java Mapping will execute a method called Execute, that will take the source XML structure as the Input Stream and then, you have to parse the Input STream and to do this parsing, you use SAX or DOM parser.
    DOM processor loads the entire XML into the memory and is processor intenseive, SAX does it element by element and so is not processor intensive.
    If you are using SAX parser, there are 5 methods . They are:
    1) Start of the document(startDocument)
    2) start of the element(startElement)
    3) end of the element(endElement)
    4) end of the document(endDocument)
    5) chars()
    Also check with any java site about SAX events how it works etc.
    Java Mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/content.htm
    DOM parser API
    http://java.sun.com/j2se/1.4.2/docs/api/org/w3c/dom/package-frame.html
    On how to create XML docs with SAX and DOM go thruugh these links:
    http://www.cafeconleche.org/books/xmljava/chapters/ch09.html
    http://www.cafeconleche.org/books/xmljava/chapters/ch06.html
    Also go through these Blogs....
    /people/prasad.ulagappan2/blog/2005/06/08/sax-parser
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-i
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-ii
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-iii
    I hope this helps...
    Regards,
    Abhy

  • Mac Users + OVI Maps Build ClientIndex

    For Mac users unable to use Nokia Maploader for Mac here is how to merge index links provided by ovikovi
    IndexAsia
    IndexAustralia/Oceania
    Index Africa 
    Index NorthCentralAmerica
    Index South America
    Index Europe
    Unzip folders and drag respective folders to Documents as here 
    Documents
    It is probably helpful to open this screenshot now
    Merge ClientIndex
    Create a New Folder in Documents ClientIndex
    Open Terminal on Mac > Finder > Go > Utilities > Terminal
    Type after $ prompt cd Documents <hit return>
    Type after $ prompt cp -r Africa/* ClientIndex <hit return>
    Repeat with index for other countries as in terminal screenshot
    When finished drag ClientIndex folder to E:\CITIES\diskcache
    This procedure also works for merging individual maps and is documented elsewhere on forum.
    Happy to have helped forum in a small way with a Support Ratio = 37.0
    Solved!
    Go to Solution.

    England
    Northern Ireland
    Scotland
    Wales
    French regions:
    Alsace
    Aquitaine
    Auvergne
    Bretagne
    Bourgogne
    Centre
    Champagne-Ardenne
    Corsica
    Franche-Comté
    Langedoc-Roussillon
    Limousin
    Lorraine
    Midi-Pyrénées
    Normandie
    Nord-Pas-de-Calais
    Paris-Ile-de-France
    Pays-de-la-Loire
    Poitou-Charentes
    Provence-Alpes-Côte-d'Azur
    Rhône-Alpes
    German regions:
    Baden-Württemberg
    Bayern
    Berlin/Brandenburg
    Hessen
    Mecklenburg-Vorpommern
    Niedersachsen/Bremen
    Nordrhein-Westfalen
    Rheinland-Pfalz/Saarland
    Sachsen
    Sachsen-Anhalt
    Schleswig-Holstein/Hamburg
    Thüringen
    Italian Regions:
    Abruzzo
    Basilicata
    Calabria
    Campania
    Emilia-Romagna
    Friuli-Venezia Giulia
    Lazio
    Liguria
    Lombardia
    Marche
    Molise
    Piemonte
    Puglia
    Sardegna
    Sicilia
    Toscana
    Trentino-Alto Adige
    Umbria
    Valle d'Aosta
    Veneto
    Spanish regions:
    Andalucía
    Aragón
    Asturias
    Islas Canarias
    Cantabria
    Castilla y Léon
    Castilla la Mancha
    Catalunya
    Ceuta
    Communidad Valénciana
    Extremadura
    Galicia
    Islas Baleares
    La Rioja
    Madrid
    Melilla
    Murcia
    Navarre
    País Vasco
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • How to download and keep multiple maps using Mac/E...

    I use my mac and this site
    http://nokiamaps.site666.info/
    to download maps via my mac to my E71. It works fine. I can install any map, however, only one map at a time.
    I would be happy if anyone knows and could tell me how to download and keep several maps active using my mac and E71. For example, I would like to have US, Japan and some countries in Europe loaded to my E71.
    I can of course keep several maps on my mac but I want to have them loaded to the E71.
    Can I have several maps loaded in the E7? Where to put the maps (which directory)?

    I do not know if anyone is interested but I have figured out one way to do it. Not the nicest perhaps but it works.
    On my mac I create a directory named MyMaps and then I download the maps I want and put them into directories (one directory per map). I copy using the -r flag, which merges/adds on files.
    For example if MyMaps is empty and I use:
    cp -r Sweden/* MyMaps/
    I will get the Swedish map in MyMaps.
    To add the map of Netherlands I simply do:
    cp -r Netherlands* MyMaps/
    I have now merged the map of Netherlands with the map of Sweden and all maps are in MyMaps. And I can add more maps by running cp -r again. And when I am done, I transfer the directory structure in MyMaps to my E71.
    I had some troubles with the diskcache structure. It worked fine for me to remove everything (all files) in the diskcache. They will be created when I move MyMaps.

Maybe you are looking for

  • Posting with trans.type 300 not possible (No acquisition posted)   Message

    Dear Gurus, When I execute the T-code ABUMN, i've got the following message: Posting with trans.type 300 not possible (No acquisition posted)      Message no. AA324 Diagnosis      Transaction type 300 belongs to a transaction type group, which can on

  • I believe that I have a key logger installed on my mac

    Hello, I am pretty sure there is some sort of keylogger installed on my Mac.  Going through a divorce right now and I know for a fact that the other party is able to access my computer somehow.  I think it is a key logger because they know way too mu

  • Problem getting ServletConfig in ManagedBean in JSF Portal environment

    I am working on a portal application in Weblogic Workshop 8.1 SP4 using JSF.I am having problems in getting the ServletConfig in managed Bean class.I have been able to convert PortletRequest to HttpServletRequest and now i want to get the ServletConf

  • Lens-to-subject distance in EXIF data

    I'm looking for lens-to-subject distance in my EXIF data (Canon 7D Mk II).  Is it captured?And if so, how do I view it?

  • Running a Java3D program

    Hi. When i try to open a java3D program, all that happens is that the application opens for a split second on a web browser and then closes the window completly. for example when i try click on any of the programs in www.virtualexp.net/Mindmelters.ht