Metric projection error #636
Replies: 10 comments
-
Hi Jens, It seems that the height of the source is 0.0m. Probably, this will create a mistake ! Also, some EPSG are not known by the H2GIS engine, you can try another EPSG metric a little bit more "famous". Finally, sometimes the error management is a little buggy, the first error the script detects is the EPSG metric, then if the table is missing for example, maybe it will throw this EPSG error also. Keep in touch |
Beta Was this translation helpful? Give feedback.
-
Hi @pierromond , I set the height to 2 meters. Then i exported the data as new .shpfiles with the EPSG code 3035 (Europe). I still get the same error unfortunately! |
Beta Was this translation helpful? Give feedback.
-
Here is my data! |
Beta Was this translation helpful? Give feedback.
-
can you send us the log file ? Geoserver log Attach geoserver log located in data_dir\logs\geoserver.log |
Beta Was this translation helpful? Give feedback.
-
You need to specify your SRID/EPSG when you import your files in Import_file wps box (normally it is not mandatory, but probably a file is missing)... |
Beta Was this translation helpful? Give feedback.
-
Thankyou! One step closer, however now I receive another error. I can not figure out where it is coming from. On stack exchange i see some topics about geoserver and xyz coordinates within the vectordata? |
Beta Was this translation helpful? Give feedback.
-
Hi. D:\Ermelo_geluid/Receivers.shp your receivers must contain a Z ordinate (you only provide x,y) |
Beta Was this translation helpful? Give feedback.
-
The Z value is HEIGHT ( relative to the ground that you will provide with DEM) |
Beta Was this translation helpful? Give feedback.
-
Thank you! I managed to get some results. Kind regards, Jens |
Beta Was this translation helpful? Give feedback.
-
NoiseModelling version 4.0.5
I try to run the Noise_Level_from_source script. However, once I have put in all my vectorfiles: DEM, (mock) buildings, groundsurface, receivers and the pointsource i get the following error once I run the script:
Process failed during execution javax.script.ScriptException: java.lang.IllegalArgumentException: Error : Please use a metric projection for POINT_SOURCE2. java.lang.IllegalArgumentException: Error : Please use a metric projection for POINT_SOURCE2. Error : Please use a metric projection for POINT_SOURCE2.
All my vectordata is in .shp, however after the error i exported the POINT_SOURCE2 to a GEOJSON with the name Point_Source3. Here the result in a textfile:
{
"type": "FeatureCollection",
"name": "Point_Source3",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::28992" } },
"features": [
{ "type": "Feature", "properties": { "id": null, "PK": 1, "LWD500": 90.0 }, "geometry": { "type": "Point", "coordinates": [ 175782.738337747985497, 477397.226594465319067, 0.0 ] } }
]
}
.
It clearly states that the EPSG is 28992 just like the other data, why does it give me an error that i need to use a metric projection?
If you need more information then I will happily provide!
Many Thanks,
Jens
Beta Was this translation helpful? Give feedback.
All reactions