We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We are exporting a "TextPointGeometry" type feature using the GDAL MapInfo driver. Below is the pseudo-code -
Driver mapInfoFileDriver = Ogr.GetDriverByName("MapInfo File"); ... Feature mapInfoFeature = CreateFeature(featureData[i].Geometry, mapInfolayer, featureData[i].SpatialRef); mapInfoFeature.SetStyleString($"LABEL(t:\"TT\",a: 0,c:#0000ff)");
Result checked with ogrinfo, observed that style is always SYMBOL, see below -
Style = SYMBOL(a:0,c:#000000,s:12pt,id:"mapinfo-sym-35,ogr-sym-10")
When we check with ogr2ogr, the LABEL style is changed into SYMBOL. see below - ogr2ogr -f "MapInfo File" "C:\MapInfo" "C:\MapInfo\test.csv"
If we convert to JML format –
ogr2ogr -f JML "C:\111.jml" "C:\MapInfo\test.csv"
The label is kept as the label.
So the issue is with MapInfo.
The text was updated successfully, but these errors were encountered:
c2ff51f
Merge pull request #6152 from rouault/fix_6149
f033e1f
MapInfo driver: implements writing Text objects for Point geometries with LABEL style string (fixes #6149)
MapInfo driver: implements writing Text objects for Point geometries …
00491c5
…with LABEL style string (fixes OSGeo#6149)
rouault
No branches or pull requests
We are exporting a "TextPointGeometry" type feature using the GDAL MapInfo driver. Below is the pseudo-code -
Result checked with ogrinfo, observed that style is always SYMBOL, see below -
When we check with ogr2ogr, the LABEL style is changed into SYMBOL. see below -
ogr2ogr -f "MapInfo File" "C:\MapInfo" "C:\MapInfo\test.csv"
If we convert to JML format –
ogr2ogr -f JML "C:\111.jml" "C:\MapInfo\test.csv"
So the issue is with MapInfo.
The text was updated successfully, but these errors were encountered: