I've got a ".shp" file (plus the additional .dbf, .fix, .prj, .shx files) that was created using the geotools library and want to view its data using QGIS 3.8.2.
QGIS properly displays all of the points in the .shp file and clicking on the "i" button and then on one of the points displays its information at the right-hand side:
- Name
- ID
- X
- Y
- Z
The only thing missing is the "M" value. I know this is probably a very basic question but I can't find any information about it anywhere: How do I get access to the M value?
I don't want to edit it or create new ones, I just want to see the existing one. Is there maybe any type of table that has a list of every point in the .shp file and all of its values (XYZ, M, name,...)?
Extract M valuesfrom the Processing Toolbox. – Joseph Sep 03 '19 at 11:29Mvalue attached to your data? – Erik Sep 03 '19 at 11:37ExtendedCoordinatefor every point (new ExtendedCoordinate(4500000+p*10,5500000+p*p,100+p%5,p ), p is just the iterator of a "for" loop) and adds this object to aSimpleFeatureBuilder. So it should be there. Does QGIS usually display the M value right from the start? – Neph Sep 03 '19 at 11:54NULL. I really think I'm missing something important here. – Neph Sep 03 '19 at 12:13