GeoJSON open source library [closed] - delphi

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have made an extensive search on the net but were still in vain.
I am looking for an open source GeoJSON library.
Help me please.
Last update:
My preference goes for something build on top of SuperObject library.
GeoJSON specification.

I'm using SuperObject to parse (geojson) results that i pull from GeoServer.
GeoJson is not that complicated so i don't think it matters much which library you use.

AFAIK there is none.
But you can easily retrieve and create a GeoJSON content with a JSON library. GeoJSON content is just a tree of JSON objects.
Recent versions of Delphi have a built-in JSON parser.
Or take a look at Delphi JSON library for XE2 available for object serialization to find out some libraries. I like the one embedded in DWScript.

Related

Is there any document(doc,docx) editor available in javascript? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Can any one suggest me any library in javascript(client end) document editor where user can view and edit the documents like doc, docx, odf etc.
I have tried webodf but it doesn't support doc/docx. Also, it's not getting implemented properly as editor.
Any suggestions are welcome.
Your best bet is to look for converters, and then edit the converted content.
I've been looking for a working solution now for a couple of weeks, and the best I've found to date is docx2html.
Depending on your development platform you might also want to Google 'ONLYOFFICE Document Server Community Edition'. They have in page editors for Word, Excel and Powerpoint - but they're asp. It's an open source platform and available on Github. Might be worth a look though.

Where are Swift API docs? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Where can I find Apple Swift API Docs,
for example I want to find documents for sorted function and it's paramteres, where are these docs?
There are two ways to approach this.
One is to look at the documentation. It's on your computer; use the documentation window in Xcode and work your way down to Xcode 6 library > Languages & Utilities ? Swift > Reference > Swift Standard Library Reference.
The other, which is often preferable (though it requires more sophistication), is to look at the Swift header. It's on your computer too, but it's harder to get a look at. What I do is use the println function and command-click on println, which switches to the header.

Delphi QR Code component / generator? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am desperately looking for a QR Code component to generate QR Code. So far the only method I have found is through Google API chart but I need an offline method.
http://theroadtodelphi.wordpress.com/2010/12/06/generating-qr-codes-with-delphi/
I cannot find any component, free or not, that can generate QR code. Any idea?
Thanks!
The company I work for has released an open source (Apache License v2) Delphi QR barcode generator called DelphiZXingQRCode. It's a Delphi port of the QR code functionality from the ZXing barcode image processing library.
Here we go:
http://www.han-soft.com/barcode2dgen.php
(source: han-soft.com)
I just aksed Google. First hit, basically.
It is available as a VCL component, here:
http://www.han-soft.com/barcode2d.php
Just discovered (months late, however) ZINT. A Pascal wrapper for this exists here. This is free, open source.
Another one is at http://www.java4less.com/barcodedelphi/barcodesdelphi.php
I just bought it this week, and took about 1 hour to incorporate QR code generation into my app (and it's pure Delphi code: no DLL).

View VRML file with WebGL-capable browser [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I have a legacy application that generates VRML 1.0 files. I'd like to build a WebGL-based web interface that can display these VRML files. Is there an easy way to do so?
Edit: Specified that they are VRML 1.0.
If you can get it to VRML 2.0 (VRML '97) using a tool like the above-referenced one from Parallelgraphics, you can use the Fraunhofer Institute's tools (see discussion and links to InstantReality at http://www.x3dom.org/?page_id=532) to go from VRML 2 to either X3DOM or X3D. With Firefox or Chrome and a current graphics card and driver, you've got the WebGL support needed to run X3DOM. X3DOM handles only a subset of X3D, but can be referenced straight from XHTML and CSS, or plug-ins required. It's at a much higher level and easier to deal with than dealing directly with WebGL.
As I understand it, X3D is a development from VRML, and there's a WebGL-based renderer for it called X3DOM. Converting over is unlikely to be zero-effort, but it might be easier than trying to make the jump all the way to a "native" WebGL format.
VRML can be pretty complex with lots of interactivity and it doesn't look like a ont-to-one converter is available. However, here is what you could try:
Convert your VRML file to a standard OBJ file using something like MeshConv
Import the converted file in CopperLicht (Free) or CopperCube (Not free)
You will then have some kind of conversion of your VRML file which you can fine-tune.

YAML parser in Delphi? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Are there any YAML parsers or YAML Serialization libs in Delphi?
I have recently started a Delphi-YAML project on BitBucket:
https://bitbucket.org/OCTAGRAM/delphi-yaml
At least, I've got something running, but there are many tests missing and there are probably many bugs hiding.
I don't know about a full YAML implementation, but JSON (a subset) is getting pretty popular and there are even some Delphi libraries listed on the JSON site. Delphi 2009 is even using (a slightly modified version of?) JSON in DataSnap.
http://sourceforge.net/projects/lkjson
http://www.progdigy.com/?page_id=6
http://sourceforge.net/projects/is-webstart/
May be it is high time to implement a YAML parser in Delphi...
Copy code from PyYAML (but Python is a dynamically typed language)
Or take a look at SnakeYAML which is written in a statically typed language (Java)
Free Pascal also has some json libs.
I garbled up something like this to interface with PHP once. Here is the code:
http://www.stack.nl/~marcov/phpser.zip
Note that it is more proof of concept than an usable lib.
This open source C# YAML parser looks like it could be a starting point for a Delphi implementation:
YamlDotNet - A .NET library for parsing and emitting YAML

Resources