I am noobie for stackoverflow and xslt, so I hope that I do not look unreasonable!
So, I work with SDI for a GIS company, and I have a task that requires me to convert points that are in the same coordinate plane of the spatial coordinate system (SRS), such as EPSG: 4035, to the world of SRS, as well as EPSG : 4326. This is really not a problem for me, since I have the availability of an online service that will just give me what I want. However, the format it outputs is in JSON or HTML. For a while I was looking for a way to extract information from a JSON file, but most of the methods I saw use xslt: stylesheet version 2.0, and I have to use version 1.0. One of the methods that I thought about what I used was to use the xslt function ($ urlWithJsonFormat), however this only accepts xml files.
Here is an example of a formatted JSON file that I would get after a conversion request:
{
"geometries":
[{
"xmin": -4,
"ymin": -60,
"xmax": 25,
"ymax": -41
}
]
} All I just want is the values ββxmin, ymin, xmax and ymax, that's all! It just seems so simple, but nothing works for me ...
source share