[editor] Improvements in editor.config #4050

Merged
Jean-BaptisteC merged 2 commits from fix_editor into master 2023-02-08 16:30:03 +00:00
Jean-BaptisteC commented 2022-12-08 18:29:45 +00:00 (Migrated from github.com)

Signed-off-by: Jean-Baptiste CHARRON jeanbaptiste.charron@outlook.fr

This PR following work started in #4034 :

  • First commit to replace mapsme by omaps (in editor.config, xsd file and all file in editor directory)
  • Second commit to add Internet field on more of POI (WIP)
Signed-off-by: Jean-Baptiste CHARRON <jeanbaptiste.charron@outlook.fr> This PR following work started in #4034 : - First commit to replace mapsme by omaps (in editor.config, xsd file and all file in editor directory) - Second commit to add Internet field on more of POI (WIP)
biodranik (Migrated from github.com) approved these changes 2022-12-08 21:54:35 +00:00
biodranik (Migrated from github.com) left a comment

LGTM if it runs and works on a device.

LGTM if it runs and works on a device.
Jean-BaptisteC commented 2022-12-08 22:24:36 +00:00 (Migrated from github.com)

Tested on Pixel 6 - Android 13
Field in editor is show following type of POI

Tested on Pixel 6 - Android 13 Field in editor is show following type of POI
Jean-BaptisteC commented 2022-12-08 22:34:46 +00:00 (Migrated from github.com)

I have add internet field for more POI, but i am not sure it's a good idea to show this field for all POI.
I have just add this field for all shop and POI about education and some type of office POI.

For example, i'm not sure, it's a good idea to show this field for government building or POI about health (some hospitals ask to enable airplane mode on phone).

I have add internet field for more POI, but i am not sure it's a good idea to show this field for all POI. I have just add this field for all shop and POI about education and some type of office POI. For example, i'm not sure, it's a good idea to show this field for government building or POI about health (some hospitals ask to enable airplane mode on phone).
biodranik commented 2022-12-08 23:13:04 +00:00 (Migrated from github.com)

Many governments and hospitals have wifi. The worst situation is not showing it in the editor when there is no wifi, but hiding it in the editor when there is wifi in a POI.

Many governments and hospitals have wifi. The worst situation is not showing it in the editor when there is no wifi, but hiding it in the editor when _there is_ wifi in a POI.
vng (Migrated from github.com) requested changes 2022-12-09 07:12:16 +00:00
@ -213,84 +223,68 @@
<include field="website" />
</type>
<type id="amenity-casino">
vng (Migrated from github.com) commented 2022-12-09 07:09:46 +00:00

Add field_group poi_internet (same as poi or poi_noname) to avoid copy-paste.

Add field_group poi_internet (same as poi or poi_noname) to avoid copy-paste.
vng (Migrated from github.com) commented 2022-12-09 07:12:12 +00:00

I afraid that we can break existing user's edits file with this change.

I afraid that we can break existing user's edits file with this change.
biodranik (Migrated from github.com) reviewed 2022-12-09 12:37:01 +00:00
biodranik (Migrated from github.com) commented 2022-12-09 12:37:00 +00:00

@vng how? The new file is bundled and will overwrite the old one. Only a few people who manually override it may see some errors. We can support their case also, of course, but it may be easier for them to edit the file.

@vng how? The new file is bundled and will overwrite the old one. Only a few people who manually override it may see some errors. We can support their case also, of course, but it may be easier for them to edit the file.
vng (Migrated from github.com) reviewed 2022-12-09 14:03:50 +00:00
vng (Migrated from github.com) commented 2022-12-09 14:03:49 +00:00

This is the user edits file, not config. See Editor::LoadEdits()

This is the user edits file, not config. See Editor::LoadEdits()
Jean-BaptisteC (Migrated from github.com) reviewed 2022-12-09 16:51:22 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2022-12-09 16:51:22 +00:00

If you want i can doing more tests on device, for example install older OM version and after install this version to check if we have some problems ?

If you want i can doing more tests on device, for example install older OM version and after install this version to check if we have some problems ?
vng (Migrated from github.com) reviewed 2022-12-09 18:59:17 +00:00
vng (Migrated from github.com) commented 2022-12-09 18:59:17 +00:00

Here is edits.xml after adding dummy POI:

<?xml version="1.0"?>
<mapsme format_version="1">
  <mwm name="Belarus_Minsk Region" version="221119">
    <delete />
    <modify />
    <create>
      <node lat="54.0446163" lon="27.6597626" mwm_file_index="4293918720" timestamp="2022-12-09T18:58:28Z">
        <tag k="name:ru" v="xxx" />
        <tag k="amenity" v="bar" />
      </node>
    </create>
    <obsolete />
  </mwm>
</mapsme>
Here is edits.xml after adding dummy POI: ``` <?xml version="1.0"?> <mapsme format_version="1"> <mwm name="Belarus_Minsk Region" version="221119"> <delete /> <modify /> <create> <node lat="54.0446163" lon="27.6597626" mwm_file_index="4293918720" timestamp="2022-12-09T18:58:28Z"> <tag k="name:ru" v="xxx" /> <tag k="amenity" v="bar" /> </node> </create> <obsolete /> </mwm> </mapsme> ```
Jean-BaptisteC commented 2022-12-10 12:36:55 +00:00 (Migrated from github.com)

Workflow failed because i have replace group field poi by poi_interet on somes type, i guess i need to update tests here https://github.com/organicmaps/organicmaps/blob/master/editor/editor_tests/editor_config_test.cpp

@vng can you help me :)

Workflow failed because i have replace group field poi by poi_interet on somes type, i guess i need to update tests here https://github.com/organicmaps/organicmaps/blob/master/editor/editor_tests/editor_config_test.cpp @vng can you help me :)
Jean-BaptisteC (Migrated from github.com) reviewed 2022-12-10 12:50:00 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2022-12-10 12:50:00 +00:00

Ok, I am not an expert in development,
If you want i can remove this commit and add a commentary in editor.config, to just tell don't replace mapsme in tag

Ok, I am not an expert in development, If you want i can remove this commit and add a commentary in editor.config, to just tell don't replace mapsme in tag
biodranik (Migrated from github.com) reviewed 2022-12-11 10:21:27 +00:00
biodranik (Migrated from github.com) commented 2022-12-11 10:21:27 +00:00

It can be replaced, but the old one should also be supported for the Load operation. @vng thanks for pointing to that. Let's leave this change for a separate PR, it's more complex than I thought.

It can be replaced, but the old one should also be supported for the Load operation. @vng thanks for pointing to that. Let's leave this change for a separate PR, it's more complex than I thought.
vng commented 2022-12-11 12:20:50 +00:00 (Migrated from github.com)

@Jean-BaptisteC I will update your branch if you don't mind?

@Jean-BaptisteC I will update your branch if you don't mind?
Jean-BaptisteC commented 2022-12-11 12:41:07 +00:00 (Migrated from github.com)

Yes :), i have try to remove commit about mapsme but it's not perfect

Yes :), i have try to remove commit about mapsme but it's not perfect
Jean-BaptisteC commented 2022-12-12 16:45:20 +00:00 (Migrated from github.com)

Can you tell me if list of POI with group field poi_internet is OK for you ?

Can you tell me if list of POI with group field poi_internet is OK for you ?
biodranik (Migrated from github.com) requested changes 2022-12-12 18:05:07 +00:00
biodranik (Migrated from github.com) left a comment

@vng Tests are failing on Mac

Running osm_editor_test.cpp::EditorTest_IsFeatureUploadedTest
File leap_speeds.json not found.
No extra data for country: TestCountry
File with borders does not exist: ./data/borders/TestCountry.poly
Saving features offsets table to  ./data/TestCountry.mwm.offsets
Building scale index.
Scale index for bucket 0 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 1 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 2 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 3 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 4 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 5 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 6 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 7 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 8 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 9 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 10 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 11 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 12 : Features: 1 cells: 1 cells per feature: 1
Scale index for bucket 13 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 14 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 15 : Features: 1 cells: 1 cells per feature: 1
Scale index for bucket 16 : Features: 0 cells: 0 cells per feature: 0
Scale index for bucket 17 : Features: 0 cells: 0 cells per feature: 0
Building interval index for bucket: 0
Building interval index for bucket: 1
Building interval index for bucket: 2
Building interval index for bucket: 3
Building interval index for bucket: 4
Building interval index for bucket: 5
Building interval index for bucket: 6
Building interval index for bucket: 7
Building interval index for bucket: 8
Building interval index for bucket: 9
Building interval index for bucket: 10
Building interval index for bucket: 11
Building interval index for bucket: 12
Building interval index for bucket: 13
Building interval index for bucket: 14
Building interval index for bucket: 15
Building interval index for bucket: 16
Building interval index for bucket: 17
All scale indexes done.
Built scale index. Size = 224
Start building search index for ./data/TestCountry.mwm
End sorting strings: 0.000233834
End building search index, elapsed seconds: 0.000777489
Search index size = 151
Address: BuildingToStreet entries count: 0
Address: Matched percent 100 Total: 0 Missing: 0
Search address table size = 224
FAILED
editor_tests/osm_editor_test.cpp:459 TEST(editor.IsFeatureUploaded(emo.GetID().m_mwmId, emo.GetID().m_index)) 
Test took 293 ms
@vng Tests are failing on Mac ``` Running osm_editor_test.cpp::EditorTest_IsFeatureUploadedTest File leap_speeds.json not found. No extra data for country: TestCountry File with borders does not exist: ./data/borders/TestCountry.poly Saving features offsets table to ./data/TestCountry.mwm.offsets Building scale index. Scale index for bucket 0 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 1 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 2 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 3 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 4 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 5 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 6 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 7 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 8 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 9 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 10 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 11 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 12 : Features: 1 cells: 1 cells per feature: 1 Scale index for bucket 13 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 14 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 15 : Features: 1 cells: 1 cells per feature: 1 Scale index for bucket 16 : Features: 0 cells: 0 cells per feature: 0 Scale index for bucket 17 : Features: 0 cells: 0 cells per feature: 0 Building interval index for bucket: 0 Building interval index for bucket: 1 Building interval index for bucket: 2 Building interval index for bucket: 3 Building interval index for bucket: 4 Building interval index for bucket: 5 Building interval index for bucket: 6 Building interval index for bucket: 7 Building interval index for bucket: 8 Building interval index for bucket: 9 Building interval index for bucket: 10 Building interval index for bucket: 11 Building interval index for bucket: 12 Building interval index for bucket: 13 Building interval index for bucket: 14 Building interval index for bucket: 15 Building interval index for bucket: 16 Building interval index for bucket: 17 All scale indexes done. Built scale index. Size = 224 Start building search index for ./data/TestCountry.mwm End sorting strings: 0.000233834 End building search index, elapsed seconds: 0.000777489 Search index size = 151 Address: BuildingToStreet entries count: 0 Address: Matched percent 100 Total: 0 Missing: 0 Search address table size = 224 FAILED editor_tests/osm_editor_test.cpp:459 TEST(editor.IsFeatureUploaded(emo.GetID().m_mwmId, emo.GetID().m_index)) Test took 293 ms ```
vng commented 2022-12-12 19:48:28 +00:00 (Migrated from github.com)

I saw it. Will get back later to check what is going on ..

I saw it. Will get back later to check what is going on ..
vng commented 2022-12-12 19:50:40 +00:00 (Migrated from github.com)

@biodranik Please, check that POIs are correctly marked as poi_internet from your perspective ..

@biodranik Please, check that POIs are correctly marked as poi_internet from your perspective ..
biodranik (Migrated from github.com) reviewed 2022-12-12 20:50:51 +00:00
biodranik (Migrated from github.com) commented 2022-12-12 20:36:08 +00:00
        <include group="poi_internet" />
```suggestion <include group="poi_internet" /> ```
biodranik (Migrated from github.com) commented 2022-12-12 20:42:31 +00:00
        <include group="poi_internet" />
```suggestion <include group="poi_internet" /> ```
@ -539,3 +520,3 @@
</type>
<type id="place-farm" can_add="no">
<include group="poi" />
<include group="poi_internet" />
biodranik (Migrated from github.com) commented 2022-12-12 20:36:58 +00:00

How do we set the subtypes of recycling containers now? Don't we have to add them to the editor?

How do we set the subtypes of recycling containers now? Don't we have to add them to the editor?
@ -667,3 +622,3 @@
<include field="internet" />
<include group="poi_internet" />
</type>
<type id="shop-dairy" group="shop">
biodranik (Migrated from github.com) commented 2022-12-12 20:39:26 +00:00

Why only some craft= are marked with "shop"?

Why only some craft= are marked with "shop"?
@ -717,3 +660,2 @@
<type id="shop-gift" group="shop">
<include group="poi" />
<include field="internet" />
<include group="poi_internet" />
biodranik (Migrated from github.com) commented 2022-12-12 20:39:57 +00:00

Why some are marked can_add="no"?

Why some are marked can_add="no"?
@ -911,21 +816,19 @@
<include field="opening_hours" />
</type>
<type id="amenity-biergarten" group="food">
biodranik (Migrated from github.com) commented 2022-12-12 20:41:56 +00:00

leisure-swimming_pool below should be poi_internet

leisure-swimming_pool below should be poi_internet
@ -1063,3 +963,2 @@
<type id="shop-wholesale" group="shop">
<include group="poi" />
<include field="internet" />
<include group="poi_internet" />
biodranik (Migrated from github.com) commented 2022-12-12 20:44:27 +00:00

railway_station above should be poi_internet

railway_station above should be poi_internet
biodranik (Migrated from github.com) commented 2022-12-12 20:45:25 +00:00

What is the difference between "ele" vs "height" editable fields?

What is the difference between "ele" vs "height" editable fields?
biodranik (Migrated from github.com) commented 2022-12-12 20:48:08 +00:00

poi_internet for the sauna below

poi_internet for the sauna below
biodranik (Migrated from github.com) commented 2022-12-12 20:49:33 +00:00

Fix poi_internet for some commented types below.

Fix poi_internet for some commented types below.
biodranik (Migrated from github.com) commented 2022-12-12 20:50:15 +00:00
      <type id="man_made-surveillance"/>
```suggestion <type id="man_made-surveillance"/> ```
Jean-BaptisteC (Migrated from github.com) reviewed 2022-12-12 21:11:47 +00:00
@ -539,3 +520,3 @@
</type>
<type id="place-farm" can_add="no">
<include group="poi" />
<include group="poi_internet" />
Jean-BaptisteC (Migrated from github.com) commented 2022-12-12 21:11:47 +00:00

I think for now, it's not supported, maybe we can implement by add list with different elements allow in container ?

I think for now, it's not supported, maybe we can implement by add list with different elements allow in container ?
Jean-BaptisteC (Migrated from github.com) reviewed 2022-12-12 21:13:49 +00:00
@ -667,3 +622,3 @@
<include field="internet" />
<include group="poi_internet" />
</type>
<type id="shop-dairy" group="shop">
Jean-BaptisteC (Migrated from github.com) commented 2022-12-12 21:13:48 +00:00

🤷‍♂️ I don't know.
Where are used groups in OM ? Is it groups from Wiki OSM ?

🤷‍♂️ I don't know. Where are used groups in OM ? Is it groups from Wiki OSM ?
Jean-BaptisteC (Migrated from github.com) reviewed 2022-12-12 21:17:43 +00:00
@ -717,3 +660,2 @@
<type id="shop-gift" group="shop">
<include group="poi" />
<include field="internet" />
<include group="poi_internet" />
Jean-BaptisteC (Migrated from github.com) commented 2022-12-12 21:17:43 +00:00
Maybe this https://git.omaps.dev/organicmaps/organicmaps/pulls/2747#issuecomment-1156538277
Jean-BaptisteC (Migrated from github.com) reviewed 2022-12-26 19:01:01 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2022-12-26 19:01:00 +00:00

ele field is elevation in meters of POI (used for a mountains), height (in meters) field is used more for height of buildings

ele field is elevation in meters of POI (used for a mountains), height (in meters) field is used more for height of buildings
biodranik (Migrated from github.com) reviewed 2023-01-08 22:32:45 +00:00
@ -667,3 +622,3 @@
<include field="internet" />
<include group="poi_internet" />
</type>
<type id="shop-dairy" group="shop">
biodranik (Migrated from github.com) commented 2023-01-08 22:32:45 +00:00

Groups are collections of some tags, they are defined at the beginning of this file.

Does it make sense to mark remaining shop-like crafts with "shop"?

Groups are collections of some tags, they are defined at the beginning of this file. Does it make sense to mark remaining shop-like crafts with "shop"?
biodranik (Migrated from github.com) reviewed 2023-01-08 22:33:11 +00:00
@ -539,3 +520,3 @@
</type>
<type id="place-farm" can_add="no">
<include group="poi" />
<include group="poi_internet" />
biodranik (Migrated from github.com) commented 2023-01-08 22:33:11 +00:00

Let's create an issue for it.

Let's create an issue for it.
biodranik commented 2023-01-08 22:35:44 +00:00 (Migrated from github.com)

Existing files with mapsme in them should also be loaded:

Running config_loader_test.cpp::ConfigLoader_Base
Config can not be loaded.
FAILED
editor_tests/config_loader_test.cpp:32 TEST(!config.Get()->GetTypesThatCanBeAdded().empty()) 
Existing files with mapsme in them should also be loaded: ``` Running config_loader_test.cpp::ConfigLoader_Base Config can not be loaded. FAILED editor_tests/config_loader_test.cpp:32 TEST(!config.Get()->GetTypesThatCanBeAdded().empty()) ```
Jean-BaptisteC (Migrated from github.com) reviewed 2023-01-09 16:31:36 +00:00
@ -539,3 +520,3 @@
</type>
<type id="place-farm" can_add="no">
<include group="poi" />
<include group="poi_internet" />
Jean-BaptisteC (Migrated from github.com) commented 2023-01-09 16:31:35 +00:00

Done :)

Done :)
Jean-BaptisteC (Migrated from github.com) reviewed 2023-01-09 16:41:08 +00:00
@ -667,3 +622,3 @@
<include field="internet" />
<include group="poi_internet" />
</type>
<type id="shop-dairy" group="shop">
Jean-BaptisteC (Migrated from github.com) commented 2023-01-09 16:41:08 +00:00

group=shop, accomodation, ... is not defined in the start of the file but we can add this group=shop for all craft POI :)
Normally each crafters have shops or part of her house dedicated for her work

group=shop, accomodation, ... is not defined in the start of the file but we can add this group=shop for all craft POI :) Normally each crafters have shops or part of her house dedicated for her work
biodranik (Migrated from github.com) reviewed 2023-02-01 15:53:45 +00:00
biodranik (Migrated from github.com) commented 2023-02-01 15:53:45 +00:00

We need to be able to read both tags: the old one and the new one. But only the new one should be written/saved back.

We need to be able to read both tags: the old one and the new one. But only the new one should be written/saved back.
biodranik (Migrated from github.com) reviewed 2023-02-01 15:55:32 +00:00
biodranik (Migrated from github.com) left a comment

To speed everything up, I suggest splitting changes into two commits/PRs, and moving mapsme => omaps renaming into a separate PR. Then we can safely merge everything else and test/fix the renaming properly.

To speed everything up, I suggest splitting changes into two commits/PRs, and moving mapsme => omaps renaming into a separate PR. Then we can safely merge everything else and test/fix the renaming properly.
biodranik (Migrated from github.com) requested changes 2023-02-02 06:57:07 +00:00
biodranik (Migrated from github.com) commented 2023-02-02 06:57:00 +00:00

Please return back this line, it breaks the XML file.
And make sure that validator runs well:
xmllint -noout -schema data/config.xsd data/editor.config

Please return back this line, it breaks the XML file. And make sure that validator runs well: `xmllint -noout -schema data/config.xsd data/editor.config`
vng (Migrated from github.com) approved these changes 2023-02-08 13:30:49 +00:00
biodranik (Migrated from github.com) approved these changes 2023-02-08 16:29:25 +00:00
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#4050
No description provided.