Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 317297
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:27:47+00:00 2026-05-12T08:27:47+00:00

I just tried to use Google Map Buddy to get satellite image from Google

  • 0

I just tried to use Google Map Buddy to get satellite image from Google Map. This application first download small images from google map and then stick them together into new image. I had to wait about 2 hours to get images download my computer and it looks like it downloaded all images (22,194 images) but then the app told me that it cannot stick them together. When I started app again I though this app will reuse images on my comp but it start downloading them again. So I had to stop the process and ask you, guys, if you know how I can put that puzzle together.

The naming pattern of those images goes like this:

x=92651y=48130zoom=17.png
x=92652y=48130zoom=17.png
x=92653y=48130zoom=17.png
x=92654y=48130zoom=17.png
x=92655y=48130zoom=17.png
...
...
x=92664y=48131zoom=17.png
x=92665y=48131zoom=17.png
x=92666y=48131zoom=17.png
x=92667y=48131zoom=17.png
...
...
x=92689y=48132zoom=17.png
x=92690y=48132zoom=17.png
x=92691y=48132zoom=17.png
x=92692y=48132zoom=17.png
x=92693y=48132zoom=17.png

What can I do to stick them together programmatically using some simple scripting language? I have access to Mac and Windows systems and may be can install any simple scripting languages.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T08:27:47+00:00Added an answer on May 12, 2026 at 8:27 am

    You could use Python with Python Imaging Library (PIL).

    First I’d make a list of filename and their coordinates. Extract the integer coordinates from the filenames with regular expressions and store them in a list of dictionaries:

    >>> filename = 'x=92664y=48131zoom=17.png'
    >>> imagePattern = re.compile(r'^x=(\d{5})y=(\d{5})zoom=17.png$')
    >>> x,y = map(int, imagePattern.search(filename).groups())
    >>> {'x':x, 'y':y, 'filename':filename}
    {'y': 48131, 'x': 92664, 'filename': 'x=92664y=48131zoom=17.png'}
    

    Having a list of dictionaries enables you to sort them according to either dimensions:

    tileListSortedByX = sorted(tileList, key = lambda i: i["x"])
    

    and also filter them:

    fileListWhereX48131 = [tile for tile in tileList if tile["x"]==48131]
    

    With these two operations you can easily imagine the for loops to iterate over tiles line by line.

    The last thing you need to create a big empty image (with PIL) where you’ll paste the small tile images into. Its size will be a multiple of the tile size.

    >>> from PIL import Image
    >>> bigImage = Image.new('RGB',(300,300),(255,255,255))
        #creates a white 300x300 image
    

    Pasting the small images into the big one looks like this:

    >>> smallImage = Image.open(tile["filename"])
    >>> bigImage.paste(smallImage,(0,0))   
    

    Hope you get the idea.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just don't get it. Tried on VC++ 2008 and G++ 4.3.2 #include <map>
Just tried to execute a small Lua script, but unfortunately I'm doing something wrong.
I just tried (for the first time, I might add) a port upgrade installed
I just got Java5 project that has this error, i tried using Java5 and
Which modules can I use to add a google map to a node with
I tried my hand at this Google Codejam Africa problem (the contest is already
I have tried with the following, but it just says & was unexpected at
I've tried msysGit and Git on Cygwin. Both work just fine in and of
Just looking for the first step basic solution here that keeps the honest people
I've looked at Google's map API, which is all javascript and terribly slow on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.