Styeles and themes in map builder

Where are the styles and themes created using the map builder tool stored?

Hi Richard,
For styles, you can definately create them once (in any schema), and use them from any other schema. For instance if you are connected as user A and you want to apply the style 'star' defined in user B, just use the format 'B.star' to reference it.
Themes and base-maps, however, cannot be shared across schemas at the moment. This is mainly to keep things simple. If we allow cross-schema reference of themes & basemaps, you will soon end up with some confusing scenarios.. For instance, imagine this:
MapViewer is connected to db user A, and we want to display a basemap from user B. The base map contains a theme from user C, and another one from user D. The first theme actually relies on a table owned by user E, while the 2nd theme gets its data from a view ownded by user F... pretty soon we no longer knows what is really being displayed on a map.
So my suggestion is to create styles in any place you want, but create themes (and basemaps) in the user that is connected by MapViewer, in this case, your <schema>_WEB account.  Different applications or departments within an organization often want 'personalized' themes/basemaps for the same tables, so storing themes/basemaps closer to the application (instead of their underlying data) is not a bad idea (i hope).
There is unfortunately a bug in Mapviewer that makes it hard to create a theme for a table from a different schema (yea we tried to 'keep it simpler' - bad idea). Currently, the work around is to manually change the user_sdo_themes entry, so that its 'base table' column looks like 'schema.ROADS', and also add an entry in user_sdo_geom_metadata for 'schema.ROADS'. This will be fixed in the MapViewer soon, and also in Map Builder so that when creating a new theme, you can see all the spatial tables across all the schemas you have 'select' previlege.
thanks
LJ

Similar Messages

  • Map Builder SVG onmouseover and onclick

    Hi,
    I'd like to know more about these functions in Map Builder.
    I'd like to be able to change the color of a marker using onmouseover,
    and select that marker by using onclick. Any info. would help.
    Thanks,
    Marlene

    Hi Marlene,
    these theme attributes (onmouseover and onclick) are to be used when you have an application with MapViewer that generates a SVG map. They define the method to call on your application script. MapBuilder does not generate SVG maps. You can fill these parameters with some name, and save the predefined theme. Then you need to develop an application code for SVG implementing these methods. After you deploy MapViewer kit, you should find on the MapViewer web page some demos including SVG.
    Joao

  • Map Builder Labeling Links from Network Theme

    Hi,
    Map Builder cannot change labelig column for links('link_id' is default), I need column 'LINK_NAME'
    I change column manuly in metadata_view
    update user_sdo_themes
    set styling_rules = '
    <label>
    <link column="LINK_NAME" style="T.ROAD NAME"> 1 </link>
    </label>
    where name = '...'
    commit
    and check by select styling_rules from ... all is OK
    refresh data in MapBuilder or restart MapBuilder and ... "link_id" comes back :-)
    This problem is connected with Themes/Network Themes; in Base Maps all is ok.
    Question is, how to change labeling column for links in Network Themes.
    BR,
    Tomek
    Edited by: ToM2 on Dec 4, 2008 5:24 AM

    As a network theme, the link_id and node_id are always used in labelling. If you want to use a different attribute for labeling the links of a network data, you can create a geometry theme based on the network link table (it is a geometry table), and then you will be able to select any column for labeling.
    Joao

  • Create geometry theme in oracle map builder

    I want to create geometry theme and try to set the style parameter in oracle map builder. when i'm in step 2 to select the style selection, no style are listed. how can i list this style in style picker dialog?

    actually i have created this table and command same like command in $ORACLE_HOME/lbs/admin/mapdefinition.sql. i create by manually in oracle. when i run sql desc user_sdo_styles_; this table will displayed name, type, description, definition, image, and geometry in column name. but when i run sql select * from User_sdo_styles; they have a error ( column or attribute type can not be displayed by sql*plus). i'm wrong or right? i have a geometry table like lot_parcel, pipe_network, and valve.

  • Map Builder and SSO?

    Does anyone know if it is possible to use SSO (Single Sign On) to connect to Map Builder? I cannot seem to get this to work regardless of the connection options I try. Thanks for any insight...
    -mcslain
    Edited by: mcslain on Mar 24, 2011 10:05 AM

    There'll likely be an announcement when it's ready for download.
    At present there isn't a specific date yet. Sometime March this year is a possibility.
    Jayant

  • About label Oracle Map Builder

    Hello! I have a question about Oracle Map Builder.
    There are three layers in basemap: the first - a polyline, the second - a point, and the third - a polygon with a solid color (top). Labels are included to the first two signatures. While viewing the map shows a third (polygon) layer, and the signature of the first two.
    Question: Is there a possibility to remove the appearance of signatures of the lower layers (disabling signatures by minimum scale for display is not suitable, as they are used outside of polygon layer), and how to do it?
    Thank you!

    I'm not sure I understand the question. Here's is my assumption of what the question is.
    You have three layers in a basemap : a polyline, a point, and a polygon in that order. That is polyline rendered first, points on top of it, and then the color-filled polygon layer on top of those two.
    The part I don't understand is what you mean by signatures of the polyline and point layers.
    Anyway, if the solid color-filled polygon layer is rendered last (i.e. on top) then the other two layers should not be visible at all unless their extent (the area they cover) differs from the extent for the polygon layer or the polygon layer does not completely cover the map extent or it's not a solid color fill but one with some transparency setting.
    Scale ranges can be applied to each layer when adding them to a basemap in MapBuilder. Choose the scale mode (e.g. ratio) and set the max and min scale values for each layer. e.g.
    <?xml version="1.0" standalone="yes"?>
    <map_definition>
    <theme name="STATES_DENSITY" min_scale="Infinity" max_scale="2.5E7" scale_mode="RATIO"/>
    <theme name="COUNTY_POPDENSITY" min_scale="2.5E7" max_scale="0.0" scale_mode="RATIO"/>
    <theme name="HIGHWAYS_LINE"/>
    <theme name="CITIES" min_scale="1000000.0" max_scale="1000.0" scale_mode="RATIO"/>
    </map_definition>
    The above says render the states_density layer while zoomed out to the full extent and up until the user zooms in to a 1:250,000,000 scale. When zoomed in further do not render/display the states population density layer. Display the county population density instead. Always display the highways. And start to display cities when the map in zoomed to 1:1,000,000 and up until 1:1,000 scale.
    If you want to set the labeling scale ranges on a per layer (theme) basis then set it using the Other Properties panel in Map Builder. For the Cities layer above the styling rule with label scale ranges set is:
    <styling_rules>
    <scale_ranges>
    <mode> RATIO </mode>
    <min_labeling_scale> 1.0E8 </min_labeling_scale>
    <max_labeling_scale> 10000.0 </max_labeling_scale>
    </scale_ranges>
    <rule>
    <features style="M.ALL_CITY_L1_8X8"> (POP90 &gt; 1000000) </features>
    <label column="CITY" style="T.S03_CITIES_L1"> 1 </label>
    </rule>
    </styling_rules>
    i.e. show city names from 1:100,000,000 till 1:10,000
    1/100,000,000 is a smaller number than 1/10,000
    Hope this helps.

  • Oracle Map Builder Network Models

    We are working on a project that displays road networks in Oracle Map Builder. Many of the network tables were irrevelant so they were deleted in SQL Developer. However, in Oracle MapBuilder all the Network Tables are still listed. Does anyone know how to synchonize Oracle SQL Developer and MapBuilder?
    Thank you,
    Renee

    Hi Renee,
    Were you using the Network Themes to create new Network Themes or were you using Geometry Themes?
    If you used Network Themes, when you deleted the network (tables), did you delete its entry in user_sdo_network_metadata?
    If you were using the Geometry Themes, did you delete the entry from user_sdo_geom_metadata after you delete the geom. table?
    Try to remove the entries in the network/geom metadata views when you no longer need the network/geom tables.
    You also need to commit after you deleted the tables.
    What version of MapBuilder are you using? (click Help->About Oracle Map Builder)
    jack

  • Map Builder Preview rendering errors

    I am having problems using Map Builder. I have wasted quite a bit of time trying to fix these problems assuming I was doing something wrong, or something was wrong with my data.
    Error 1: I create a map using 2 themes. One theme is a geometry theme of topo edge primitives. The other is a topology theme of features built from those primitives. The geometry theme is assigned a red line style. The topology(feature) theme is assigned a blue line style. the geometry theme is listed first, to draw first. I expect to see the red overdrawn by the blue. The preview show red lines. When viewed in Acquis Data Editor, this map displays as expected (blue lines) and when a feature is removed (disassociated from the topo primitive) the underlying primitive shows up as red. When I stop and restart Map Builder, the preview rendering is as expected, blue on top.
    Error 2: I create a map using 1 theme. This theme is a geometry theme of topo edge primitives. I assign node and edge styles. When I preview the map, the nodes (only one node per edge) are displayed at the center of the straight edges, at what appears to be mid-distance between the end points of the edges of the shaped edges (not on the edge), and in the center of rings created by edges that have the same start and end node. They look like they are attempting to be what ESRI calls label points. Again, when I view this map in Acquis Data Editor, the nodes show up on the ends of the edges where I usually tend to look for nodes to show up. Stopping and restarting Map Builder does not fix this rendering problem.
    Are these known bugs and when can I expect to use the preview button reliably?
    Alden

    For the red line style, L.EDGE, the xml def is:
    <?xml version="1.0" standalone="yes"?>
    <svg height="1in" width="1in">
    <desc/>
    <g class="line" style="fill:#FF33FF;stroke-width:1.0">
    <line class="base"/>
    </g>
    </svg>
    For the blue line style, L.FEATURESTYLE, the xml def is:
    <?xml version="1.0" standalone="yes"?>
    <svg height="1in" width="1in">
    <desc/>
    <g class="line" style="fill:#3366FF;stroke-width:1.0">
    <line class="base"/>
    </g>
    </svg>
    For the geometry (edge primitive) theme, TOPO_EDGE, the xml def is:
    <?xml version="1.0" standalone="yes"?>
    <styling_rules>
    <rule>
    <features style="C.FACE"> </features>
    </rule>
    <rule>
    <features style="M.NODE"> </features>
    </rule>
    <rule>
    <features style="L.EDGE"> </features>
    </rule>
    </styling_rules>
    For the topology(feature) theme, GLOBAL, the xml def is:
    <?xml version="1.0" standalone="yes"?>
    <styling_rules theme_type="topology" topology_name="MGF_TOPO">
    <rule>
    <features style="L.Featurestyle"> </features>
    </rule>
    </styling_rules>
    For the base map, TEST2, the xml def is:
    <?xml version="1.0" standalone="yes"?>
    <map_definition>
    <theme name="TOPO_EDGE"/>
    <theme name="GLOBAL"/>
    </map_definition>
    As I said earlier, this does display blue lines after a restart of MapBuilder but upon first creating this map and themes, the initial display is red lines.
    As to error 2: I understand now that Acquis probably does a specialty mapping of metatdata and uses the NODE$ table, applying the style definition for the edge theme (M.NODE) to display them.

  • Import image in Map Builder

    When using the import image tool of Map Builder to create a GeoRaster theme, you may get a popup window with an error message saying that the import was not successful. The application console should contain the following lines.
    Creating GeoRaster Table...
    Calling DML trigger...
    Creating raster data table...
    Importing File...
    java.lang.ExceptionInInitializerError: null
    The georaster object is not loaded correctly!!
    This error happens because of a missing JAI initialization file on mapbuilder.jar file. To solve this problem you need to add the initialization file to mapbuilder.jar.
    1) locate file jai_core.jar on your Oracle installation (usually located at ordim/lib directory).
    2) extract file javax.media.jai.registryFile.jai (extract with full path meta-inf\).
    2) go to directory where mapbuilder.jar is and double click it to open (usually opens with WinZip).
    3) drag folder meta-inf that contains the JAI initialization file to the opened mapbuilder.jar. Check if you have the initialization file with path meta-inf\ inside mapbuilder.jar.
    4) Close mapbuilder.jar.
    5) Start Map Builder and test the import.
    Joao

    to be a little more precise, it seems to happen when updating spatial extent.
    here is the console output
    You chose to open this file: C:\Temp\San_Francisco_Area.tif
    Loading SRID records...
    Done with SRID records
    ImportImageThread running thread: Thread-8
    Creating GeoRaster Table...
    Calling DML trigger...
    Creating raster data table...
    Importing File...
    Georeferencing...
    Updating Spatial Extent...
    Exception: ORA-13430: the GeoRaster object has null attribute(s)
    ORA-06512: at "MDSYS.MD", line 1723
    ORA-06512: at "MDSYS.MDERR", line 8
    ORA-06512: at "MDSYS.SDO_GEOR", line 893
    ORA-06512: at line 4

  • Map Builder - Bulk import

    Hi,
    I have several thousand tiff images (orthophoto maps) and I am using Map Builder for importing, making georaster theme and adding themes into base map.
    It will last for ages...
    Is there other way how to do it?
    thanks,
    Branislav

    Could It be some georaster theme memory issue?
    experimenting with 3 tiffs in georaster theme (successful):
    INFO [oracle.sdovis.DBMapMaker] clearing internal theme list and cache
    FINEST [oracle.sdovis.SRS] *** isGeodetic=false, unit=METER
    DEBUG [oracle.sdovis.ltd] LoadThemeData running thread: Thread-46
    DEBUG [oracle.sdovis.theme.grtp] [Master scale] 3123.287671232877 [Scale factor for theme GEORTHEME] 1.0
    INFO [oracle.sdovis.theme.grtp] Screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] [Query] select grt.IMAGE from GEORASTER_TABLE grt WHERE MDSYS.SDO_FILTER(grt.IMAGE.spatialextent, MDSYS.SDO_GEOMETRY(2003, 2065, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3), MDSYS.SDO_ORDINATE_ARRAY(-433661.34699643834,-1246776.379195,-400248.6757635616,-1237276.379195)), 'querytype=WINDOW') = 'TRUE' AND grt.image.rasterid in (1,2,3)
    FINEST [oracle.sdovis.theme.grtd] Computing resolution...
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtd] Pyramid level: 0 GeoRaster: 3 for screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] ULT offset: 0,0
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtp] GeoRaster Dimension: width= 2500.0 height= 2000.0
    DEBUG [oracle.sdovis.theme.grtp] [DimX] 2499[DimY] 1999
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-419999.5,-1239999.5,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 3 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-1 Column: -1
    DEBUG [oracle.sdovis.theme.grtp] Upper Left Cell for Upper left Spatial Extent: (-1,-1)
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-433661.34699643834,-1237276.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 3 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-2724 Column: -13662
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-400248.6757635616,-1246776.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 3 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:6776 Column: 19750
    DEBUG [oracle.sdovis.theme.grtp] Calling JGeoRaster.getRasterImage - area: 0 , 0 , , 2499 , 1999
    DEBUG [oracle.sdovis.theme.grtp] End of JGeoRaster.getRasterImage call.
    FINEST [oracle.sdovis.theme.grtd] Computing resolution...
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtd] Pyramid level: 0 GeoRaster: 2 for screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] ULT offset: 0,0
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtp] GeoRaster Dimension: width= 2500.0 height= 2000.0
    DEBUG [oracle.sdovis.theme.grtp] [DimX] 2499[DimY] 1999
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-417499.5,-1241999.5,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 2 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-1 Column: -1
    DEBUG [oracle.sdovis.theme.grtp] Upper Left Cell for Upper left Spatial Extent: (-1,-1)
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-433661.34699643834,-1237276.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 2 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-4724 Column: -16162
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-400248.6757635616,-1246776.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 2 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:4776 Column: 17250
    DEBUG [oracle.sdovis.theme.grtp] Calling JGeoRaster.getRasterImage - area: 0 , 0 , , 2499 , 1999
    DEBUG [oracle.sdovis.theme.grtp] End of JGeoRaster.getRasterImage call.
    FINEST [oracle.sdovis.theme.grtd] Computing resolution...
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtd] Pyramid level: 0 GeoRaster: 1 for screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] ULT offset: 0,0
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtp] GeoRaster Dimension: width= 2500.0 height= 2000.0
    DEBUG [oracle.sdovis.theme.grtp] [DimX] 2499[DimY] 1999
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-412499.5,-1239999.5,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 1 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-1 Column: -1
    DEBUG [oracle.sdovis.theme.grtp] Upper Left Cell for Upper left Spatial Extent: (-1,-1)
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-433661.34699643834,-1237276.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 1 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-2724 Column: -21162
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-400248.6757635616,-1246776.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 1 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:6776 Column: 12250
    DEBUG [oracle.sdovis.theme.grtp] Calling JGeoRaster.getRasterImage - area: 0 , 0 , , 2499 , 1999
    DEBUG [oracle.sdovis.theme.grtp] End of JGeoRaster.getRasterImage call.
    FINEST [oracle.sdovis.theme.grtp] # image loaded: 3
    INFO [oracle.sdovis.DBMapMaker] **** time spent on loading features: 29156ms.
    FINEST [oracle.sdovis.RE] xfm: 0.030736842105263153 0.0 0.0 -0.030736842105263153 13329.38034978526 -38029.968707888416
    FINEST [oracle.sdovis.RE] rendering image theme: GEORTHEME
    FINEST [oracle.sdovis.ImageRenderer] image ground mbr=-419999.5,-1241999.5 -417499.5,-1239999.5
    FINEST [oracle.sdovis.ImageRenderer] image width: 2500, height:2000
    FINEST [oracle.sdovis.ImageRenderer] rendering image at: 419, 83
    DEBUG [oracle.sdovis.ImageRenderer] Rendered Image is buffered image.
    FINEST [oracle.sdovis.ImageRenderer] image ground mbr=-417499.5,-1243999.5 -414999.5,-1241999.5
    FINEST [oracle.sdovis.ImageRenderer] image width: 2500, height:2000
    FINEST [oracle.sdovis.ImageRenderer] rendering image at: 496, 145
    DEBUG [oracle.sdovis.ImageRenderer] Rendered Image is buffered image.
    FINEST [oracle.sdovis.ImageRenderer] image ground mbr=-412499.5,-1241999.5 -409999.5,-1239999.5
    FINEST [oracle.sdovis.ImageRenderer] image width: 2500, height:2000
    FINEST [oracle.sdovis.ImageRenderer] rendering image at: 650, 83
    DEBUG [oracle.sdovis.ImageRenderer] Rendered Image is buffered image.
    DEBUG [oracle.sdovis.VectorRenderer] time to render theme GEORTHEME with 3 styled features: 0ms
    INFO [oracle.sdovis.DBMapMaker] **** time spent on rendering: 2266ms
    ...and with 4 tiffs in georaster theme (error):
    INFO [oracle.sdovis.DBMapMaker] clearing internal theme list and cache
    FINEST [oracle.sdovis.SRS] *** isGeodetic=false, unit=METER
    DEBUG [oracle.sdovis.ltd] LoadThemeData running thread: Thread-48
    DEBUG [oracle.sdovis.theme.grtp] [Master scale] 3123.287671232877 [Scale factor for theme GEORTHEME] 1.0
    INFO [oracle.sdovis.theme.grtp] Screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] [Query] select grt.IMAGE from GEORASTER_TABLE grt WHERE MDSYS.SDO_FILTER(grt.IMAGE.spatialextent, MDSYS.SDO_GEOMETRY(2003, 2065, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3), MDSYS.SDO_ORDINATE_ARRAY(-433661.34699643834,-1246776.379195,-400248.6757635616,-1237276.379195)), 'querytype=WINDOW') = 'TRUE' AND grt.image.rasterid in (1,2,3,4)
    FINEST [oracle.sdovis.theme.grtd] Computing resolution...
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtd] Pyramid level: 0 GeoRaster: 4 for screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] ULT offset: 0,0
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtp] GeoRaster Dimension: width= 2500.0 height= 2000.0
    DEBUG [oracle.sdovis.theme.grtp] [DimX] 2499[DimY] 1999
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-424999.5,-1239999.5,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 4 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-1 Column: -1
    DEBUG [oracle.sdovis.theme.grtp] Upper Left Cell for Upper left Spatial Extent: (-1,-1)
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-433661.34699643834,-1237276.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 4 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-2724 Column: -8662
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-400248.6757635616,-1246776.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 4 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:6776 Column: 24750
    DEBUG [oracle.sdovis.theme.grtp] Calling JGeoRaster.getRasterImage - area: 0 , 0 , , 2499 , 1999
    DEBUG [oracle.sdovis.theme.grtp] End of JGeoRaster.getRasterImage call.
    FINEST [oracle.sdovis.theme.grtd] Computing resolution...
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtd] Pyramid level: 0 GeoRaster: 3 for screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] ULT offset: 0,0
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtp] GeoRaster Dimension: width= 2500.0 height= 2000.0
    DEBUG [oracle.sdovis.theme.grtp] [DimX] 2499[DimY] 1999
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-419999.5,-1239999.5,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 3 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-1 Column: -1
    DEBUG [oracle.sdovis.theme.grtp] Upper Left Cell for Upper left Spatial Extent: (-1,-1)
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-433661.34699643834,-1237276.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 3 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-2724 Column: -13662
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-400248.6757635616,-1246776.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 3 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:6776 Column: 19750
    DEBUG [oracle.sdovis.theme.grtp] Calling JGeoRaster.getRasterImage - area: 0 , 0 , , 2499 , 1999
    DEBUG [oracle.sdovis.theme.grtp] End of JGeoRaster.getRasterImage call.
    FINEST [oracle.sdovis.theme.grtd] Computing resolution...
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtd] Pyramid level: 0 GeoRaster: 2 for screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] ULT offset: 0,0
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtp] GeoRaster Dimension: width= 2500.0 height= 2000.0
    DEBUG [oracle.sdovis.theme.grtp] [DimX] 2499[DimY] 1999
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-417499.5,-1241999.5,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 2 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-1 Column: -1
    DEBUG [oracle.sdovis.theme.grtp] Upper Left Cell for Upper left Spatial Extent: (-1,-1)
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-433661.34699643834,-1237276.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 2 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-4724 Column: -16162
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-400248.6757635616,-1246776.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 2 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:4776 Column: 17250
    DEBUG [oracle.sdovis.theme.grtp] Calling JGeoRaster.getRasterImage - area: 0 , 0 , , 2499 , 1999
    DEBUG [oracle.sdovis.theme.grtp] End of JGeoRaster.getRasterImage call.
    FINEST [oracle.sdovis.theme.grtd] Computing resolution...
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtd] Pyramid level: 0 GeoRaster: 1 for screen resolution: 32.534246575342465
    DEBUG [oracle.sdovis.theme.grtp] ULT offset: 0,0
    FINEST [oracle.sdovis.theme.grtd] Res X: 1.0 Res Y: 1.0 Pyramidlevel: 0
    FINEST [oracle.sdovis.theme.grtp] GeoRaster Dimension: width= 2500.0 height= 2000.0
    DEBUG [oracle.sdovis.theme.grtp] [DimX] 2499[DimY] 1999
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-412499.5,-1239999.5,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 1 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-1 Column: -1
    DEBUG [oracle.sdovis.theme.grtp] Upper Left Cell for Upper left Spatial Extent: (-1,-1)
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-433661.34699643834,-1237276.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 1 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:-2724 Column: -21162
    FINEST [oracle.sdovis.theme.grtd] getCellCoordinate query: SELECT sdo_geor.getCellCoordinate(grt.IMAGE,0,sdo_geometry(2001,2065,sdo_point_type(-400248.6757635616,-1246776.379195,null), null,null)) coord FROM GEORASTER_TABLE grt WHERE grt.IMAGE.rasterid = 1 and grt.IMAGE.rasterdatatable = 'RDT_GEOR'
    FINEST [oracle.sdovis.theme.grtd] Row:6776 Column: 12250
    DEBUG [oracle.sdovis.theme.grtp] Calling JGeoRaster.getRasterImage - area: 0 , 0 , , 2499 , 1999
    INFO [oracle.sdovis.DBMapMaker] **** time spent on loading features: 35344ms.
    FINEST [oracle.sdovis.RE] xfm: 0.030736842105263153 0.0 0.0 -0.030736842105263153 13329.38034978526 -38029.968707888416
    FINEST [oracle.sdovis.RE] rendering image theme: GEORTHEME
    WARN [oracle.sdovis.ImageRenderer] GeoRaster theme GEORTHEME has no rendered images.
    DEBUG [oracle.sdovis.VectorRenderer] time to render theme GEORTHEME with 0 styled features: 0ms
    INFO [oracle.sdovis.DBMapMaker] **** time spent on rendering: 16ms
    ...but if I make 1 base map consisting 4 separate georaster themes - it works ok

  • Elements 11 vs 13: how can I add a new place tag to my PSE13 database without using the wretched and totally inadequate map technology  that Elements 13 wants to impose.

    HI,
    I have recently installed Elements 13 having used Elements 11.0 successfully to build a database of 30,000 plus images indexed by place, people, and photo date. Elements 11 allowed me to add new places which are meaningful to me but which are a complete mystery to the mapping technology of Elements 13. For example some years ago I lived in London in a road called Argyle Road. In elements 11 I could enter the place tag as Argyle Road. In Elements 13 I am required to locate Argyle Road on the map, but the map presupposes that the Argyle Road I am referring to is in Ealing in West London. It is not!
      I now live in a place called Broadsands but the Elements 13 Map places this 0.5 miles away from what I would describe as Broadsands.
      So the question: how can I add a new place tag to my database without using the wretched and totally inadequate map technology  that Elements 13 wants to impose.

    Thank you for your quick response, BalusC. I really appreciate your answer.
    Yes, you are right. If I manually code the same amount of those components in the JSF pages instead of generating them dynamically, the server will still run out of memory. That is to say, JSF pages might not accommodate a great deal of concurrent visiting. If I upgrade the server to just allow 1,000 teachers making their own test papers at the same time, but when over 2,000 students take the same questionnaire simultaneously, the server will need another upgrading. So I have to do what you have told me, using JS+DOM instead of upgrading the server endlessly.
    Best Regards, Ailsa

  • Windows Server 2003 and Microsoft Assessment and Planning tool (MAP)

    Preparing for the end of support for Windows Server 2003 (4/2015) and the need to migrate from Windows Server 2003, I have been directed on several sites run the Microsoft Assessment
    and Planning tool (MAP) to aid in identifying any software and hardware issues.   Apparently this tool has been recently updated (7/2014) and cannot be installed on a Windows Server 2003 system.  As it requires .NET Framework 4.5 to run.  Unfortunately,
    .NET Framework 4.5 cannot be installed on a Windows Server 2003 as it only supports .NET 4.0.x versions.  All older version links to the MAP tool have been updated to link directly to version 9.1.  Where can I get a MAP tool version that will run
    on Windows Server 2003?  

    Hi,
    Yes, i would agree with arnavsharma
    After the environment scan has been completed in Windows Server 2008r2 or another supported OS, MAP looks at computers running earlier versions of Windows.
    http://technet.microsoft.com/en-us/magazine/ee677580.aspx
    Meanwhile, for the MAP related issue, you'd better ask in MAP forums:
    https://social.technet.microsoft.com/Forums/en-US/home?forum=map
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Map Builder JavaScript API

    Hello everybody,
    I'm a student who is currently working with Oracle for the first time. I developed an Web mapping application by using Oracle XE Database (10g), Oracle Map Viewer and corresponding Map Builder (the latest version). I choose the JavaScript API for the implementation of this application.
    The reason for this post is one particular problem that I encountered. I want to extract the X and Y coordinates (which are naturally stored as SDO_GEOMETRY in my database) for certain features that are visible in my map window (this features belong to themebasedFOIs). I know that the x and y coordinates (and other attribs) are easily accessible for the JavaScript Client if the coordinates are stored in own columns (additionally to the information stored in the SDO_GEOMETRY) ... but that is not the case!
    I searched the JavaScript API, the Internet, this forum and it took me a long time ... but I didn't come across any possiblity to manage this. So does anybody who reads this post see a possibility to get my X and Y coordinates from my HTML application that is build with JavaScript API???
    I will be very thankful for any advices and/or hints... :-)
    With regards

    hi, we don't return the geometry back to the client unless the foi is a point.

  • XI settings, change of Data Types and XI still maps old structures

    Hi,
    I have defined XI scenario, where synchronous WebService is being called, and XI calls RFC function module, which returns data. It was working perfectly, until
    I have changed the order of few fields in Data Type and added a few new (exactly as the changes in RFC function module).
    And now the WebService returns exception, on the first field added to the interface:
    <Trace level="1" type="T">com.sap.aii.utilxi.misc.api.BaseRuntimeException: RuntimeException in Message-Mapping transformation: Cannot produce target element /ns1:MT_BMS_Response/CUSTOMERS_PERSON/TITLE. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd at
    TITLE is added field.
    I have reactivated everything one by one again, clear cache from Integration Builder and Integration Directory, but it does not help and still old structures are being used in XI.
    I have tested the Interface Mapping and all fields are transformed correctly.
    Please help as it comes a little urgent and I have run out of ideas what to do to refresh the customizing of data types?
    Thank you in advance!

    Hi Peter,
    Yes, I am calling RFC function module from XI.
    After I changed the interface of RFC in SAP, I have imported this RFC once more to XI in Integration Builder and new structures appeared.
    And exception returned is that first new field added to the RFC and Data Type and so on, returns an exception.
    And returned XML structures (in message monitoring) appears to be still old structures.

  • How can I get rid of ios6 ? I have had this iPad for less than 2 weeks and,ade the mistle of "upgrading" to ios6 and now my map is completely useless.  Feel like I have been robbed

    how can I get rid of ios6 ? I have had this iPad for less than 2 weeks and made the mistake of "upgrading" to ios6 and now my map is completely useless.  Feel like I have been robbed

    There are alternatives. But none of them have Google street view, able to work on iOS 6. Apple should have offered this as a beta version, for a few more months instead of inflicting us with an inferior product. This iPad will probably be my last Apple product. A shame, because until last a few days ago, I thought the iPad and iPhone were fantastic.
    Apple should quit their petty squabbling with, Google and Samsung and concentrate on supplying the best product.
    Google and Samsung must be enjoying this particular fiasco.

Maybe you are looking for