Spring naar bijdragen

Aanbevolen berichten

Geplaatst (bewerkt)

Hallo weet iemand of het mogelijk is om op de monterra bij de cache beschrijving de fotos te laten weergeven die in de cache beschrijving wel eens voorkomen.

Dus niet onder het 'kopje' fotos

Bijvoorbeeld met GSAK

Dit kan een handig hulpmiddel zijn bij het zoeken of de cache beschrijving beter te begrijpen.

Dank

bewerkt door Team Fridhem
Geplaatst (bewerkt)

Goede vraag. Gebruik macro GarminExport en vul bij Custom User Export Macros (Edit) iets als het volgende in (aan te passen naar wens):

 

$_Special = $_Special + "Hints: $d_Hints<br />"
$_Special = $_Special + "UserNote: $d_UserNote<br />"
$_Special = $_Special + "Last Found: $d_LastFoundDate<br />"
$_Special = $_Special + "Favs: $d_FavPoints<br />"
$_Special = $_Special + "GPX date: " + DateFormat($d_LastGPXDate) + "<br />"
$_Special = $_Special + "Temp disabled:$d_TempDisabled<br />"
$_Special = $_Special + "Archived:$d_Archived"

 

 

Dit maakt een extra user log aan met bovenstaande info.

 

Nu de code die nodig is om de attributen (hier de meest belangrijke) zichtbaar te maken:

 

$AttributeListY="Dogs allowed;Access or parking fee;Climbing gear;Boat;Scuba gear;Recommended for kids;Takes less than an hour;Scenic view;Significant hike;Difficult climbing;May require wading;May require swimming;Available at all times;Recommended at night;Available during winter;;Poison plants;Snakes;Ticks;Abandoned mines;Cliff / falling rocks;Hunting;Dangerous area;Wheelchair accessible;Parking available;Public transportation;Drinking water nearby;Public restrooms nearby;Telephone nearby;Picnic tables nearby;Camping available;Bicycles;Motorcycles;Quads;Off-road vehicles;Snowmobiles;Horses;Campfires;Thorns;Stealth required;Stroller accessible;Needs maintenance;Watch for livestock;Flashlight required"

$AttributeListY=$AttributeListY+";Lost And Found Tour;Truck Driver/RV;Field Puzzle;UV Light Required;Snowshoes;Cross Country Skis;Special Tool Required;Night Cache;Park and Grab;Abandoned Structure;Short hike (less than 1Km);Medium hike (1Km-10Km);Long hike(+10Km);Fuel Nearby;Food Nearby;Wireless Beacon;Partnership cache;Seasonal Access;Tourist Friendly;Tree Climbing;Front Yard (Private Residence);Teamwork Required;"

$_sql="SELECT aId,aInc FROM Attributes where aCode='$GCcode'"
$codes = Sqlite("sql",$_sql)

IF $codes="99;0"
$codes=""
ENDIF
$attrcnt = RegExCount(";",$codes)
$Attributes = ""
$AttributesText = ""

$i = 1
# for each attribute retrieved by sql
# VER 1.1 fix numer of attributes
WHILE $i <= $attrcnt
$attr_yn = Extract($codes,$_CrLf,$i)
#Pause Msg="*$attr_yn*"
$attrID=Extract($attr_yn,";",1)
$attrYN=Extract($attr_yn,";",2)

IF (Val($attrYN)=1)
$attrName = Extract($AttributeListY,";",Val($attrID))
#Pause Msg="$attrName"

IF ($attrName="Special Tool Required")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Scuba gear")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Abandoned mines")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Abandoned Structure")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Night Cache")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Cliff / falling rocks")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Climbing gear")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Dangerous area")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Difficult climbing")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Boat")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="May require swimming")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="May require wading")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="UV Light Required")
$Attributes = $Attributes + $attrName + ";"
ENDIF
IF ($attrName="Field Puzzle")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Teamwork Required")
$Attributes = $Attributes + $attrName + ";"
ENDIF


IF ($attrName="Front Yard (Private Residence)")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Wireless Beacon")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Tree Climbing")
$Attributes = $Attributes + $attrName + ";"
ENDIF

IF ($attrName="Flashlight required")

$Attributes = $Attributes + $attrName + ";"
ENDIF
ENDIF


IF (Val($attrYN)=0)
$attrName = Extract($AttributeListY,";",Val($attrID))
#Pause Msg="$attrName"

IF ($attrName="Night Cache")
$Attributes = $Attributes + "Not NightCache" + ";"
ENDIF

IF ($attrName="Difficult climbing")
$Attributes = $Attributes + "Not DifficultClimbing" + ";"
ENDIF

IF ($attrName="Tree Climbing")
$Attributes = $Attributes + "Not TreeClimbing" + ";"
ENDIF

IF ($attrName="Abandoned Structure")
$Attributes = $Attributes + "Not AbandonedStructure" + ";"
ENDIF

ENDIF



$i = $i + 1
ENDWHILE

 

Uiteraard toevoegen aan de eerder genoemde weergave:

$_Special = $_Special + "Attributen: "+$Attributes

bewerkt door thex
Geplaatst

Idd wel raar dat Groundspeak daar niet iets aan kan doen. Mis idd ook de foto's etc in cachebeschrijvingen. Er is een tabblad voor, dus theoretisch zou het moeten kunnen. Ligt in iedergeval niet aan de monterra zelf. En via C:geo is een tijdelijke oplossing

Geplaatst

@StefandD

hej ,ik heb de monterra aangesloten en GSAK opgestart.

Een database geselecteerd en de macro gestart SentImages to garmin die jij noemde.

Krijg dan de melding ...GPSr not detected....

Als ik verder ga start hij wel de macro ,en dan moet ik kiezen welke schijf.

Maar de monterra Word niet gezien als schijf.

Hoe ga je in dit geval dan verder.

Je kan kiezen uit Q,C of S schijf.

  • 2 months later...
Geplaatst

iemand een idee, ben er nog steeds niet uit....blijf de fout melding krijgen dat hij de gps niet vind

  • Onlangs hier   0 leden

    • Er kijken geen geregistreerde gebruikers naar deze pagina.
×
×
  • Nieuwe aanmaken...