fork download
  1. using System;
  2. using System.Text;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var result = TileXYToQuadKey(15, 5240, 12661);
  9. Console.WriteLine(result);
  10. }
  11. /// <summary>
  12. /// Converts tile XY coordinates into a QuadKey at a specified level of detail.
  13. /// </summary>
  14. /// <param name="tileX">Tile X coordinate.</param>
  15. /// <param name="tileY">Tile Y coordinate.</param>
  16. /// <param name="levelOfDetail">Level of detail, from 1 (lowest detail)
  17. /// to 23 (highest detail).</param>
  18. /// <returns>A string containing the QuadKey.</returns>
  19. public static string TileXYToQuadKey(int tileX, int tileY, int levelOfDetail)
  20. {
  21. StringBuilder quadKey = new StringBuilder();
  22. for (int i = levelOfDetail; i > 0; i--)
  23. {
  24. char digit = '0';
  25. int mask = 1 << (i - 1);
  26. if ((tileX & mask) != 0)
  27. {
  28. digit++;
  29. }
  30. if ((tileY & mask) != 0)
  31. {
  32. digit++;
  33. digit++;
  34. }
  35. quadKey.Append(digit);
  36. }
  37. return quadKey.ToString();
  38. }
  39. }
Success #stdin #stdout 0.03s 33816KB
stdin
Standard input is empty
stdout
0000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111000000000000000000020200022231110000000000000000000202000222311100000000000000000002020002223111