Skip to content

Commit

Permalink
Reorder quests
Browse files Browse the repository at this point in the history
  • Loading branch information
TurnrDev committed Aug 21, 2021
1 parent b5edb7d commit 37fa7c0
Showing 1 changed file with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,11 @@ import javax.inject.Singleton
// ↓ 1. notes
OsmNoteQuestType,

// ↓ 2. important data that is used by many data consumers
// ↓ 2. time-specific quests, such as lit quests which are moved to only show ar night
AddWayLit(), // used by OsmAnd if "Street lighting" is enabled. (Configure map, Map rendering, Details)
AddBusStopLit(),

// ↓ 3. important data that is used by many data consumers
AddRoadName(),
AddPlaceName(featureDictionaryFuture),
AddOneway(),
Expand All @@ -152,7 +156,7 @@ import javax.inject.Singleton
AddReligionToPlaceOfWorship(), // icons on maps are different - OSM Carto, mapy.cz, OsmAnd, Sputnik etc
AddParkingAccess(), //OSM Carto, mapy.cz, OSMand, Sputnik etc

//3. useful data that is used by some data consumers
//4. useful data that is used by some data consumers
AddRecyclingType(),
AddRecyclingContainerMaterials(),
AddSport(),
Expand Down Expand Up @@ -191,15 +195,14 @@ import javax.inject.Singleton
AddFerryAccessMotorVehicle(),
AddAcceptsCash(featureDictionaryFuture),

//4. definitely shown as errors in QA tools
//5. definitely shown as errors in QA tools

//5. may be shown as missing in QA tools
//6. may be shown as missing in QA tools
DetermineRecyclingGlass(), // because most recycling:glass=yes is a tagging mistake

//6. may be shown as possibly missing in QA tools
//7. may be shown as possibly missing in QA tools

// ↓ 7. data useful for only a specific use case
AddWayLit(), // used by OsmAnd if "Street lighting" is enabled. (Configure map, Map rendering, Details)
// ↓ 8. data useful for only a specific use case
AddToiletsFee(), // used by OsmAnd in the object description
AddBabyChangingTable(), // used by OsmAnd in the object description
AddBikeParkingCover(), // used by OsmAnd in the object description
Expand Down Expand Up @@ -237,10 +240,10 @@ import javax.inject.Singleton
AddBollardType(), // useful for first responders
AddCameraType(),

//8. defined in the wiki, but not really used by anyone yet. Just collected for
//9. defined in the wiki, but not really used by anyone yet. Just collected for
// the sake of mapping it in case it makes sense later
AddPitchSurface(),
AddPitchLit(),
AddPitchLit(), // Not affected by new DayNight cycle because the lights are usually only on during games
AddIsDefibrillatorIndoor(),
AddSummitRegister(),
AddCyclewayPartSurface(),
Expand All @@ -256,7 +259,6 @@ import javax.inject.Singleton
AddCarWashType(),
AddBenchStatusOnBusStop(),
AddBinStatusOnBusStop(),
AddBusStopLit(),
AddBenchBackrest(),
AddTrafficSignalsButton(),
AddPostboxRoyalCypher()
Expand Down

0 comments on commit 37fa7c0

Please sign in to comment.