Questions tagged [map-files]
75 questions
0
votes
1 answer
exception happened while using WFS and PostGis in Mapserver mapfile
I'm trying to use GML produced by Mapserver to create popup with openlayers, if datasource comes from shp file, everything is working fine, however, postgis datasource brings exception, like "This may be due to a corruption of the heap, which…

tiplip
- 329
- 5
- 17
0
votes
1 answer
Issue with map file output from plink
I am working with the vcf file (generated using bcftools) to create a map file using plink software. The command i am using is
./plink --vcf sample.vcf --out sample --recode --allow-extra-chr
The output .map file looks like this
CM004562.1 . 0 …

Tania
- 1
0
votes
1 answer
Can anyone explain the use of libc functions _ldtoa_r and _Balloc?
I am working on a project using the Kendryte K210 which is a 64-bit duel-core RISC-V machine. I am using the Kendryte GNU toolchain and the starting point was the Kendryte standalone SDK.
I am experiencing some frustrating core faults. The fault, a…

Mark Watson
- 103
- 5
0
votes
1 answer
Calling rsync with mapfile
Have the following bash codes to deal with filenames passed randomly with mapfile. I want to call rsync on each file and send to a destination path dpath.
mapfile -d '' fl < <(
find "$dpath" -maxdepth 1 -type f "${inclnm[@]}" |
shuf -z -n…

Nigel
- 39
- 4
0
votes
0 answers
Reading mapfile
What's wrong with this code? Showing module not found error.
CODE:
data_dir = 'D://ob//Imag'
mapfile = os.path.join(data_dir,'map.txt')
# Read the mapfile:
with open(mapfile,'r') as fp:
mp = (
st.strip().split(' ')\
for st…

pri21-bot
- 1
- 3
0
votes
1 answer
How to remove all the unused functions from the map file?
I was wondering if there is way to remove ALL the unused functions listed in the map file for an embedded project developed in C and using the IAR embedded workbench for ARM IDE, which uses its own compiler and linker:
IAR C/C++ Compiler for ARM…

NEO
- 1
- 3
0
votes
1 answer
n = int(input())
arr = map(int, input().split())
print(arr) #error here
I have map function that splits out list items by comma.
I want to print out arr that contains list.
Then I have to find second highest number from the list.
Can you help?

Usama Malick
- 31
- 1
- 6
0
votes
1 answer
Variables in PDE map files
Some PDE builds use map files. In my case, the project is BIRT and the map files contains things…

Aaron Digulla
- 321,842
- 108
- 597
- 820
0
votes
1 answer
Parse columns into separate arrays
I have a space-delimited file:
Pool Library Name Email Subject
Finland lib1 Guru guru@abc.com,Narendra@abc.com Finland Media Rotation
Tucson lib2 Albert abc@def.com Tucson Media Rotation
Vancouver lib3 Jeff ghi@abc.com…

GURU SINGH
- 149
- 7
0
votes
0 answers
Load the Audio file in exernal memory using stm32
I want to move audio files in bin format to external flash. I used incbin for this. The audio files were present in .map file but in .hex file these data were missing.
Give me a solution for this issue.

vel murugan
- 1
- 1
0
votes
1 answer
Disable 64-bit division in Code Composer Studio compiler
I'm currently writing a program in C using Code Composer Studio (CCS) V7.4.0.00015.
The program has several self-written libraries that perform Byte, unsigned int and float division.
I have reached that stage in the project where I need to reduce…

DaneOH-89
- 50
- 6
0
votes
3 answers
How to count how many times a global variable was used (read and write)?
I'm trying to optimize a C code project.
I would like to count how many times a global variable was used (read or write) in order to place it at the most suitable memory type.
For example, to store commonly used variables at the fast access memory…

ZivYam
- 3
- 3
0
votes
0 answers
Get address of element of struct from map file or compiler output files
Using the map file I can find the address of any variable of my C software. I would like to have access to structure element addresses also, not only to the address to the struct.
Is there an easy way of getting this without needing to parse the…

Carlos
- 105
- 2
- 14
0
votes
1 answer
grep file with a large array
Hi i have a few archive of FW log and occasionally im required to compare them with a series of IP addresses (thousand of them) to get the date and time if the ip addresses matches. my current script is as follow:
#input the list of ip into…

ketc
- 1
0
votes
1 answer
IAR embedded Workbench for ARM MK60DN512VLQ10
I have a question about the .map file generated in IAR embedded workbench.
I'm working with MK60DN512VLQ10 that have 512 KB of flash memory and 128 KB RAM.
Which of the below is stored in Flash and which on RAM?
158 852 bytes of readonly code…

Yavni
- 5
- 6