2017-11-19 2 views
0

루프를 수행하고 페이지에서 json 데이터를 가져와야합니다. 페이지 URL은 다음과 같이 생성됩니다.python3x를 사용하여 웹 사이트의 여러 페이지에 대해 데이터 스크래핑을 반복 할 수 있습니다.

https: //*.*bounds=506,168,507,169 
https: //*.*bounds=506,169,507,170 
https: //*.*bounds=506,170,507,171 
https: //*.*bounds=506,170,507,171 
https: //*.*bounds=505,171,506,172 
https: //*.*bounds=506,173,507,174 

좌표에 따라 다릅니다.

https: //*.*bounds= {lat}, {lon}, {lat + 1}, {lon + 1}? 

제한 :

  • minLongitude = 140
  • maxLongitude 예를 들어

    ,

    https: //*.*bounds=506,170,507,171   
    
         for Latitude: 50.6015314505 
          longitude: 17.0410603428 
    
    https://*.*bounds=508,163,509,164 
    
         for Latitude: 50.859299 
          longitude: 16.3206665 
    

    나는이 루프가 같은 것을 포함 할 것이다 생각 = 242

  • minLatitude = 490
  • maxLatitude = 549

파이썬 3에서이 작업을 수행하려면?

답변

0

솔루션 :

for lat in range(490, 550): 
    for lon in range(140,243): 
     print("%d,%d,%d,%d" % (lat, lon, lat + 1, lon + 1))