Geography Markup Language

Is there some api like XSU for XML that allows to obtain the result of a spatial query in GML directly?
thank you for your help,
null

Alison Lane - reference Oracle to SVG manipulation
Sorry to disturb you but.....
I am just starting a University Project which will attempt to
retrieve geospatial data from an 8i database.
I would like to display the intelligent data as Scalable Vector
graphics which I believe could then be queried using JavaScript
functions such as "MouseOver" to retrieve attributes of the
displayed vector line(s). I would like to then requery the
database for additional map related data for display or related
data for the web user.
I have previously used Java Server Pages sucessfully to retrieve
data to tables on a web page and so I assume that I can do the
same for gespatial data. Data volumes will be obviously
significantly greater.
I believe the transformation to SVG is a realistic challenge for
me but my question is..
Does Oracle8i provide any direct techniques which would make
life easier for me?
Should I use xml and or GML(Geographic Markup Language) as
intermediate steps in the translation process.
regards

Similar Messages

  • Easy markup language for txt to odt/rtf/doc conversion

    Hi everyone,
    I write prose for a living and so far have only used word processors like Open Office and Abiword. I don't need about 90% of the features these programs offer, so I've started playing around with Vim, which is a lot of fun and far less distracting than OO. Only thing that keeps me from ditching a word processor now is a simple markup language for my text files so that after a conversion to doc/rtf/odt italics and bold characters are shown. The publishers I work with only accept documents that are Word compatible, so anything else is unfortunately out of the question.
    Any ideas?

    Thanks for your suggestions. Didn't see that there was already a thread with a similar question. Asciiword and txt2tags sound like something worth checking out. HTML would do, but I'd still need to convert to doc or rtf. I'll have a look at xml as well though I'm not sure that's quite the way to go as it would add more formating to my writing and not less.  We'll see. At least I have a few reference points now to get me started.

  • Markup language limiting

    Hope this is the proper place to comment on the way that the Discussions software works...it appears to be.
    I'm continually frustrated by the overly simplistic markup language on these Forums. Using characters such as the plus, asterisk, brackets, etc, for marking up causes numerous headaches when these characters are desired in the post. Most notably, Apple's own log files get significantly butchered when simply copying into a post. The most common element in the logs is a process name or unique # inside brackets. This gets marked up unintentionally to a hyperlink.
    Additionally, quoting a long section of text requires the tedious process of inserting "> " before each line, rather than something at the beginning and end.
    A much more user-friendly method, IMHO, is employed on forums using vBulletin, for example. On those bulletin boards, marking up is done much less ambiguously, yet far more intuitively. If I want something in bold, I wrap the intended item in "{B}" and "{/B}". Of course, those aren't actually curly brackets, they're straight...but I can't use that character here or I'll get a hyperlink!
    Is there some reason this limiting method has continued to be used here? I never have any gripes when using markup on a vBulletin forum, but continually grumble and have to "reformat" my text here. :-\
    Thanks,
    Fred

    Fred Turner wrote:
    If I want something in bold, I wrap the intended item in "{B}" and "{/B}". Of course, those aren't actually curly brackets, they're straight...but I can't use that character here or I'll get a hyperlink!
    Fred ~ Nesting such special characters in the tag will prevent their interpretation as special characters:
    Place your special characters here
    ...so your straight brackets will appear as:
    "" and ""{code}
    Fred Turner wrote:
    Additionally, quoting a long section of text requires the tedious process of inserting "> " before each line...
    The following long section of text was quoted by inserting a single "> " in front of it:
    "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
    But quoting long sections of text in-line can make the thread difficult to read. An alternative is to link to your text posted elsewhere, e.g. at free posterous.com. Here's an example of a crash report posted there by converting the report to a PDF and attaching that to an email sent to Posterous:

  • How to use VML(Vector Markup Language) in swing Components

    hi .
    i have an xml file that contain VML .
    how can i load VML into jEditorPane .
    Or
    does swing Component such as jEditorPane supports VML .
    thanks

    hi,
    wondering if you got your answer to VML support in SWING?
    thanks

  • UnmarshalException: unexpected element (uri:...

    Hello,
    I have an ugly problem while trying to unmarshal my xml-instance with JAXB (WSDP2.0). I hope that you may help.
    With the tool XJC I have generated some Java-classes from XML-Schema
    xjc.bat -debug -readOnly -b myBindingFile.xjb -extension -d ./java xsd\MyMainSchema.xsd>error.txtThere was no error message, so I thought that everything was fine
    The file MyMainSchema.xsd uses/imports several other XML-Schemas.
    Among other imported elements I am using some elements of OGC (GML3.1.1,Geography Markup Language) for example gml:Polygon.
    Schema:
    <xsd:schema xmlns="my:package:structure:MyRoot"
    xmlns:x="...."
    xmlns:y="...."
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:gml="http://www.opengis.net/gml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="my:package:structure:MyRoot"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    version="0.1">
    <xsd:import namespace="x" schemaLocation="../x.xsd"/>
    <xsd:import namespace="y" schemaLocation="../y.xsd"/>
    <xsd:element name="MyRoot" type="MyRootType"/>
    <xsd:complexType name="MyRootType">
    <xsd:sequence>
       <xsd:element ref="x:element1" minOccurs="0"/>
       <xsd:element ref="y:element2" minOccurs="0"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>element2 contains on lower level some GML-elements
    If I generate a valide instance of the schema and try to unmarshal (Schema->java-classes, I have done this in the following way:
    JAXBContext jc = JAXBContext.newInstance(my.package.structure.MyRootType.class);
    Unmarshaller u = jc.createUnmarshaller();
    FileInputStream f_in = new FileInputStream("C://my/path/to/instance/instance.xml"");      
    MyRootType doc = (MyRootType)u.unmarshal(f_in);Now I get an error message:
    javax.xml.bind.UnmarshalException: unexpected element (uri:"my:package:structure:MyRootType", local:"MyRoot").
    Expected elements are
    <{http://www.opengis.net/gml}Array>,
    <{http://www.opengis.net/gml}Bag>,
    <{http://www.opengis.net/gml}BaseUnit>,
    <{http://www.opengis.net/gml}validTime>,
    <{http://www.opengis.net/gml}vector>Can anybody please help and tell me where I may search for the error. I tried several hours to eliminate the error, but all without success.
    It seems that JAXB is searching for an element out of the GML-namespace but I don't understand why.
    the y:element2 contains a gml:Polygon, but I think that this can not be the cause
    Thanks a lot for your help!
    tine

    xsi:noNamespaceSchemaLocation="F:\Data\NetBeansProjects\834Parser\data\enrollmentschema.xsd"I did some googling; all of the examples of the xsi:noNamespaceSchemaLocation I found were too simple. But eventually I found a document which suggested that the value of this attribute should be a URI. Which makes sense since the schema specs were written by the W3C for use in Internet applications. And you haven't provided a URI there.

  • Oracle10g Spatial - Some information

    Hi,
    Some of the talks at Oracle World this week will discuss publicly for the first time some of the new features in Spatial for Oracle10g. There has been some interest expressed in this forum in finding out what to expect, so some information has been put together specifically to post here.
    A brief list of major features include:
    Topology Data Model - The ability to store and maintain spatial data in a topologically consistent way using nodes, edges, and faces. The topology model is a persistent (stored) model. Java and PL/SQL APIs are provided for applications/users who want to update topology data. The ability to select spatial features from the topological primitives is supported, as is the ability to store spatial features in a separate geometry column.
    Network Data Model - The ability to store and maintain connectivity (graph) information in the database. The network data model includes a routing engine, and it can be integrated with spatial data, linear referenced spatial data, or topology data. Cost information can be stored and accounted for when doing network analysis.
    GeoRaster - The ability to store, index, and retrieve Raster data (image, grid, raster, you name it) using the Oracle 10g database. Oracle Spatial GeoRaster includes an xml metadata schema for GeoRaster metadata. GeoRaster supports georeferenced data so you can dynamically determine which pixels/cells to fetch from an image based on a set of Earth coordinates and determine Earth coordinates based on pieces of an image. It also includes the ability to publish GeoRaster data as GIFF or JPEG images.
    GeoCoding - New function to generate long/lat from Address data.
    Spatial data mining features for use in demographics, epidemiology, insurance, business analysis, etc.
    New, supported Java API (ships with Spatial). Includes in-memory R-tree indexing.
    In the Application server associated with 10g, a faster and improved version of MapViewer.
    A short (incomplete) list of other new features include:
    Transportable tablespace support for tables with Spatial indexes.
    Generate the location of a point given a start point and bearing.
    Generate GML (geography markup language) from spatial data.
    SDO_JOIN feature to optimally combine two layers based on spatial interactions.
    Default for SDO_RELATE and SDO_FILTER is now querytype=window, which no longer needs to be specified.
    New operators for specific interactions, such as SDO_INSIDE and SDO_ANYINTERACT.
    New function to validate WKTEXT of user-defined coordinate systems.
    MBR type is now supported for geodetic data (internally densifies every degree of latitude).
    LRS enhancements to include signed offset for some functions.
    New function to estimate the R-tree index size before it is created.
    Interior buffers (negative buffer distance).
    ...and many others.
    Thanks for using spatial, and hopefully the new features will help with current development as well as give ideas for future work using spatial.

    I got some info at https://www.oracleworld2003.com/published/40125/40125_Lopez.doc and at
    https://www.oracleworld2003.com/published/40125/40125_Lopez_v3.ppt
    However, I would like to know some details about nw functions, model etc.
    Thanks
    Syed

  • Geography data type: GeomFromGml

    I have troubles to load data into a geography data type:
    DECLARE @g geography;
    DECLARE @x xml;
    SET @x = '<gml:MultiSurface gml:id="HVO.20584" srsName="urn:ogc:def:crs:EPSG::5514" srsDimension="2" xmlns:gml="http://www.opengis.net/gml/3.2">
    <gml:surfaceMember>
    <gml:Polygon gml:id="HVO.20584.1">
    <gml:exterior>
    <gml:LinearRing>
    <gml:posList>-747267.00 -1056204.00 -747226.00 -1056232.00 -747239.00 -1056253.00 -747251.00 -1056278.00 -747267.00 -1056315.00 -747291.00 -1056365.00 -747337.00 -1056470.00 -747311.00 -1056474.00 -747244.00 -1056475.00 -747155.00 -1056467.00 -747077.00 -1056501.00 -747112.00 -1057366.00 -747263.00 -1057857.00 -747263.20 -1057857.05 -747263.30 -1057856.60 -747272.50 -1057858.50 -747276.10 -1057850.21 -747285.47 -1057849.89 -747295.34 -1057849.55 -747308.73 -1057848.34 -747320.38 -1057847.28 -747346.97 -1057857.70 -747358.66 -1057860.00 -747374.12 -1057860.55 -747386.06 -1057860.19 -747407.98 -1057859.54 -747444.60 -1057874.26 -747447.75 -1057879.52 -747454.57 -1057890.92 -747674.02 -1057865.46 -747851.54 -1057841.44 -747855.78 -1057838.67 -747871.68 -1057851.47 -747902.20 -1057870.55 -747916.06 -1057881.32 -747934.07 -1057891.87 -747960.03 -1057915.53 -747985.14 -1057954.40 -748001.13 -1057977.02 -748021.22 -1058003.59 -748088.58 -1058092.68 -748104.73 -1058095.49 -748166.00 -1058032.60 -748193.50 -1058002.40 -748214.40 -1057982.20 -748216.40 -1057988.60 -748293.20 -1058053.20 -748297.14 -1058050.03 -748302.55 -1058045.67 -748306.53 -1058042.47 -748311.89 -1058038.15 -748316.50 -1058034.44 -748320.83 -1058030.95 -748330.04 -1058023.54 -748332.15 -1058021.83 -748337.10 -1058017.85 -748341.39 -1058014.39 -748353.30 -1058004.80 -748347.67 -1057996.70 -748338.28 -1057981.31 -748335.70 -1057977.29 -748332.12 -1057971.71 -748330.30 -1057968.92 -748325.55 -1057961.32 -748317.05 -1057947.55 -748310.89 -1057935.02 -748307.10 -1057924.52 -748302.70 -1057912.35 -748298.54 -1057900.12 -748295.48 -1057891.13 -748286.20 -1057862.27 -748278.37 -1057838.25 -748276.55 -1057834.04 -748267.49 -1057808.20 -748264.92 -1057798.33 -748262.21 -1057787.93 -748254.57 -1057761.59 -748251.89 -1057752.13 -748247.59 -1057736.93 -748240.11 -1057716.13 -748237.47 -1057685.67 -748234.93 -1057657.42 -748234.51 -1057652.51 -748234.98 -1057625.54 -748234.51 -1057622.46 -748231.40 -1057602.21 -748233.13 -1057596.29 -748234.13 -1057592.87 -748237.61 -1057582.60 -748238.48 -1057580.02 -748249.72 -1057571.70 -748250.10 -1057571.42 -748252.39 -1057569.73 -748256.83 -1057563.57 -748258.55 -1057540.99 -748250.24 -1057535.67 -748250.94 -1057526.41 -748243.01 -1057522.35 -748236.51 -1057522.75 -748234.73 -1057522.86 -748230.54 -1057518.95 -748211.65 -1057501.36 -748199.48 -1057493.59 -748189.98 -1057489.26 -748179.90 -1057484.66 -748168.54 -1057470.65 -748168.29 -1057470.34 -748165.98 -1057467.49 -748157.92 -1057458.13 -748147.31 -1057450.99 -748146.04 -1057423.54 -748145.40 -1057410.42 -748144.91 -1057400.47 -748144.08 -1057372.43 -748142.62 -1057348.91 -748142.48 -1057347.16 -748141.05 -1057329.37 -748142.26 -1057321.94 -748146.21 -1057304.13 -748148.14 -1057295.42 -748146.30 -1057289.44 -748144.73 -1057284.34 -748141.64 -1057275.31 -748144.63 -1057272.64 -748154.01 -1057247.80 -748151.29 -1057246.55 -748127.50 -1057235.56 -748110.70 -1057228.23 -748082.39 -1057214.75 -748057.48 -1057203.76 -748041.82 -1057196.01 -748029.14 -1057189.74 -748010.10 -1057178.36 -747979.25 -1057161.25 -747957.25 -1057147.63 -747943.14 -1057138.66 -747937.35 -1057131.26 -747926.97 -1057121.60 -747909.48 -1057109.13 -747904.01 -1057106.36 -747895.25 -1057106.99 -747873.33 -1057094.64 -747869.74 -1057093.00 -747851.77 -1057082.31 -747869.79 -1057044.54 -747836.92 -1057032.09 -747795.65 -1057016.73 -747793.70 -1057009.93 -747787.82 -1056992.87 -747781.28 -1056974.44 -747776.81 -1056960.35 -747768.14 -1056933.57 -747762.16 -1056911.71 -747757.80 -1056895.21 -747753.30 -1056877.50 -747749.17 -1056859.18 -747744.25 -1056838.69 -747741.79 -1056821.91 -747739.99 -1056803.90 -747737.12 -1056781.92 -747735.82 -1056761.48 -747735.01 -1056740.42 -747736.57 -1056718.66 -747738.55 -1056694.68 -747741.17 -1056669.07 -747744.02 -1056634.01 -747745.17 -1056623.46 -747748.09 -1056596.69 -747755.37 -1056564.46 -747759.01 -1056547.20 -747761.29 -1056536.38 -747761.56 -1056535.10 -747772.54 -1056491.85 -747774.05 -1056485.90 -747786.35 -1056435.41 -747786.99 -1056433.22 -747796.41 -1056400.93 -747799.01 -1056392.00 -747799.01 -1056392.00 -747799.00 -1056392.00 -747723.00 -1056390.00 -747615.00 -1056374.00 -747596.00 -1056372.00 -747564.00 -1056375.00 -747539.00 -1056382.00 -747513.00 -1056389.00 -747487.00 -1056344.00 -747472.00 -1056316.00 -747458.00 -1056290.00 -747455.00 -1056283.00 -747445.00 -1056265.00 -747433.00 -1056243.00 -747424.00 -1056225.00 -747420.00 -1056218.00 -747412.00 -1056205.00 -747399.00 -1056188.00 -747388.00 -1056173.00 -747383.00 -1056167.00 -747371.00 -1056154.00 -747370.00 -1056153.00 -747362.00 -1056145.00 -747356.00 -1056141.00 -747356.00 -1056140.00 -747334.00 -1056160.00 -747267.00 -1056204.00</gml:posList>
    </gml:LinearRing>
    </gml:exterior>
    </gml:Polygon>
    </gml:surfaceMember>
    </gml:MultiSurface>';
    SET @g = geography::GeomFromGml(@x, 4326);
    I get this exception:
    A .NET Framework error occurred during execution of user-defined routine or aggregate "geography": System.FormatException: 24129: The given XML instance is not valid because the top-level tag is gml:MultiSurface. The top-level element of the input
    Geographic Markup Language (GML) must contain a Point, LineString, Polygon, MultiPoint, MultiGeometry, MultiCurve, MultiSurface, Arc, ArcString, CompositeCurve, PolygonPatch or FullGlobe (geography Data Type only) object.
    What do I need to change in the @x variable
    to get it working? 
    The example data above come from government provided source and should be some small part of Czech Republic. I need to store them in MSSQL table.
    Thanks for suggestons.

    Hi,
    1. First use http://www.opengis.net/gml namespace, not the http://www.opengis.net/gml/3.2
    2. remove extra parameters from top level tag
    gml:id="HVO.20584" srsName="urn:ogc:def:crs:EPSG::5514" srsDimension="2"
    3. Your data is not correct!
    Read the Error and fix the data in the the <gml:posList> tag
    Latitude values must be between -90 and 90 degrees.
    here is example:
    DECLARE @g geography;
    DECLARE @x xml;
    SET @x = '
    <gml:MultiSurface xmlns:gml="http://www.opengis.net/gml">
    <gml:surfaceMember>
    <gml:Polygon>
    <gml:exterior>
    <gml:LinearRing>
    <gml:posList>
    <!--
    -747267.00 -1056204.00 -747226.00 -1056232.00 -747239.00 -1056253.00 -747251.00 -1056278.00 -747267.00 -1056315.00 -747291.00 -1056365.00 -747337.00 -1056470.00 -747311.00 -1056474.00 -747244.00 -1056475.00 -747155.00 -1056467.00 -747077.00 -1056501.00 -747112.00 -1057366.00 -747263.00 -1057857.00 -747263.20 -1057857.05 -747263.30 -1057856.60 -747272.50 -1057858.50 -747276.10 -1057850.21 -747285.47 -1057849.89 -747295.34 -1057849.55 -747308.73 -1057848.34 -747320.38 -1057847.28 -747346.97 -1057857.70 -747358.66 -1057860.00 -747374.12 -1057860.55 -747386.06 -1057860.19 -747407.98 -1057859.54 -747444.60 -1057874.26 -747447.75 -1057879.52 -747454.57 -1057890.92 -747674.02 -1057865.46 -747851.54 -1057841.44 -747855.78 -1057838.67 -747871.68 -1057851.47 -747902.20 -1057870.55 -747916.06 -1057881.32 -747934.07 -1057891.87 -747960.03 -1057915.53 -747985.14 -1057954.40 -748001.13 -1057977.02 -748021.22 -1058003.59 -748088.58 -1058092.68 -748104.73 -1058095.49 -748166.00 -1058032.60 -748193.50 -1058002.40 -748214.40 -1057982.20 -748216.40 -1057988.60 -748293.20 -1058053.20 -748297.14 -1058050.03 -748302.55 -1058045.67 -748306.53 -1058042.47 -748311.89 -1058038.15 -748316.50 -1058034.44 -748320.83 -1058030.95 -748330.04 -1058023.54 -748332.15 -1058021.83 -748337.10 -1058017.85 -748341.39 -1058014.39 -748353.30 -1058004.80 -748347.67 -1057996.70 -748338.28 -1057981.31 -748335.70 -1057977.29 -748332.12 -1057971.71 -748330.30 -1057968.92 -748325.55 -1057961.32 -748317.05 -1057947.55 -748310.89 -1057935.02 -748307.10 -1057924.52 -748302.70 -1057912.35 -748298.54 -1057900.12 -748295.48 -1057891.13 -748286.20 -1057862.27 -748278.37 -1057838.25 -748276.55 -1057834.04 -748267.49 -1057808.20 -748264.92 -1057798.33 -748262.21 -1057787.93 -748254.57 -1057761.59 -748251.89 -1057752.13 -748247.59 -1057736.93 -748240.11 -1057716.13 -748237.47 -1057685.67 -748234.93 -1057657.42 -748234.51 -1057652.51 -748234.98 -1057625.54 -748234.51 -1057622.46 -748231.40 -1057602.21 -748233.13 -1057596.29 -748234.13 -1057592.87 -748237.61 -1057582.60 -748238.48 -1057580.02 -748249.72 -1057571.70 -748250.10 -1057571.42 -748252.39 -1057569.73 -748256.83 -1057563.57 -748258.55 -1057540.99 -748250.24 -1057535.67 -748250.94 -1057526.41 -748243.01 -1057522.35 -748236.51 -1057522.75 -748234.73 -1057522.86 -748230.54 -1057518.95 -748211.65 -1057501.36 -748199.48 -1057493.59 -748189.98 -1057489.26 -748179.90 -1057484.66 -748168.54 -1057470.65 -748168.29 -1057470.34 -748165.98 -1057467.49 -748157.92 -1057458.13 -748147.31 -1057450.99 -748146.04 -1057423.54 -748145.40 -1057410.42 -748144.91 -1057400.47 -748144.08 -1057372.43 -748142.62 -1057348.91 -748142.48 -1057347.16 -748141.05 -1057329.37 -748142.26 -1057321.94 -748146.21 -1057304.13 -748148.14 -1057295.42 -748146.30 -1057289.44 -748144.73 -1057284.34 -748141.64 -1057275.31 -748144.63 -1057272.64 -748154.01 -1057247.80 -748151.29 -1057246.55 -748127.50 -1057235.56 -748110.70 -1057228.23 -748082.39 -1057214.75 -748057.48 -1057203.76 -748041.82 -1057196.01 -748029.14 -1057189.74 -748010.10 -1057178.36 -747979.25 -1057161.25 -747957.25 -1057147.63 -747943.14 -1057138.66 -747937.35 -1057131.26 -747926.97 -1057121.60 -747909.48 -1057109.13 -747904.01 -1057106.36 -747895.25 -1057106.99 -747873.33 -1057094.64 -747869.74 -1057093.00 -747851.77 -1057082.31 -747869.79 -1057044.54 -747836.92 -1057032.09 -747795.65 -1057016.73 -747793.70 -1057009.93 -747787.82 -1056992.87 -747781.28 -1056974.44 -747776.81 -1056960.35 -747768.14 -1056933.57 -747762.16 -1056911.71 -747757.80 -1056895.21 -747753.30 -1056877.50 -747749.17 -1056859.18 -747744.25 -1056838.69 -747741.79 -1056821.91 -747739.99 -1056803.90 -747737.12 -1056781.92 -747735.82 -1056761.48 -747735.01 -1056740.42 -747736.57 -1056718.66 -747738.55 -1056694.68 -747741.17 -1056669.07 -747744.02 -1056634.01 -747745.17 -1056623.46 -747748.09 -1056596.69 -747755.37 -1056564.46 -747759.01 -1056547.20 -747761.29 -1056536.38 -747761.56 -1056535.10 -747772.54 -1056491.85 -747774.05 -1056485.90 -747786.35 -1056435.41 -747786.99 -1056433.22 -747796.41 -1056400.93 -747799.01 -1056392.00 -747799.01 -1056392.00 -747799.00 -1056392.00 -747723.00 -1056390.00 -747615.00 -1056374.00 -747596.00 -1056372.00 -747564.00 -1056375.00 -747539.00 -1056382.00 -747513.00 -1056389.00 -747487.00 -1056344.00 -747472.00 -1056316.00 -747458.00 -1056290.00 -747455.00 -1056283.00 -747445.00 -1056265.00 -747433.00 -1056243.00 -747424.00 -1056225.00 -747420.00 -1056218.00 -747412.00 -1056205.00 -747399.00 -1056188.00 -747388.00 -1056173.00 -747383.00 -1056167.00 -747371.00 -1056154.00 -747370.00 -1056153.00 -747362.00 -1056145.00 -747356.00 -1056141.00 -747356.00 -1056140.00 -747334.00 -1056160.00 -747267.00 -1056204.00
    -->
    60.459099 16.926436 60.460080 16.933631 60.460272 16.935328 60.460563 16.936937 60.474139 16.929063 60.474348 16.930889 60.476611 16.929621 60.479701 16.929346 60.479487 16.922792 60.476801 16.923118 60.475752 16.921900 60.472010 16.923844 60.470093 16.920215 60.459099 16.926436
    </gml:posList>
    </gml:LinearRing>
    </gml:exterior>
    </gml:Polygon>
    </gml:surfaceMember>
    </gml:MultiSurface>
    select @x
    SET @g = geography::GeomFromGml(@x, 4326);
    [Personal Site] [Blog] [Facebook]

  • InDesign export Text Layout Framework Markup

    hi there
    as described in title, i'm having troubles exporting an InDesign comp in a decent way
    my quesitons are:
    1 - It exists a DTD for Text Layout Framework Markup Language ?
    2 - Is there an export module that make me able to do it automatically? because tagging all the elements is a pain, and there is just a little documentation about the markup language
    If not, are there any plans to do it?
    I personally think that an export module will be very helpful and will score another goal on products' integration
    Thanx for your time

    Regarding a DTD see this post http://forums.adobe.com/message/2221283#2221283
    I can't comment on any plans for ID to export TLF markup.  Definitely a good idea.
    Thanks,
    Richard

  • Query language for XML that is going to remove use of database

    Friends,
    I want to know whether my idea is feasible or not.
    I want to make a query language similar to SQL for XML which is going to remove the need for database for a large extent.
    Their will be queries for making table,extracting data,making foreign key all through XML and no database.
    I just want to know that is their any market value for such a project and will it be sellable,so that i can start working on it.

    There is no way to judge any future market for such a thing.
    As it is, XML is widely abused, having mutated from its original purpose, a markup language readable by both machine and human, to a general data interchange language. It winds up being extremely slow and convoluted, in some cases overwhelming the hardware when a simple and common error occurs, then having to catch up. A big part of this is the silly and redundant method of defining metadata, again and again and again and again.
    So what you want to do is create a database which will be highly formatted with redundant information, dynamically. This is silly, why does data need to be stored in a human readable format? It doesn't always even need to be presented in a human readable format! Why the heck would you need to read the bits of an mp4? Steganography?
    What you are proposing is the exact opposite of what is needed. What is needed is a way to describe metadata for many different kinds of data, in a manner that can be interpreted by both man and machine at appropriate times, extensible for various paradigms.
    What can be sold, on the other hand, is another question entirely, and not technical at all.
    First definition of database that pops up during a search: an organized body of related information
    Why would you want to get rid of that?

  • Coldfusion mark up language vs jsp

    Can anyone tell me the pros and cons of developing an application using coldfusion vs jsp.
    There is very little on the web about the CONS of ColdFusion's MX release. The ColdFusion language is considered very easy to learn for people with a programming background. ColdFusion Markup Language must have some disadvantages compared with developing in Java. Any resources would be appreciated.
    Cheers
    Liz

    ColdFusion's primary purpose is rapid application development (RAD). And in this area, CFML smokes Java.
    Though, it's not like RAD is java's primary purpose. CFMX and Java are both Java languages with different purposes and really shouldn't even be compared. It's like trying to compare pure Java to JSP to EJB's... what's the point? You should instead be looking at what each technology brings to the table and how they can work together to compliment and enhance each other. Remember, it's not a competition or war between the two technologies any more... they're part of the same family now.
    For many applications, the Java language is just plain overkill. And for many applications, cfmx won't provide the scalability and power needed. And more times then not, it's not the language or technology that brings forth a better solution, rather the person writing the code and whether he/she knows how to properly use it.

  • Implementing MathML markup in APEX reports

    Hello all,
    I was wondering if anyone ever made an attempt to insert math markup language into APEX. I have been looking at some documentation online (http://www.w3.org/TR/MathML3/) and everything works fine locally (when I create a blank .xml file and fiddle there). But I can't seem to bring that over to APEX.
    My guess is that APEX renders pages as HTML and therefore can't render some of the math notations. Is this true, and if so, is there any way for me to force an APEX page to render as an xml page instead?
    Thanks in advance for you assistance.
    Ivan

    Hi,
    I hope this might help you to output XML
    http://tylermuth.wordpress.com/2008/01/22/producing-rss-from-plsql/
    Blog sample link do not work, but I did same to my server with some modification
    http://actionet.homelinux.net/htmldb/f?p=LSPDEMO:RSS:0
    Br,Jari

  • String-formatting markup search

    The properties for string formatting are many and could support a parsing function that would take a string containing markup and produce a formatted string.  Has anyone done this or know of any code available to implement this?
    I would like to be able to write a string like this:
    <color: red><b>Error: </b></color>An error occured. Please check all <i>cable connections</i>.
    and produce a display like this:
    Error:  An error occurred.  Please check all cable connections.
    Which markup language to use is TBD.  Just looking for starters.

    Well, in fact, that is a great idea and exactly what I hope to do.    I just am wondering if somebody has already done it.

  • SVG highlight syntax markup

    I've been trying to use Code more and more as a simple text editor, sort of replacing my basic Text Wrangler app, and it works nicely.
    But since we're in the multiple resolution era, i'm starting to use more and more svg which is a basic markup language, and i would love it if it were recognized as an xml file, with colors when things are between
    I have no idea how to make anything inside angle-brackets to be coloured, and maybe it's an easy extension to build (maybe even just a duplicate of something existing, with svg instead of xml), but that would help a lot.
    (And i don't need any autocompletion or anything, just basic syntax highlighting, the more colors, the happier)

    Thanks for reporting this issue. It can be easily fixed by adding case "svg": into editor/EditorUtils.js just before the line case "xml":
    Could you please log this issue into our Brackets GitHub?

  • Only one language for LibreOffice?

    In the past I have managed to have multiple languages available in LibreOffice with their appropriate spellcheckers working. I prefer to use English as my interface language (always) and sometimes other languages in the documents. This doesn't seem to be possible anymore. I have the desired language packs installed as well as all the required spellcheck tools (at least as far as I know). For some reason only the US English language is available in the language settings. If I remove the US English language pack, the interface language obviously changes, but still the only available spellchecker is US English in the languages menu.
    Here is the pacman -Qs output with string "libreoffice":
    pacman -Qs libreoffice
    local/libreoffice-base 4.0.2-3 (libreoffice)
    GUI database front-end for LibreOffice. Allows creation and management of
    databases through a GUI.
    local/libreoffice-calc 4.0.2-3 (libreoffice)
    Spreadsheet application for LibreOffice.
    local/libreoffice-common 4.0.2-3 (libreoffice)
    common files for LibreOffice - a productivity suite that is compatible with
    other major office suites
    local/libreoffice-draw 4.0.2-3 (libreoffice)
    Drawing Application for LibreOffice.
    local/libreoffice-en-US 4.0.2-3
    English (US) language pack for LibreOffice
    local/libreoffice-extension-ct2n 3.4.5-2 (libreoffice-extensions)
    This extension enables you to convert text-cells in Calc with numbers and
    dates, to real numbers and dates.
    local/libreoffice-extension-diagram 3.4.5-2 (libreoffice-extensions)
    An OOo Draw and Impress extension that creates your favorite diagrams with a
    few clicks
    local/libreoffice-extension-google-docs 3.4.5-2 (libreoffice-extensions)
    Google Documents extension for LibreOffice
    local/libreoffice-extension-hunart 3.4.5-2 (libreoffice-extensions)
    Hungarian cross-reference toolbar extension
    local/libreoffice-extension-nlpsolver 4.0.2-3 (libreoffice-extensions)
    This extension integrates into Calc and offers new Solver engines to use for
    optimizing nonlinear programming models
    local/libreoffice-extension-oooblogger 3.4.5-2 (libreoffice-extensions)
    An extensions for blogging
    local/libreoffice-extension-presentation-minimizer 4.0.2-3 (libreoffice-extensions)
    This extension reduce the file size of the current presentation
    local/libreoffice-extension-report-builder 4.0.2-3 (libreoffice-extensions)
    This extension creates smart-looking database reports
    local/libreoffice-extension-scripting-beanshell 3.4.5-2 (libreoffice-extensions)
    LibreOffice extension - Enables support for scripts in BeanShell
    local/libreoffice-extension-scripting-javascript 3.4.5-2 (libreoffice-extensions)
    LibreOffice extension - Enables support for scripts in JavaScript
    local/libreoffice-extension-typo 3.4.5-2 (libreoffice-extensions)
    Typography toolbar extension
    local/libreoffice-extension-validator 3.4.5-2 (libreoffice-extensions)
    Validator extension for LibreOffice
    local/libreoffice-extension-watch-window 3.4.5-2 (libreoffice-extensions)
    A OOo Calc extension to add a Watch Window, which keeps the value of the
    monitored cell on the screen.
    local/libreoffice-extension-wiki-publisher 4.0.2-3 (libreoffice-extensions)
    This extension enables you to create Wiki articles on MediaWiki servers
    without having to know the syntax of the MediaWiki markup language
    local/libreoffice-fi 4.0.2-1
    Finnish language pack for LibreOffice
    local/libreoffice-gnome 4.0.2-3 (libreoffice)
    Plug-in for LibreOffice that enables integration into the Gnome and other
    gtk desktop environment.
    local/libreoffice-impress 4.0.2-3 (libreoffice)
    Presentation Application for LibreOffice.
    local/libreoffice-kde4 4.0.2-3 (libreoffice)
    Plug-in for LibreOffice that enables integration into the KDE4 desktop
    environment.
    local/libreoffice-math 4.0.2-3 (libreoffice)
    Equation Editor Application for LibreOffice.
    local/libreoffice-postgresql-connector 4.0.2-3 (libreoffice)
    A PostgreSQL connector for the database front-end for LibreOffice
    local/libreoffice-sdk 4.0.2-3 (libreoffice)
    Software Development Kit for LibreOffice.
    local/libreoffice-sdk-doc 4.0.2-3 (libreoffice)
    Software Development Kit documentation for LibreOffice
    local/libreoffice-writer 4.0.2-3 (libreoffice)
    Word Processor Application for LibreOffice.
    local/voikko-libreoffice 3.4-1
    Finnish spellchecker, grammar checker and hyphenator extension for
    libreoffice
    Any ideas? What am I doing wrong?

    Hunspell is installed. One of the languages I'm using is Finnish and its spellchecker is from the AUR.
    Another problem has emerged: Now the whole LibreOffice crashes when I am okaying the changes in the language menu.
    Last edited by raavas (2013-05-04 07:32:08)

  • CS5 or CS5.5?

    I have CS5 on my Mac laptop and my Imac at work. I was sent the upgrade to 5.5 but am not sure whether to load it. Two times I was sent a file from someone else asking for my design help and I am getting a missing plug in error when I try to open the InDesign file. First time I totally recreated the project and didn't bother with the file that wouldn't open. If I upgrade my laptop to 5.5 and not my mac at work, I'm afraid my laptop won't work smoothly with my work Mac like it does now. Need advise! I know about having clients save their InDesign files to IDML but will that open smoothly in my CS5 at work.

    A bit of a warning for anyone reading this thread:
    If you have CS5 (not sure about previous versions) and decide to use the trial version of CS5.5 for 30 days to see how you like it, but decide to stay with CS5  you will run into a major problem with any files you created in InDesign CS5.5. You absolutely CAN'T open any of your INDD files created in CS5.5 with CS5. It doesn't matter if you try to open the file from within InDesign CS5 or right-click on the file and choose "open with". It also doesn't matter if you have all of the latest plugins.
    Trust me. I learned the hard way. After a bit of research I found that the only way to open all of the InDesign files I created within the last 30 days was to save them as IDML files in CS5.5. It was a little late for that considering the fact that my CS5.5 trial had expired.
    Fortunately, I was able to download the trial version of InDesign CS5.5 by itself (even after completing a trial for CS5.5 Standard) under my existing account. I now have to open up all of my INDD files created in CS5.5 and export them as IDML (InDesign Markup Language) files so that I can open them with CS5 (seen below). I guess I'll get to that before this trial reaches it's expiration date as well!
    Surely this will be corrected soon . . . in the meantime, if anyone has a better solution, please share!

Maybe you are looking for

  • Cant use my iMessage in my macbook pro and receive my last emails

    i cant use my imessage in my mac cause its say that :   message cant log in to my email cause my login ID or pasword is incorrect but when i try to get ito my email account i can opened, the problem is only in my macbook pro.  the other problem is th

  • XSLT mapping tool

    Hi All, I am abap consultant, so its difficult to write a XSLT mapping program. Is there any XSLT mapping tool available on net to use free? Which can take source XML & Target XML and upon doing graphical mapping it generates the XSLT mapping program

  • Sales invoice Smartform printing in dot matrix printer in sucession

    Dear all, I am trying to Print Sales invoice on Dot matrix Printer. My First Invoice is printed ok, but if i try to print second invoice without manually adjusting the paper the alignment on printer goes haywiered. Do we have some option in smartform

  • Acrobat XI Outlook 2013 plug-in problems

    I have Outlook 2013 installed on my computer and just downloaded Acrobat XI.  According to some web searches, I should get an Adobe PDF pull-down tab inside Outlook, but there is nothing there.  When I go to Outlook Options/Add-Ins the PDFMaker plug-

  • Uploaded image files not displayed correctly

    Hello everyone, I used the following article(on o'reilly) as reference for file upload: http://www.onjava.com/pub/a/onjava/2001/04/05/upload.html?page=1 While it works fine for most files types, there are problems with image files.(I am using PrintSt