Browse Source

update zmp

master
sasgis 54 years ago
commit
702848f198
16 changed files with 156 additions and 0 deletions
  1. +6
    -0
      .hgignore
  2. BIN
      7za.exe
  3. +1
    -0
      BuildZMmp.cmd
  4. +65
    -0
      BuildZMmp.js
  5. BIN
      MOON_terrain/18.bmp
  6. BIN
      MOON_terrain/24.bmp
  7. +3
    -0
      MOON_terrain/GetUrlScript.txt
  8. +24
    -0
      MOON_terrain/params.txt
  9. BIN
      mars_elevation/18.bmp
  10. BIN
      mars_elevation/24.bmp
  11. +3
    -0
      mars_elevation/GetUrlScript.txt
  12. +26
    -0
      mars_elevation/params.txt
  13. BIN
      mars_infrared/18.bmp
  14. BIN
      mars_infrared/24.bmp
  15. +3
    -0
      mars_infrared/GetUrlScript.txt
  16. +25
    -0
      mars_infrared/params.txt

+ 6
- 0
.hgignore View File

@@ -0,0 +1,6 @@
# use glob syntax.
syntax: glob
.bin/*
*.bak
*.~*
*.orig

BIN
7za.exe View File


+ 1
- 0
BuildZMmp.cmd View File

@@ -0,0 +1 @@
cscript BuildZMmp.js

+ 65
- 0
BuildZMmp.js View File

@@ -0,0 +1,65 @@
function CBuildSource(Folder, Ext){
this.Ext = Ext;
this.fso = WScript.CreateObject("Scripting.FileSystemObject");
this.Folder = this.fso.GetFolder(Folder);
this.SourceCheckExtRegExp = new RegExp("^" + this.Ext + "$", "i");
this.CheckExt = function(Folder){
return this.fso.GetExtensionName(Folder.Name).match(this.SourceCheckExtRegExp);
};
this.GetSourceFoldersEnumerator = function(){
return new Enumerator(this.Folder.SubFolders);
};
};
function CBuilder(FolderName){
this.fso = WScript.CreateObject("Scripting.FileSystemObject");
this.WshShell = WScript.CreateObject("WScript.Shell");
this.FolderExists = false;
this.FolderName = FolderName;
if (FolderName.length == 0){
this.FolderName = ".";
};
this.GetNewFullFileName = function(FileName){
if (!this.FolderExists){
if (!this.fso.FolderExists(this.FolderName)){
this.Folder = this.fso.CreateFolder(FolderName);
this.FolderExists = true;
}else{
this.Folder = this.fso.GetFolder(this.FolderName);
this.FolderExists = true;
};
};
return this.fso.BuildPath(this.Folder.Path, this.fso.GetFileName(FileName));
};
this.GetCommandLine = function(SourceFolder, FileName){
return "7za a -tzip \""+ FileName + "\" \"" + SourceFolder + "\\*.*\"" ;
};
this.ProcessFolder = function(Folder){
var NewFileName = this.GetNewFullFileName(Folder.Name);
var FolderFullName = Folder.Path;
if (this.fso.FileExists(NewFileName)){
this.fso.DeleteFile(NewFileName);
};
var CommandLine = this.GetCommandLine(FolderFullName, NewFileName);
WScript.Echo(CommandLine);
var Pipe = this.WshShell.Exec(CommandLine);
while(!Pipe.StdOut.AtEndOfStream){
WScript.StdOut.WriteLine(Pipe.StdOut.ReadLine());
};
}
};
var Source = new CBuildSource(".", "zmp");
var Builder = new CBuilder(".\\.bin");
var oFiles = Source.GetSourceFoldersEnumerator();
for (; !oFiles.atEnd(); oFiles.moveNext()){
var oFile = oFiles.item();
if (Source.CheckExt(oFile)){
Builder.ProcessFolder(oFile);
};
};

BIN
MOON_terrain/18.bmp View File

Before After

BIN
MOON_terrain/24.bmp View File

Before After

+ 3
- 0
MOON_terrain/GetUrlScript.txt View File

@@ -0,0 +1,3 @@
begin
ResultURL:=GetUrlBase+'&x='+inttostr(GetX)+'&y='+inttostr(GetY)+'&zoom='+inttostr(18-GetZ)+'&s='+copy('Galileo',1,random(7)+1);
end.

+ 24
- 0
MOON_terrain/params.txt View File

@@ -0,0 +1,24 @@
[PARAMS]
pnum=110
GUID={82F76321-6574-4EE2-8DCD-654557134AD7}
asLayer=0
name=Ëóíà Âûñîòû (Google)
NameInCache=MOON_terrain
DefURLBase=http://mw1.google.com/mw-planetary/lunar/lunarmaps_v1/terrain/
ContentType=image/jpeg
ParentSubMenu=Êîñìîñ
Ext=.jpg
projection=1
sradiusa=1737400
sradiusb=1737400
separator=0
UseDwn=1
Usestick=1
UseGenPrevious=1
Usedel=1
Usesave=1
UseAntiBan=0
Sleep=0
DefHotKey=83
BanIfLen=0
CacheType=1

BIN
mars_elevation/18.bmp View File

Before After

BIN
mars_elevation/24.bmp View File

Before After

+ 3
- 0
mars_elevation/GetUrlScript.txt View File

@@ -0,0 +1,3 @@
begin
ResultURL:=GetUrlBase+'&x='+inttostr(GetX)+'&y='+inttostr(GetY)+'&zoom='+inttostr(18-GetZ)+'&s='+copy('Galileo',1,random(7)+1);
end.

+ 26
- 0
mars_elevation/params.txt View File

@@ -0,0 +1,26 @@
[PARAMS]
pnum=108
GUID={E90A2F3E-45CE-4AF9-AC19-D372AC403CCB}
asLayer=0
name=Ìàðñ Âûñòîû (Google)
name_9=Ìàðñ Âûñòîû (Google)
NameInCache=MARS_elevation
DefURLBase=http://mw1.google.com/mw-planetary/mars/visible/
ContentType=image/jpeg
ParentSubMenu=Êîñìîñ
ParentSubMenu_9=Space
Ext=.jpg
projection=1
sradiusa=3396190
sradiusb=3396190
separator=0
UseDwn=1
Usestick=1
UseGenPrevious=1
Usedel=1
Usesave=1
UseAntiBan=0
Sleep=0
DefHotKey=82
BanIfLen=0
CacheType=1

BIN
mars_infrared/18.bmp View File

Before After

BIN
mars_infrared/24.bmp View File

Before After

+ 3
- 0
mars_infrared/GetUrlScript.txt View File

@@ -0,0 +1,3 @@
begin
ResultURL:=GetUrlBase+'&x='+inttostr(GetX)+'&y='+inttostr(GetY)+'&zoom='+inttostr(18-GetZ)+'&s='+copy('Galileo',1,random(7)+1);
end.

+ 25
- 0
mars_infrared/params.txt View File

@@ -0,0 +1,25 @@
[PARAMS]
pnum=109
GUID={72F36652-2D7E-4B9D-BA26-63D773FB9AE7}
asLayer=0
name=Ìàðñ Èíôðàêðàñíûé (Google)
name_9=Ìàðñ Èíôðàêðàñíûé (Google)
NameInCache=mars_infrared
DefURLBase=http://mw1.google.com/mw-planetary/mars/infrared/
ContentType=image/jpeg
ParentSubMenu=Êîñìîñ
Ext=.jpg
projection=1
sradiusa=3396190
sradiusb=3396190
separator=0
UseDwn=1
Usestick=1
UseGenPrevious=1
Usedel=1
Usesave=1
UseAntiBan=0
Sleep=0
DefHotKey=82
BanIfLen=0
CacheType=1

Loading…
Cancel
Save