Differences between revisions 2 and 33 (spanning 31 versions)
Revision 2 as of 2019-10-23 11:51:46
Size: 639
Editor: EricPalmer
Comment:
Revision 33 as of 2019-11-21 09:07:08
Size: 2363
Editor: JohnWeirich
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Line 7: Line 6:
ID=RDL09 checkVar $ID $Res $logP
Line 9: Line 8:
echo y | cp LMRKLIST1.TXT nftConfig/highRes${ID}$Res.txt
Line 13: Line 13:
rm -r NEW_FILES
Line 20: Line 21:
mv NEW_FILES.tar nftConfig/nftLandmarks-$ID.tar mv NEW_FILES.tar nftConfig/nftLandmarks-$ID$Res.tar
Line 32: Line 33:
This his also moves all the output files to the log directory

{{{
checkVar $ID $Res $logP

relink.sh nftConfig/highRes${ID}$Res.txt BIGMAP.IN #put $Res back in once week 2 has been delivered
wc BIGMAP.IN |tee -a notes
grep -f BIGMAP.IN MAPINFO.TXT | tee -a notes

nft-publish.sh nftBigmap-$ID-$Vers.IN

#We need something besides logP here. We are not going to publish after every resolution. How about this? JRW
mv log/$ID* ../log

rm BIGMAP.IN
echo 6 | nftBlockFinish.sh nft.$ID
}}}

== Options For Creating the final Bigmap ==

=== Option 1 - vA ===
Use all maplets (i.e. Bob method)
{{{
Vers=A
nft-publish.sh nftBigmap-$ID-$Vers.IN

echo 6 | nftBlockFinish.sh nft.$ID
}}}

=== Option 2 - vB ===
Use only highest resolution
{{{
relink.sh nftConfig/highRes${ID}$Res.txt BIGMAP.IN #put $Res back in once week 2 has been delivered
wc BIGMAP.IN |tee -a notes
grep -f BIGMAP.IN MAPINFO.TXT | tee -a notes

rm BIGMAP.IN
echo 6 | nftBlockFinish.sh nft.$ID
}}}


=== Option 3 - vC ===
Use requested GSD maplets, plus one up resolution and one down resolution
Line 34: Line 78:
$ID=00000
$Vers=A

nftPublish.sh $ID$Vers
bigmap < nftConfig/nftBigmap-$ID-A.IN
grep -Ff USED_MAPS.TXT MAPINFO.TXT | sort -k2,2 -r > tmp
#Trim out resolutions you don't want, make sure you keep the "END"
cut -c1-6 tmp > tmp2
#check tmp2 to make sure it is what you want
cp tmp2 nftConfig/multiRes$ID.TXT
Line 40: Line 86:
Vers=C
relink.sh nftConfig/multiRes${ID}.txt BIGMAP.IN
wc BIGMAP.IN |tee -a notes
grep -f BIGMAP.IN MAPINFO.TXT | tee -a notes

nft-publish.sh nftBigmap-$ID-$Vers.IN
rm BIGMAP.IN
echo 6 | nftBlockFinish.sh nft.$ID
Line 41: Line 96:



=== Option 4 - vD ===
Single maplet to size and resolution of requested feature

Save New Landmarks

Run EXPORT

checkVar $ID $Res $logP

echo y | cp LMRKLIST1.TXT nftConfig/highRes${ID}$Res.txt

echo -n "Running Export $ID with num of landmarks:  " >> notes
wc LMRKLIST1.TXT >> notes

rm -r NEW_FILES
mkdir -p NEW_FILES
mkdir -p NEW_FILES/LMKFILES
mkdir -p NEW_FILES/MAPFILES
/usr/local/bin/EXPORT


sh EXPORT.TXT
mv NEW_FILES.tar nftConfig/nftLandmarks-$ID$Res.tar

Package the Feature

Update nftConfig.ini

From the base directory (one above the working directory) run

Update nft creation scripts to match version (i.e. if you are distributing a new copy of a feature, then use B or higher)

This his also moves all the output files to the log directory

checkVar $ID $Res $logP

relink.sh nftConfig/highRes${ID}$Res.txt BIGMAP.IN #put $Res back in once week 2 has been delivered
wc BIGMAP.IN |tee -a notes
grep -f BIGMAP.IN MAPINFO.TXT | tee -a notes

nft-publish.sh nftBigmap-$ID-$Vers.IN

#We need something besides logP here. We are not going to publish after every resolution. How about this? JRW
mv log/$ID* ../log

rm BIGMAP.IN
echo 6 | nftBlockFinish.sh nft.$ID

Options For Creating the final Bigmap

Option 1 - vA

Use all maplets (i.e. Bob method)

Vers=A
nft-publish.sh nftBigmap-$ID-$Vers.IN

echo 6 | nftBlockFinish.sh nft.$ID

Option 2 - vB

Use only highest resolution

relink.sh nftConfig/highRes${ID}$Res.txt BIGMAP.IN #put $Res back in once week 2 has been delivered
wc BIGMAP.IN |tee -a notes
grep -f BIGMAP.IN MAPINFO.TXT | tee -a notes

rm BIGMAP.IN
echo 6 | nftBlockFinish.sh nft.$ID

Option 3 - vC

Use requested GSD maplets, plus one up resolution and one down resolution

bigmap < nftConfig/nftBigmap-$ID-A.IN
grep -Ff USED_MAPS.TXT MAPINFO.TXT | sort -k2,2 -r > tmp
#Trim out resolutions you don't want, make sure you keep the "END"
cut -c1-6 tmp > tmp2
#check tmp2 to make sure it is what you want
cp tmp2 nftConfig/multiRes$ID.TXT


Vers=C
relink.sh nftConfig/multiRes${ID}.txt BIGMAP.IN
wc BIGMAP.IN |tee -a notes
grep -f BIGMAP.IN MAPINFO.TXT | tee -a notes

nft-publish.sh nftBigmap-$ID-$Vers.IN
rm BIGMAP.IN
echo 6 | nftBlockFinish.sh nft.$ID

Option 4 - vD

Single maplet to size and resolution of requested feature

NFT-6-publish (last edited 2020-02-27 16:55:31 by JohnWeirich)